Skip to Content.
Sympa Menu

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

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 (791b16f0949f2bd19c6745e19c4178759f0f3e2e)
  • Date: Sun, 29 Jan 2017 14:14:30 +0000

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

ChangeLog | 3 +++
crypto/libsasl/CONFIGURE | 3 +++
crypto/libsasl/DEPENDS | 12 ++++++------
crypto/libsasl/HISTORY | 4 ++++
crypto/openssh/DEPENDS | 8 ++++----
crypto/openssh/HISTORY | 3 +++
kde-frameworks/kio/DEPENDS | 2 +-
kde-frameworks/kio/HISTORY | 3 +++
libs/neon/DETAILS | 2 +-
libs/neon/HISTORY | 3 +++
neon.gpg |binary
printer/gutenprint/DEPENDS | 12 ++----------
printer/gutenprint/DETAILS | 4 ++--
printer/gutenprint/HISTORY | 4 ++++
14 files changed, 39 insertions(+), 24 deletions(-)

New commits:
commit 791b16f0949f2bd19c6745e19c4178759f0f3e2e
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

gutenprint: => 5.2.12

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

kio - tweak depends

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

openssh - tweak depends

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

neon.gpg - add Joe Orton

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

neon: => 0.30.2

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

libsasl - improve

diff --git a/ChangeLog b/ChangeLog
index 2e82d23..79430a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * neon.gpg: add 9833CC49 "Joe Orton <joe AT manyfish.uk>"
+
2017-01-26 Treeve Jelbert <treeve AT sourcemage.org>
* xorg.gpg: add 56F8CFAD "Julien Cristau
<julien.cristau AT ens-lyon.org>"

diff --git a/crypto/libsasl/CONFIGURE b/crypto/libsasl/CONFIGURE
new file mode 100755
index 0000000..34d3d7d
--- /dev/null
+++ b/crypto/libsasl/CONFIGURE
@@ -0,0 +1,3 @@
+source $GRIMOIRE/config_query_multi.function &&
+config_query_multi SASL_AUTH 'which authentification schemes' \
+ cram digest scram otp srp plain anon login ntlm passdss
diff --git a/crypto/libsasl/DEPENDS b/crypto/libsasl/DEPENDS
index 8ad3039..d36db6e 100755
--- a/crypto/libsasl/DEPENDS
+++ b/crypto/libsasl/DEPENDS
@@ -1,7 +1,7 @@
-depends automake &&
-depends autoconf &&
+#depends automake &&
+#depends autoconf &&
depends groff &&
-optional_depends krb5 '' '' 'Kerneors support' &&
-optional_depends linux-pam '' '' 'PAM support' &&
-optional_depends openldap '' '' 'LDAP support' &&
-optional_depends SSL '' '' ''
+optional_depends krb5 '' '--disable-gssap' 'Kerberos support' &&
+optional_depends linux-pam '' '--without-pam' 'PAM support' &&
+optional_depends openldap '' '--without-ldap' 'LDAP support' &&
+optional_depends SSL '' '--with-openssl' 'SSL support'
diff --git a/crypto/libsasl/HISTORY b/crypto/libsasl/HISTORY
index 13d46de..ec928be 100644
--- a/crypto/libsasl/HISTORY
+++ b/crypto/libsasl/HISTORY
@@ -1,3 +1,7 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: actually disable some optional depends
+ * CONFIGURE: add missing file
+
2016-06-07 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: 2.1.26
new url
diff --git a/crypto/openssh/DEPENDS b/crypto/openssh/DEPENDS
index 2972b20..640c8c8 100755
--- a/crypto/openssh/DEPENDS
+++ b/crypto/openssh/DEPENDS
@@ -6,23 +6,23 @@ depends zlib &&

optional_depends "linux-pam" \
"--with-pam" \
- "" \
+ "--without-pam" \
"for optional pluggable authentication" &&

optional_depends "krb5" \
"--with-kerberos5=/usr" \
- "" \
+ "--without-kerberos5" \
"to enable Kerberos 5 support" &&

optional_depends "xauth" \
"--with-xauth="${INSTALL_ROOT}/usr/bin/xauth"" \
- "" \
+ "--without-xauth" \
"X server auth (needed by X11Forwarding)" &&

