Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Robin Cook (4d88b807cf438a7052bb5be3dce0e316eb55c90f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Robin Cook <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Robin Cook (4d88b807cf438a7052bb5be3dce0e316eb55c90f)
  • Date: Sat, 13 Oct 2007 16:53:59 -0500

GIT changes to master grimoire by Robin Cook <rcook AT wyrms.net>:

crypto/gringotts/BUILD | 7 -----
crypto/gringotts/CONFIGURE | 8 ++++--
crypto/gringotts/DETAILS | 21
++++-------------
crypto/gringotts/HISTORY | 8 ++++++
crypto/gringotts/PRE_BUILD | 6 ----
crypto/gringotts/gringotts-1.2.9pre2.tar.gz.sig |binary
crypto/libgringotts/DETAILS | 6 ++--
crypto/libgringotts/HISTORY | 3 ++
crypto/libgringotts/libgringotts-1.2.1.tar.bz2.sig |binary
crypto/libgringotts/libgringotts_1.2.1.orig.tar.gz.sig | 0
dev/null |binary
11 files changed, 27 insertions(+), 32 deletions(-)

New commits:
commit bce810f44df71f3cb0a3d4fe5391a9e4c8c50422
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

gringotts: updated to 1.2.9pre2

commit d8a01eac52524900890eca52a4325f6f202fd46b
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

libgringotts: updated to new site etc.

diff --git a/crypto/gringotts/BUILD b/crypto/gringotts/BUILD
index fb461e8..9f16871 100755
--- a/crypto/gringotts/BUILD
+++ b/crypto/gringotts/BUILD
@@ -1,9 +1,4 @@
-if [ "$ROOT_FILTER" == "y" ]; then
- OPTS="$OPTS --enable-root-filter"
-fi &&
-if [ "$ENV_CHECK" == "n" ]; then
- OPTS="$OPTS --disable-env-check"
-fi &&
+OPTS="${GRINGOTTS_ENV_CHECK} ${GRINGOTTS_ROOT_FILTER}
${GRINGOTTS_ATTACH_LIMIT} ${OPTS}"

make_single &&
default_build &&
diff --git a/crypto/gringotts/CONFIGURE b/crypto/gringotts/CONFIGURE
index 38958d5..4e29605 100755
--- a/crypto/gringotts/CONFIGURE
+++ b/crypto/gringotts/CONFIGURE
@@ -1,2 +1,6 @@
-config_query ROOT_FILTER "Strictly forbid access to the root user?" y
-config_query ENV_CHECK "Reset environment on startup? (disable this if it
refuses to start)" y
+config_query_option GRINGOTTS_ROOT_FILTER "Strictly forbid access to the
root user?" n \
+ "--enable-root-filter" "--disable-root-filter" &&
+config_query_option GRINGOTTS_ENV_CHECK "Reset environment on startup?
(disable this if it refuses to start)" y \
+ "--enable-env-check" "--disable-env-check" &&
+config_query_option GRINGOTTS_ATTACH_LIMIT "Enable 2Mb limit for attached
files?" y \
+ "--enable-attach-limit" "--disable-attach-limit"
diff --git a/crypto/gringotts/DETAILS b/crypto/gringotts/DETAILS
index 64d5251..9904961 100755
--- a/crypto/gringotts/DETAILS
+++ b/crypto/gringotts/DETAILS
@@ -1,20 +1,11 @@
SPELL=gringotts
- VERSION=1.2.9pre1
- PATCHLEVEL=1
-
- SOURCE=${SPELL}_1.2.8+${VERSION}.orig.tar.gz
- SOURCE_URL[0]=ftp://ftp.debian.org/debian/pool/main/g/gringotts/${SOURCE}
-
SOURCE_HASH=sha512:b8f118668793e5e77dc9719b3f047d1a3a3ea8938cc496ee6b5374776d9bf8217682cc4a1d1bdc5408fd427c06b994b106815332a8a0fda75b607835a84f816c
-
- SOURCE2=gringotts-shlomif-patch-0.4.4.diff
-
SOURCE2_URL[0]=http://www.shlomifish.org/open-source/bits-and-bobs/gringotts-patch/$SOURCE2
-
SOURCE2_HASH=sha512:e0ccb4833b28cccab1ed3a216177457488e35c0249532b19d76631b3a74cc33abd2d0ed64f3c8551cfa7dcd84891f01caf6a349424f9ab091bff4fa2d50d8ea1
-
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
-# SOURCE_URL[0]=http://mano.homelinux.org/$SOURCE
-#
SOURCE_URL[0]=http://devel.pluto.linux.it/projects/Gringotts/current/$SOURCE
+ VERSION=1.2.9pre2
+ SOURCE=${SPELL}-${VERSION}.tar.gz
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
+ SOURCE_URL[0]=http://download.berlios.de/${SPELL}/${SOURCE}
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
LICENSE[0]=GPL
- WEB_SITE=http://packages.debian.org/stable/admin/gringotts
+ WEB_SITE=http://gringotts.berlios.de/
ENTERED=20020820
KEYWORDS="crypto"
SHORT="Utility that allows you to secure sensitive data"
diff --git a/crypto/gringotts/HISTORY b/crypto/gringotts/HISTORY
index ae3a9e1..6a06941 100644
--- a/crypto/gringotts/HISTORY
+++ b/crypto/gringotts/HISTORY
@@ -1,3 +1,11 @@
+2007-10-12 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: updated VERSION to 1.2.9pre2
+ changed SOURCE, SOURCE_URL, and WEB_SITE
+ * PRE_BUILD: removed as patch now included upstream.
+ * CONFIGURE: changed config_query to config_query_option
+ added ATTACH_LIMIT
+ * BUILD: changed to use config_query_option
+
2007-01-01 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS, PRE_BUILD: gringotts-shlomif-patch updated to 0.4.4
added it as SOURCE2
diff --git a/crypto/gringotts/PRE_BUILD b/crypto/gringotts/PRE_BUILD
deleted file mode 100755
index 46b4756..0000000
--- a/crypto/gringotts/PRE_BUILD
+++ /dev/null
@@ -1,6 +0,0 @@
-default_pre_build &&
-cd ${SOURCE_DIRECTORY} &&
-unpack_file 2 &&
-
-patch --posix -p0 < ${SOURCE_CACHE}/$SOURCE2
-
diff --git a/crypto/gringotts/gringotts-1.2.9pre2.tar.gz.sig
b/crypto/gringotts/gringotts-1.2.9pre2.tar.gz.sig
new file mode 100644
index 0000000..0b9f521
Binary files /dev/null and b/crypto/gringotts/gringotts-1.2.9pre2.tar.gz.sig
differ
diff --git a/crypto/libgringotts/DETAILS b/crypto/libgringotts/DETAILS
index 02fde36..f5a2cc7 100755
--- a/crypto/libgringotts/DETAILS
+++ b/crypto/libgringotts/DETAILS
@@ -1,11 +1,11 @@
SPELL=libgringotts
VERSION=1.2.1
- SOURCE=${SPELL}_${VERSION}.orig.tar.gz
+ SOURCE=${SPELL}-${VERSION}.tar.bz2
SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
-
SOURCE_URL[0]=ftp://ftp.debian.org/debian/pool/main/libg/libgringotts/${SOURCE}
+ SOURCE_URL[0]=http://download.berlios.de/gringotts/${SOURCE}
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
LICENSE[0]=GPL
- WEB_SITE=http://packages.qa.debian.org/libg/libgringotts.html
+ WEB_SITE=http://gringotts.berlios.de/
ENTERED=20021023
KEYWORDS="crypto"
SHORT="libgringotts - library originally developed for Gringotts"
diff --git a/crypto/libgringotts/HISTORY b/crypto/libgringotts/HISTORY
index 79501d0..a4fb9c7 100644
--- a/crypto/libgringotts/HISTORY
+++ b/crypto/libgringotts/HISTORY
@@ -1,3 +1,6 @@
+2007-10-12 Robin Cook <rcook AT wyrms.net>
+ * DETAILS: changed SOURCE, SOURCE_URL, and WEB_SITE
+
2006-07-06 Robin Cook <rcook AT wyrms.net>
* DETAILS: Updated SOURCE, SOURCE_URL[0], WEB_SITE
Removed SOURCE_URL[1], UPDATED, MAINTAINER
diff --git a/crypto/libgringotts/libgringotts-1.2.1.tar.bz2.sig
b/crypto/libgringotts/libgringotts-1.2.1.tar.bz2.sig
new file mode 100644
index 0000000..4ff51a9
Binary files /dev/null and
b/crypto/libgringotts/libgringotts-1.2.1.tar.bz2.sig differ
diff --git a/crypto/libgringotts/libgringotts_1.2.1.orig.tar.gz.sig
b/crypto/libgringotts/libgringotts_1.2.1.orig.tar.gz.sig
deleted file mode 100644
index 70f121a..0000000
Binary files a/crypto/libgringotts/libgringotts_1.2.1.orig.tar.gz.sig and
/dev/null differ



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (4d88b807cf438a7052bb5be3dce0e316eb55c90f), Robin Cook, 10/13/2007

Archive powered by MHonArc 2.6.24.

Top of Page