Skip to Content.
Sympa Menu

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

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 (e9602bf3b285af543d0d38aa2c90ad6787380895)
  • Date: Tue, 22 May 2012 15:43:42 -0500

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

ChangeLog | 4 ++
dev/null |binary
ftp/transmission/DETAILS | 2 -
ftp/transmission/HISTORY | 3 +
ftp/transmission/transmission-2.51.tar.bz2.sig | 0
ftp/transmission/transmission-2.52.tar.bz2.sig |binary
http/cadaver/BUILD | 12 ++++++
http/cadaver/CONFIGURE | 27 +++++++++++++
http/cadaver/DEPENDS | 49
+++++++++++++++++++++++++
http/cadaver/DETAILS | 19 +++++++++
http/cadaver/HISTORY | 2 +
libs/ldns/DETAILS | 4 +-
libs/ldns/HISTORY | 3 +
libs/neon/neon.gpg | 0
neon.gpg |binary
15 files changed, 122 insertions(+), 3 deletions(-)

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

ldns: => 1.6.13

commit a425ea3c646b817664b4bb402ecf7c7fb019cac0
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

transmission: => 2.52

commit fdc9dc940ae2844411b7baad582686c9e117be8b
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

cadaver: new spell, command-line WebDAV client for Unix

commit 47cd38b792a0df3d7545d8f41849425884523727
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

neon.gpg: moved from neon spell, required by cadaver

