Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (3c39747ac478c146668c5880544c8ae06ee5eb80)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (3c39747ac478c146668c5880544c8ae06ee5eb80)
  • Date: Tue, 22 Jan 2013 09:52:08 -0600

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

crypto/libssh/BUILD | 3 +++
crypto/libssh/CONFIGURE | 1 +
crypto/libssh/DEPENDS | 3 ++-
crypto/libssh/HISTORY | 3 +++
crypto/libssh2/CONFIGURE | 1 +
crypto/libssh2/DEPENDS | 2 +-
crypto/libssh2/HISTORY | 4 ++++
disk/libburn/DETAILS | 2 +-
disk/libburn/HISTORY | 3 +++
disk/libisoburn/DETAILS | 2 +-
disk/libisoburn/HISTORY | 3 +++
disk/libisofs/DETAILS | 2 +-
disk/libisofs/HISTORY | 3 +++
ftp/curl/CONFIGURE | 2 +-
ftp/curl/DEPENDS | 17 ++++++++++++++---
ftp/curl/DETAILS | 2 +-
ftp/curl/HISTORY | 5 +++++
net/libproxy/DETAILS | 4 ++--
net/libproxy/HISTORY | 3 +++
19 files changed, 53 insertions(+), 12 deletions(-)

New commits:
commit 3c39747ac478c146668c5880544c8ae06ee5eb80
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libisoburn: => 1.2.6

commit 11dd9654d2ab9eade5dc18df5802a7a8fd690223
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libisofs: => 1.2.6

commit de549acef242ffe0b9cf0432a0349b7caaf1e3bf
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libburn: => 1.2.6

commit f1799183c43f5d8a60602e0755a2f0941591ef85
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libproxy: => 0.4.11

commit 6f6aadba343a08d62f1a2b36a8656c456fdd2cfc
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libssh - add libgcrypt support

commit 0b675e7714aa7a95afa27aff7315593c72e62e3c
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

libssh2 - add libgcrypt support

commit c757d19fb3d75e492df6b1c1bf18b54b53d87cdf
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

curl - add krb5 (GSSAPI) support

commit 4a617ac7b01d933ffc71072748abd877e897020b
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

curl - add support for polarssl

commit d531ae7577b30084b49de3bd04f98140aa793dcf
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

curl: => 7.28.1

diff --git a/crypto/libssh/BUILD b/crypto/libssh/BUILD
index e013b8d..a1c4818 100755
--- a/crypto/libssh/BUILD
+++ b/crypto/libssh/BUILD
@@ -1 +1,4 @@
+if [[ "$SSH_CRYPTO" == libgcrypt ]];then
+ OPTS+=" -DWITH_GCRYPT=1"
+fi &&
cmake_build
diff --git a/crypto/libssh/CONFIGURE b/crypto/libssh/CONFIGURE
new file mode 100755
index 0000000..ed632b2
--- /dev/null
+++ b/crypto/libssh/CONFIGURE
@@ -0,0 +1 @@
+config_query_list SSH_CRYPTO "which crypto library" libgcrypt openssl
diff --git a/crypto/libssh/DEPENDS b/crypto/libssh/DEPENDS
index d371237..323d272 100755
--- a/crypto/libssh/DEPENDS
+++ b/crypto/libssh/DEPENDS
@@ -1,2 +1,3 @@
depends cmake &&
-depends openssl
+depends zlib &&
+depends $SSH_CRYPTO
diff --git a/crypto/libssh/HISTORY b/crypto/libssh/HISTORY
index d9575e6..94368af 100644
--- a/crypto/libssh/HISTORY
+++ b/crypto/libssh/HISTORY
@@ -1,3 +1,6 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * CONFIGURE, BUILD, DEPENDS: add libgcrypt support
+
2012-11-30 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 0.5.3
SECURITY_PATCH++
diff --git a/crypto/libssh2/CONFIGURE b/crypto/libssh2/CONFIGURE
new file mode 100755
index 0000000..6f4c50b
--- /dev/null
+++ b/crypto/libssh2/CONFIGURE
@@ -0,0 +1 @@
+config_query_list SSH2_CRYPTO "which crypto library" libgcrypt openssl
diff --git a/crypto/libssh2/DEPENDS b/crypto/libssh2/DEPENDS
index 9418a0d..cd5d2b0 100755
--- a/crypto/libssh2/DEPENDS
+++ b/crypto/libssh2/DEPENDS
@@ -1,2 +1,2 @@
-depends openssl &&
+depends $SSH2_CRYPTO "--with-$SSH2_CRYPTO" &&
depends zlib
diff --git a/crypto/libssh2/HISTORY b/crypto/libssh2/HISTORY
index d727e22..c44650b 100644
--- a/crypto/libssh2/HISTORY
+++ b/crypto/libssh2/HISTORY
@@ -1,3 +1,7 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * CONFIGURE: added, allow choice of openssl, libgcrypt
+ * DEPENDS: use chosen crypto library
+
2012-12-02 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.4.3