if [ "${OPENSSH_LPK}" == "y" ]; then
depends autoconf &&
optional_depends "openldap" \
"--with-ldap" \
- "" \
+ "--without-ldap" \
"to support sshd checking LDAP for public keys"
fi
diff --git a/crypto/openssh/HISTORY b/crypto/openssh/HISTORY
index c4eaec1..a0f600e 100644
--- a/crypto/openssh/HISTORY
+++ b/crypto/openssh/HISTORY
@@ -1,3 +1,6 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: disable some optional depends
+
2016-12-19 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 7.4p1, SECURITY_PATCH++,
http://www.openssh.com/txt/release-7.4
diff --git a/kde-frameworks/kio/DEPENDS b/kde-frameworks/kio/DEPENDS
index 48bfdd5..e023d4b9 100755
--- a/kde-frameworks/kio/DEPENDS
+++ b/kde-frameworks/kio/DEPENDS
@@ -21,4 +21,4 @@ optional_depends kdoctools '' '
-DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=1' 'bui
optional_depends knotifications '' 'error notifications in kpac' &&
optional_depends qtscript '' '' 'Proxy Auto Configuration' &&
optional_depends acl '' '' 'support for Access Control Lists' &&
-optional_depends krb5 '' '' 'support HTTP authentication services'
+optional_depends krb5 '' ' -DCMAKE_DISABLE_FIND_PACKAGE_GSSAPI=1' 'support
HTTP authentication services'
diff --git a/kde-frameworks/kio/HISTORY b/kde-frameworks/kio/HISTORY
index 19bda44..2a330b6 100644
--- a/kde-frameworks/kio/HISTORY
+++ b/kde-frameworks/kio/HISTORY
@@ -1,3 +1,6 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: actually disable krb5
+
2017-01-14 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 5.30.0

diff --git a/libs/neon/DETAILS b/libs/neon/DETAILS
index 729bc18..7f9e154 100755
--- a/libs/neon/DETAILS
+++ b/libs/neon/DETAILS
@@ -1,5 +1,5 @@
SPELL=neon
- VERSION=0.30.1
+ VERSION=0.30.2
SECURITY_PATCH=2
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE2=$SOURCE.asc
diff --git a/libs/neon/HISTORY b/libs/neon/HISTORY
index 67a1764..a91843d 100644
--- a/libs/neon/HISTORY
+++ b/libs/neon/HISTORY
@@ -1,3 +1,6 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 0.30.2
+
2016-07-01 Vlad Glagolev <stealth AT sourcemage.org>
* UP_TRIGGERS: added, for davfs check

diff --git a/neon.gpg b/neon.gpg
index d395f90..d928a43 100644
Binary files a/neon.gpg and b/neon.gpg differ
diff --git a/printer/gutenprint/DEPENDS b/printer/gutenprint/DEPENDS
index 8c2d95c..886e221 100755
--- a/printer/gutenprint/DEPENDS
+++ b/printer/gutenprint/DEPENDS
@@ -1,4 +1,6 @@
+depends cups &&
depends JPEG &&
+optional_depends libusb '' '' 'USB support' &&
optional_depends gtk+2 \
"--enable-libgutenprintui2" \
"--disable-libgutenprintui2" \
@@ -11,16 +13,6 @@ optional_depends gimp \

depends readline &&

-optional_depends "CUPS" \
- "--with-cups --enable-cups-ppds" \
- "--disable-cups" \
- "for CUPS support" &&
-
-optional_depends foomatic \
- '--with-foomatic' \
- '--without-foomatic' \
- 'Foomatic support' &&
-
optional_depends gettext \
'--enable-nls' \
'--disable-nls' \
diff --git a/printer/gutenprint/DETAILS b/printer/gutenprint/DETAILS
index 7fc19ec..204ab43 100755
--- a/printer/gutenprint/DETAILS
+++ b/printer/gutenprint/DETAILS
@@ -5,8 +5,8 @@
# SOURCE=$SPELL$VERSION.tar.bz2
#SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL$VERSION"
#else
- VERSION=5.2.11
-
SOURCE_HASH=sha512:f4010e489dd6763b19113abf1d55e84cea8d36b920d03dbe204dba30ab0d3fb3e3391e739cd1a56e2f63581c8ce4a856a7f747deb6e7b18d7e1f7a3d87901c60
+ VERSION=5.2.12
+
SOURCE_HASH=sha512:38dd34ca1946a37d0bdaa7d69f65b11651097b6d7f2b451387afd72b32fc92c3670bf54b46df226ca7a64d78f50117a648e2d6194ebaf2e86627cb29fb0e958e
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
#fi
diff --git a/printer/gutenprint/HISTORY b/printer/gutenprint/HISTORY
index f0470d5..6b0d649 100644
--- a/printer/gutenprint/HISTORY
+++ b/printer/gutenprint/HISTORY
@@ -1,3 +1,7 @@
+2017-01-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 5.2.12
+ * DEPENDS: foomatic - remove; cups required
+
2016-01-17 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 5.2.11




  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (791b16f0949f2bd19c6745e19c4178759f0f3e2e), Treeve Jelbert, 01/29/2017

Archive powered by MHonArc 2.6.24.

Top of Page