diff --git a/ChangeLog b/ChangeLog
index 8870dec..2fbe514 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * neon.gpg: moved from neon spell, required by cadaver
+ * http/cadaver: new spell, command-line WebDAV client for Unix
+
2012-05-19 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* haskell/haskell-polyparse: new spell, a variety of alternative
parser
combinator libraries
diff --git a/ftp/transmission/DETAILS b/ftp/transmission/DETAILS
index 20a720c..c27436c 100755
--- a/ftp/transmission/DETAILS
+++ b/ftp/transmission/DETAILS
@@ -1,5 +1,5 @@
SPELL=transmission
- VERSION=2.51
+ VERSION=2.52
SECURITY_PATCH=1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=http://download.transmissionbt.com/files/$SOURCE
diff --git a/ftp/transmission/HISTORY b/ftp/transmission/HISTORY
index 3401c13..5c70471 100644
--- a/ftp/transmission/HISTORY
+++ b/ftp/transmission/HISTORY
@@ -1,3 +1,6 @@
+2012-05-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 2.52
+
2012-04-13 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.51
* PRE_BUILD, libnatpmp-20110618.patch: dropped
diff --git a/ftp/transmission/transmission-2.51.tar.bz2.sig
b/ftp/transmission/transmission-2.51.tar.bz2.sig
deleted file mode 100644
index 8aecf29..0000000
Binary files a/ftp/transmission/transmission-2.51.tar.bz2.sig and /dev/null
differ
diff --git a/ftp/transmission/transmission-2.52.tar.bz2.sig
b/ftp/transmission/transmission-2.52.tar.bz2.sig
new file mode 100644
index 0000000..1855e4f
Binary files /dev/null and b/ftp/transmission/transmission-2.52.tar.bz2.sig
differ
diff --git a/http/cadaver/BUILD b/http/cadaver/BUILD
new file mode 100755
index 0000000..37cefee
--- /dev/null
+++ b/http/cadaver/BUILD
@@ -0,0 +1,12 @@
+case $CADAVER_THREADS in
+ none) OPTS="--disable-threads $OPTS"
+ ;;
+ posix) OPTS="--enable-threads=posix $OPTS"
+ ;;
+ pth) OPTS="--enable-threads=pth $OPTS"
+ ;;
+esac &&
+
+OPTS="$CADAVER_OPTS $OPTS" &&
+
+default_build
diff --git a/http/cadaver/CONFIGURE b/http/cadaver/CONFIGURE
new file mode 100755
index 0000000..0f96cc8
--- /dev/null
+++ b/http/cadaver/CONFIGURE
@@ -0,0 +1,27 @@
+config_query_list CADAVER_SSL "Which SSL backend do you want for SSL
support?" \
+ none \
+ openssl \
+ gnutls &&
+
+config_query_list CADAVER_THREADS "Specify multithreading API:" \
+ none \
+ posix \
+ pth &&
+
+if [[ $CADAVER_SSL != none ]] && [[ $CADAVER_THREADS == posix ]]; then
+ config_query_option CADAVER_OPTS "Enable SSL library thread-safety using
POSIX threads?" y \
+ "--enable-threadsafe-ssl=posix" \
+ "--disable-threadsafe-ssl"
+fi &&
+
+config_query_list CADAVER_XML "Specify XML Parser:" \
+ expat \
+ libxml2 &&
+
+config_query_option CADAVER_OPTS "Enable runtime debugging messages?" n \
+ "--enable-debugging" \
+ "--disable-debugging" &&
+
+config_query_option CADAVER_OPTS "Enable .netrc support?" y \
+ "--enable-netrc" \
+ "--disable-netrc"
diff --git a/http/cadaver/DEPENDS b/http/cadaver/DEPENDS
new file mode 100755
index 0000000..b9166dd
--- /dev/null
+++ b/http/cadaver/DEPENDS
@@ -0,0 +1,49 @@
+optional_depends readline \
+ "--enable-readline" \
+ "--disable-readline" \
+ "for readline support" &&
+
+optional_depends gettext \
+ "--enable-nls" \
+ "--disable-nls" \
+ "for Native Language Support" &&
+
+case $CADAVER_SSL in
+ none) OPTS="--without-ssl $OPTS"
+ ;;
+ openssl) depends openssl "--with-ssl=openssl"
+ ;;
+ gnutls) depends gnutls "--with-ssl=gnutls"
+ ;;
+esac &&
+
+if [[ $CADAVER_XML == expat ]]; then
+ OPTS="--with-expat --without-libxml2 $OPTS" &&
+
+ optional_depends expat \
+ "--without-included-expat" \
+ "--with-included-expat" \
+ "to use system expat library"
+else
+ depends libxml2 '--with-libxml2 --without-expat'
+fi
+
+optional_depends neon \
+ "--without-included-neon" \
+ "--with-included-neon" \
+ "to use system neon library" &&
+
+optional_depends ca-certificates \
+
"--with-ca-bundle=$INSTALL_ROOT/etc/ssl/certs/ca-certificates.crt" \
+ "--without-ca-bundle" \
+ "to use specified filename of an SSL CA root bundle" &&
+
+optional_depends krb5 \
+ "--with-gssapi" \
+ "--without-gssapi" \
+ "for GSSAPI support" &&
+
+optional_depends libproxy \
+ "--with-libproxy" \
+ "--without-libproxy" \
+ "for libproxy support"
diff --git a/http/cadaver/DETAILS b/http/cadaver/DETAILS
new file mode 100755
index 0000000..507adce
--- /dev/null
+++ b/http/cadaver/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=cadaver
+ VERSION=0.23.3
+ SOURCE=$SPELL-$VERSION.tar.gz
+ SOURCE2=$SOURCE.asc
+ SOURCE2_IGNORE=signature
+ SOURCE_GPG=neon.gpg:$SOURCE2:UPSTREAM_KEY
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=http://www.webdav.org/$SPELL/$SOURCE
+ SOURCE2_URL[0]=${SOURCE_URL[0]}.asc
+ LICENSE[0]=GPL
+ WEB_SITE=http://www.webdav.org/cadaver/
+ ENTERED=20120522
+ KEYWORDS="http webdav"
+ SHORT="command-line WebDAV client for Unix"
+cat << EOF
+cadaver is a command-line WebDAV client, with support for file upload,
download,
+on-screen display, in-place editing, namespace operations (move/copy),
+collection creation and deletion, property manipulation, and resource
locking.
+EOF
diff --git a/http/cadaver/HISTORY b/http/cadaver/HISTORY
new file mode 100644
index 0000000..330654b
--- /dev/null
+++ b/http/cadaver/HISTORY
@@ -0,0 +1,2 @@
+2012-05-22 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, CONFIGURE, BUILD, DEPENDS: spell created
diff --git a/libs/ldns/DETAILS b/libs/ldns/DETAILS
index c02d877..69db3bf 100755
--- a/libs/ldns/DETAILS
+++ b/libs/ldns/DETAILS
@@ -1,9 +1,9 @@
SPELL=ldns
- VERSION=1.6.12
+ VERSION=1.6.13
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.nlnetlabs.nl/downloads/ldns/$SOURCE
-
SOURCE_HASH=sha512:f928be35a5c0bc2b918f005dd592cc531451f373ed9d77a54d5207a2a80b9d525faabf75bba75483d3476cfeff75a66ad4d9527a84a983216dae4fac30213773
+
SOURCE_HASH=sha512:35bc4cd673ea48dc5d08f22ec06b0ceaa1448c9171beeb3989a1a33c95e616694db3a515466e54f1364636dcf48425600cd42541397be9209f165adb445200e1
LICENSE[0]=MIT
WEB_SITE=http://www.nlnetlabs.nl/projects/ldns/
GATHER_DOCS=off
diff --git a/libs/ldns/HISTORY b/libs/ldns/HISTORY
index f08107e..0813085 100644
--- a/libs/ldns/HISTORY
+++ b/libs/ldns/HISTORY
@@ -1,3 +1,6 @@
+2012-05-23 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.6.13
+
2012-01-12 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.6.12
* CONFIGURE, BUILD: drill and examples are optional now
diff --git a/libs/neon/neon.gpg b/libs/neon/neon.gpg
deleted file mode 100644
index d395f90..0000000
Binary files a/libs/neon/neon.gpg and /dev/null differ
diff --git a/neon.gpg b/neon.gpg
new file mode 100644
index 0000000..d395f90
Binary files /dev/null and b/neon.gpg differ



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (e9602bf3b285af543d0d38aa2c90ad6787380895), Vlad Glagolev, 05/22/2012

Archive powered by MHonArc 2.6.24.

Top of Page