diff --git a/disk/libburn/DETAILS b/disk/libburn/DETAILS
index f9501b6..5c32bef 100755
--- a/disk/libburn/DETAILS
+++ b/disk/libburn/DETAILS
@@ -12,7 +12,7 @@ if [[ $LIBBURN_BRANCH == scm ]]; then
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-svn"
SOURCE_IGNORE=volatile
else
- VERSION=1.2.4
+ VERSION=1.2.6
SOURCE2_IGNORE=signature
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
diff --git a/disk/libburn/HISTORY b/disk/libburn/HISTORY
index 3d50058..f00b675 100644
--- a/disk/libburn/HISTORY
+++ b/disk/libburn/HISTORY
@@ -1,3 +1,6 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.6
+
2012-07-23 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.2.4

diff --git a/disk/libisoburn/DETAILS b/disk/libisoburn/DETAILS
index c6aabec..6684ede 100755
--- a/disk/libisoburn/DETAILS
+++ b/disk/libisoburn/DETAILS
@@ -12,7 +12,7 @@ if [[ $LIBISOBURN_BRANCH == scm ]]; then
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-svn"
SOURCE_IGNORE=volatile
else
- VERSION=1.2.4
+ VERSION=1.2.6
SOURCE2_IGNORE=signature
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
diff --git a/disk/libisoburn/HISTORY b/disk/libisoburn/HISTORY
index d9d4b3c..9661030 100644
--- a/disk/libisoburn/HISTORY
+++ b/disk/libisoburn/HISTORY
@@ -1,3 +1,6 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.6
+
2012-07-23 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.2.4

diff --git a/disk/libisofs/DETAILS b/disk/libisofs/DETAILS
index afef25a..94f0514 100755
--- a/disk/libisofs/DETAILS
+++ b/disk/libisofs/DETAILS
@@ -12,7 +12,7 @@ if [[ $LIBISOFS_BRANCH == scm ]]; then
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-svn"
SOURCE_IGNORE=volatile
else
- VERSION=1.2.4
+ VERSION=1.2.6
SOURCE2_IGNORE=signature
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.sig
diff --git a/disk/libisofs/HISTORY b/disk/libisofs/HISTORY
index e6e7d6b..d32f21d 100644
--- a/disk/libisofs/HISTORY
+++ b/disk/libisofs/HISTORY
@@ -1,3 +1,6 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 1.2.6
+
2012-07-23 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.2.4

