Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-rc-0.11 grimoire by Eric Sandall (f96110a263c3b6139769548db479e61361c337db)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-rc-0.11 grimoire by Eric Sandall (f96110a263c3b6139769548db479e61361c337db)
  • Date: Mon, 11 Jun 2007 11:55:29 -0500

GIT changes to stable-rc-0.11 grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

crypto/xmlsec/DEPENDS | 12 +++++++++++-
crypto/xmlsec/HISTORY | 3 +++
smgl/iana-etc/HISTORY | 4 ++++
smgl/iana-etc/INSTALL | 3 ++-
smgl/iana-etc/hosts | 12 ++++++++++++
utils/ghasher/BUILD | 5 +++--
utils/ghasher/DEPENDS | 3 ++-
utils/ghasher/DETAILS | 12 ++++++------
utils/ghasher/HISTORY | 8 ++++++++
9 files changed, 51 insertions(+), 11 deletions(-)

New commits:
commit f96110a263c3b6139769548db479e61361c337db
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

iana-etc: install /etc/hosts #13075
(cherry picked from commit 52660abcecffc8ba8fa362ada9a84c91df2bc7cd)

commit 3c572f79fc8c150a27ef20ad0cbd070e4a7b9ab5
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

xmlsec: added a fallback backend choice #11486
(cherry picked from commit 692dbebc7478461e673afa2912a9be32158e63a8)

commit f0339850a91e657bc07fe868ae8afb9528bf71a0
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ghasher: added missing dep

commit ee9b4444384384426ad2d26e22b73fe5f568c272
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ghasher: bump and url fixes

commit 0b068c35c6a70d02f58a96fb8ba1bc98b120db9a
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ghasher: fixed #11377, added INSTALL_ROOT support

diff --git a/crypto/xmlsec/DEPENDS b/crypto/xmlsec/DEPENDS
index c9cbce1..c264f91 100755
--- a/crypto/xmlsec/DEPENDS
+++ b/crypto/xmlsec/DEPENDS
@@ -2,6 +2,16 @@ depends pkgconfig '--enable-pkgconfig' &&
depends libxml2 '--with-libxml=/usr' &&

optional_depends libxslt '--with-libxslt=/usr' '--without-libxslt' 'for
XSLT-related functions' &&
+echo &&
+message "You have to pick at least one of the following dependencies!" &&
optional_depends gnutls '--with-gnutls=/usr' '--without-gnutls' 'for
encrypted communications'
optional_depends nss '--with-nss=/usr' '--without-nss' 'for
encrypted communications' &&
-optional_depends openssl '--with-openssl=/usr' '--without-openssl' 'for
encrypted communications'
+optional_depends openssl '--with-openssl=/usr' '--without-openssl' 'for
encrypted communications' &&
+
+if ! is_depends_enabled $SPELL gnutls &&
+ ! is_depends_enabled $SPELL nss &&
+ ! is_depends_enabled $SPELL openssl; then
+
+ message "${PROBLEM_COLOR}No backend was chosen, forcing
openssl!$DEFAULT_COLOR"
+ depends openssl
+fi
diff --git a/crypto/xmlsec/HISTORY b/crypto/xmlsec/HISTORY
index 6318fc1..e271539 100644
--- a/crypto/xmlsec/HISTORY
+++ b/crypto/xmlsec/HISTORY
@@ -1,3 +1,6 @@
+2007-06-10 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: added a fallback backend choice #11486
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.

diff --git a/smgl/iana-etc/HISTORY b/smgl/iana-etc/HISTORY
index 3fd3d25..7354fed 100644
--- a/smgl/iana-etc/HISTORY
+++ b/smgl/iana-etc/HISTORY
@@ -1,3 +1,7 @@
+2007-06-09 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * INSTALL: install hosts
+ * hosts: added /etc/hosts stub #13075
+
2006-11-15 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.20

