Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eb1f4a1052fa0756de3e02c9978c4151d95c7ea2)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eb1f4a1052fa0756de3e02c9978c4151d95c7ea2)
  • Date: Thu, 7 Sep 2017 16:35:39 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
crypto/aescrypt/BUILD | 3 +++
crypto/aescrypt/DETAILS | 16 ++++++++++++++++
crypto/aescrypt/HISTORY | 2 ++
crypto/aescrypt/INSTALL | 9 +++++++++
crypto/aescrypt/PRE_BUILD | 4 ++++
6 files changed, 37 insertions(+)

New commits:
commit eb1f4a1052fa0756de3e02c9978c4151d95c7ea2
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

aescrypt: advanced file encryption using AES

diff --git a/ChangeLog b/ChangeLog
index d727646..6f5ffef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2017-09-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * crypto/aescrypt: advanced file encryption using AES
+
2017-09-06 Ismael Luceno <ismael AT sourcemage.org>
* devel/bitkeeper: Moved from z-rejected, now under Apache-2.0

diff --git a/crypto/aescrypt/BUILD b/crypto/aescrypt/BUILD
new file mode 100755
index 0000000..f23330d
--- /dev/null
+++ b/crypto/aescrypt/BUILD
@@ -0,0 +1,3 @@
+cd src &&
+
+make
diff --git a/crypto/aescrypt/DETAILS b/crypto/aescrypt/DETAILS
new file mode 100755
index 0000000..b23f103
--- /dev/null
+++ b/crypto/aescrypt/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=aescrypt
+ VERSION=3.13
+ SOURCE=${SPELL}-${VERSION}.tgz
+ SOURCE_URL[0]=https://www.aescrypt.com/download/v3/linux/${SOURCE}
+
SOURCE_HASH=sha512:84b0133a51df6bf0679750b05cef6f24ba64c31175d44d3486ac0ed65d49dfa2cdb0ab25523a328f367d053ebf1e938abd89c51d03a6a55dcc4e095e6027e05b
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ DOCS="Readme.txt"
+ WEB_SITE=https://www.aescrypt.com/
+ LICENSE[0]=BSD
+ LICENSE[1]=GPL
+ ENTERED=20170907
+ SHORT="advanced file encryption using AES"
+cat << EOF
+AES Crypt is a file encryption software that uses the industry standard
+Advanced Encryption Standard (AES) to easily and securely encrypt files.
+EOF
diff --git a/crypto/aescrypt/HISTORY b/crypto/aescrypt/HISTORY
new file mode 100644
index 0000000..f44f885
--- /dev/null
+++ b/crypto/aescrypt/HISTORY
@@ -0,0 +1,2 @@
+2017-09-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, {PRE_,}BUILD, INSTALL: created spell, version 3.13
diff --git a/crypto/aescrypt/INSTALL b/crypto/aescrypt/INSTALL
new file mode 100755
index 0000000..33b40c1
--- /dev/null
+++ b/crypto/aescrypt/INSTALL
@@ -0,0 +1,9 @@
+default_install &&
+
+local MANDIR="${INSTALL_ROOT}/usr/share/man/man1" &&
+
+if [ ! -d "${MANDIR}" ]; then
+ install -vm 755 -d "${MANDIR}"
+fi &&
+
+install -vm 644 ../man/aescrypt.1 "${MANDIR}"
diff --git a/crypto/aescrypt/PRE_BUILD b/crypto/aescrypt/PRE_BUILD
new file mode 100755
index 0000000..92909b7
--- /dev/null
+++ b/crypto/aescrypt/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+
+sedit "s:^CFLAGS=\(.*\):CFLAGS=\1 ${CFLAGS}:;s:^LIBS=\(.*\):LIBS=\1
${LDFLAGS}:" src/Makefile



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (eb1f4a1052fa0756de3e02c9978c4151d95c7ea2), Vlad Glagolev, 09/07/2017

Archive powered by MHonArc 2.6.24.

Top of Page