diff --git a/ftp/curl/CONFIGURE b/ftp/curl/CONFIGURE
index 933f9c0..b865856 100755
--- a/ftp/curl/CONFIGURE
+++ b/ftp/curl/CONFIGURE
@@ -1 +1 @@
-config_query_list CURL_SSL "Which SSL lib do you want?" none openssl gnutls
nss
+config_query_list CURL_SSL "Which SSL lib do you want?" none openssl gnutls
nss polarssl
diff --git a/ftp/curl/DEPENDS b/ftp/curl/DEPENDS
index ab74bbb..c7be810 100755
--- a/ftp/curl/DEPENDS
+++ b/ftp/curl/DEPENDS
@@ -4,23 +4,34 @@ if [[ "$CURL_SSL" == "gnutls" ]]; then
depends gnutls \
"--with-gnutls \
--with-ca-bundle=$INSTALL_ROOT/etc/ssl/certs/ca-certificates.crt \
- --without-ssl --without-nss" &&
+ --without-ssl --without-nss --without-polarssl" &&
depends ca-certificates
elif [[ "$CURL_SSL" == "openssl" ]]; then
depends openssl \
"--with-ssl \
--without-ca-bundle \
--with-ca-path=$INSTALL_ROOT/etc/ssl/certs \
- --without-gnutls --without-nss" &&
+ --without-gnutls --without-nss --without-polarssl" &&
depends ca-certificates
elif [[ "$CURL_SSL" == "nss" ]]; then
depends -sub PEM nss \
"--with-nss \
--with-ca-bundle=$INSTALL_ROOT/etc/ssl/certs/ca-certificates.crt \
- --without-gnutls --without-ssl" &&
+ --without-gnutls --without-ssl --without-polarssl" &&
+ depends ca-certificates
+elif [[ "$CURL_SSL" == "polarssl" ]]; then
+ depends polarssl \
+ "--with-polarssl \
+ --with-ca-bundle=$INSTALL_ROOT/etc/ssl/certs/ca-certificates.crt \
+ --without-ssl --without-nss --without-gnutls" &&
depends ca-certificates
fi &&

+optional_depends krb5 \
+ "--with-gssapi " \
+ "--without-gssapi " \
+ "GSSAPI support" &&
+
optional_depends libssh2 \
"--with-libssh2=$INSTALL_ROOT/usr" \
'--without-libssh2' \
diff --git a/ftp/curl/DETAILS b/ftp/curl/DETAILS
index 5038d72..4c5a42a 100755
--- a/ftp/curl/DETAILS
+++ b/ftp/curl/DETAILS
@@ -1,5 +1,5 @@
SPELL=curl
- VERSION=7.28.0
+ VERSION=7.28.1
SECURITY_PATCH=8
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.asc
diff --git a/ftp/curl/HISTORY b/ftp/curl/HISTORY
index 7071a61..41bdf7a 100644
--- a/ftp/curl/HISTORY
+++ b/ftp/curl/HISTORY
@@ -1,3 +1,8 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 7.28.1
+ * CONFIGURE, DEPENDS: add support for polarssl
+ * DEPENDS: add krb5 (GSSAPI) support
+
2012-10-11 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 7.28.0

diff --git a/net/libproxy/DETAILS b/net/libproxy/DETAILS
index 119376b..1954509 100755
--- a/net/libproxy/DETAILS
+++ b/net/libproxy/DETAILS
@@ -1,7 +1,7 @@
SPELL=libproxy
- VERSION=0.4.10
+ VERSION=0.4.11
+
SOURCE_HASH=sha512:563a837946a73c41e0773cec93332c6308245c0b807a40a0fb052c2445deae4a117ba2780a350c799717fd11c4dbe410183a38ea050a4f04db0b1adcb6f9ad98
SECURITY_PATCH=1
-
SOURCE_HASH=sha512:d7400740290bffb66ced317692f6b6fdb3e9973e48af1287df51dd3813706164ac6ee6970bde0f7b28beed4a6b6086bf957d85ec8c543e4c0af7044defb88e82
SOURCE="${SPELL}-${VERSION}.tar.gz"
SOURCE_URL[0]=http://libproxy.googlecode.com/files/${SOURCE}
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
diff --git a/net/libproxy/HISTORY b/net/libproxy/HISTORY
index 16dd4cb..5f8ea3d 100644
--- a/net/libproxy/HISTORY
+++ b/net/libproxy/HISTORY
@@ -1,3 +1,6 @@
+2013-01-20 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.4.11
+
2012-11-17 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: this was a security update (at least CVE-2012-4504);
SECURITY_PATCH=1



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (3c39747ac478c146668c5880544c8ae06ee5eb80), Treeve Jelbert, 01/22/2013

Archive powered by MHonArc 2.6.24.

Top of Page