diff --git a/smgl/iana-etc/INSTALL b/smgl/iana-etc/INSTALL
index 958fa0d..99d6eca 100755
--- a/smgl/iana-etc/INSTALL
+++ b/smgl/iana-etc/INSTALL
@@ -1 +1,2 @@
-make install PREFIX=${INSTALL_ROOT}
+make install PREFIX="$INSTALL_ROOT" &&
+install_config_file "$SPELL_DIRECTORY/hosts" "$INSTALL_ROOT/etc/hosts"
diff --git a/smgl/iana-etc/hosts b/smgl/iana-etc/hosts
new file mode 100644
index 0000000..0349fed
--- /dev/null
+++ b/smgl/iana-etc/hosts
@@ -0,0 +1,12 @@
+#
+# hosts This file describes a number of hostname-to-address
+# mappings for the TCP/IP subsystem. It is mostly
+# used at boot time, when no name servers are running.
+# On small systems, this file can be used instead of a
+# "named" name server. Just add the names, addresses
+# and any aliases to this file...
+#
+
+127.0.0.1 localhost
+
+# End of hosts.
diff --git a/utils/ghasher/BUILD b/utils/ghasher/BUILD
index 965f678..b71dba6 100755
--- a/utils/ghasher/BUILD
+++ b/utils/ghasher/BUILD
@@ -1,2 +1,3 @@
-[[ $CROSS_INSTALL == on ]] && OPTS="$OPTS --host=${HOST} --build=${BUILD}"
-make
\ No newline at end of file
+mkdir -p $INSTALL_ROOT/usr/share/applications
$INSTALL_ROOT/usr/share/pixmaps &&
+make PIXMAPDIR=$INSTALL_ROOT/usr/share/pixmaps \
+ DESKTOPFILEDIR=$INSTALL_ROOT/usr/share/applications
diff --git a/utils/ghasher/DEPENDS b/utils/ghasher/DEPENDS
index b6575f3..ebf63cc 100755
--- a/utils/ghasher/DEPENDS
+++ b/utils/ghasher/DEPENDS
@@ -1,2 +1,3 @@
depends openssl &&
-depends gtk+2
\ No newline at end of file
+depends gtk+2 &&
+depends libglade2
diff --git a/utils/ghasher/DETAILS b/utils/ghasher/DETAILS
index 26b0ed9..3c1e9fc 100755
--- a/utils/ghasher/DETAILS
+++ b/utils/ghasher/DETAILS
@@ -1,15 +1,15 @@
SPELL=ghasher
if [ "$DEVEL" == "y" ] ;then
- VERSION=1.2.0a
- MD5[0]=f0e0367393c040c4649e32cdd359ca07
+ VERSION=1.2.1
+
SOURCE_HASH=sha512:8cb3899786fab309f1c2360d62d6adf715634066272fa8f82e8cb8c9d4b59687a891d34bae43c6e66ed76e1a9e2b2fb172bb844e634a345a11d5aafbd92ac425
else
- VERSION=1.1.1
-
SOURCE_HASH=sha512:17ef570835fef53aae05c1d91b8ed3d7116f7751481ff8e994b4e24d482713068470251a77b4b7b8b644c6dcf1dcddd46611cbdc99a950ec69207486b95999a8
+ VERSION=1.2.1
+
SOURCE_HASH=sha512:8cb3899786fab309f1c2360d62d6adf715634066272fa8f82e8cb8c9d4b59687a891d34bae43c6e66ed76e1a9e2b2fb172bb844e634a345a11d5aafbd92ac425
fi
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://utelsystems.dyndns.org/code/$SPELL/$SOURCE
- WEB_SITE=http://utelsystems.dyndns.org/code/ghasher/
+ SOURCE_URL[0]=http://asgaard.homelinux.org/code/ghasher/$SOURCE
+ WEB_SITE=http://asgaard.homelinux.org/code/ghasher/
ENTERED=20041101
LICENSE[0]=GPL
KEYWORDS="utils"
diff --git a/utils/ghasher/HISTORY b/utils/ghasher/HISTORY
index c1cc91e..666da34 100644
--- a/utils/ghasher/HISTORY
+++ b/utils/ghasher/HISTORY
@@ -1,3 +1,11 @@
+2007-06-10 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DETAILS: Fixed SOURCE_URL[0]
+ fixed WEB_SITE
+ updated spell to 1.2.1
+ updated DEVEL=y to 1.2.1
+ * DEPENDS: added libglade2
+ * BUILD: mkdir to fix #11377, added INSTALL_ROOT support
+
2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.




  • [SM-Commit] GIT changes to stable-rc-0.11 grimoire by Eric Sandall (f96110a263c3b6139769548db479e61361c337db), Eric Sandall, 06/11/2007

Archive powered by MHonArc 2.6.24.

Top of Page