Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (a23a8ec257fdd8f79ea29bc645f7b7a1755ced34)

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 stable-0.62 grimoire by Vlad Glagolev (a23a8ec257fdd8f79ea29bc645f7b7a1755ced34)
  • Date: Fri, 24 Apr 2015 02:53:23 -0500

GIT changes to stable-0.62 grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

archive-libs/libarchive/DEPENDS | 5 +++++
archive-libs/libarchive/HISTORY | 7 +++++--
gnome2-libs/gvfs/DEPENDS | 5 +++++
gnome2-libs/gvfs/HISTORY | 3 +++
net/nfs-utils/BUILD | 1 -
net/nfs-utils/CONFIGURE | 7 +++++--
net/nfs-utils/DEPENDS | 9 ++++++++-
net/nfs-utils/HISTORY | 4 ++++
8 files changed, 35 insertions(+), 6 deletions(-)

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

gvfs: added missing optional libarchive dependency

(cherry picked from commit 970f053b7072c53c869b052922c1a4bddb9c55bd)

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

libarchive: added missing lzo dependency

(cherry picked from commit 4983356b7a1eb9605f9552496c793ce2f8a63cf4)

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

nfs-utils: fixed build on lvm-less systems

(cherry picked from commit 6c1ff28157f33c9c2d3b461f69c879afeb346908)

diff --git a/archive-libs/libarchive/DEPENDS b/archive-libs/libarchive/DEPENDS
index 0f35957..07562a3 100755
--- a/archive-libs/libarchive/DEPENDS
+++ b/archive-libs/libarchive/DEPENDS
@@ -28,6 +28,11 @@ optional_depends xz-utils \
"--without-lzma" \
"for xz support through lzma" &&

+optional_depends lzo \
+ "--with-lzo2" \
+ "--without-lzo2" \
+ "for lzop support through liblzo2" &&
+
optional_depends nettle \
"--with-nettle" \
"--without-nettle" \
diff --git a/archive-libs/libarchive/HISTORY b/archive-libs/libarchive/HISTORY
index 33e77f3..332aaf3 100644
--- a/archive-libs/libarchive/HISTORY
+++ b/archive-libs/libarchive/HISTORY
@@ -1,8 +1,11 @@
+2015-04-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing lzo dependency
+
2014-08-22 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: fix typo

-2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
- * DEPENDS: openssl => SSL
+2014-08-19 Treeve Jelbert <treeve AT sourcemage.org>
+ * DEPENDS: openssl => SSL

2013-04-24 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 3.1.2
diff --git a/gnome2-libs/gvfs/DEPENDS b/gnome2-libs/gvfs/DEPENDS
index d212530..9c1a9cb 100755
--- a/gnome2-libs/gvfs/DEPENDS
+++ b/gnome2-libs/gvfs/DEPENDS
@@ -31,6 +31,11 @@ if is_depends_enabled $SPELL $(get_spell_provider $SPELL
DEVICE-MANAGER); then
"build with gudev support"
fi &&

+optional_depends libarchive \
+ "--enable-archive" \
+ "--disable-archive" \
+ "for archive support" &&
+
optional_depends gnome-disk-utility \
"--enable-gdu" \
"--disable-gdu" \
diff --git a/gnome2-libs/gvfs/HISTORY b/gnome2-libs/gvfs/HISTORY
index f2182d8..a7f4379 100644
--- a/gnome2-libs/gvfs/HISTORY
+++ b/gnome2-libs/gvfs/HISTORY
@@ -1,3 +1,6 @@
+2015-04-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing optional libarchive dependency
+
2015-03-16 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.22.3
* DEPENDS: added missing optional libxslt dependency
diff --git a/net/nfs-utils/BUILD b/net/nfs-utils/BUILD
index 550a7b7..2970e60 100755
--- a/net/nfs-utils/BUILD
+++ b/net/nfs-utils/BUILD
@@ -1,6 +1,5 @@
OPTS="$OPTS \
--disable-gss \
- $NFS_UTILS_NFSV3 \
$NFS_UTILS_NFSV4" &&

make_single &&
diff --git a/net/nfs-utils/CONFIGURE b/net/nfs-utils/CONFIGURE
index 50ba1eb..d55a17f 100755
--- a/net/nfs-utils/CONFIGURE
+++ b/net/nfs-utils/CONFIGURE
@@ -1,5 +1,8 @@
-config_query_option NFS_UTILS_NFSV3 "Enable NFSv3 support?" y \
- "--enable-nfsv3" "--disable-nfsv3" &&
+# remove deprecated options
+if [[ -n "$NFS_UTILS_NFSV3" ]]; then
+ persistent_remove NFS_UTILS_NFSV3
+fi &&
+
config_query_option NFS_UTILS_NFSV4 "Enable NFSv4 support?" n \
"--enable-nfsv4" "--disable-nfsv4" &&

diff --git a/net/nfs-utils/DEPENDS b/net/nfs-utils/DEPENDS
index 4d3872e..f7d1a23 100755
--- a/net/nfs-utils/DEPENDS
+++ b/net/nfs-utils/DEPENDS
@@ -13,5 +13,12 @@ optional_depends tcp_wrappers \
if [[ "$NFS_UTILS_NFSV4" == "--enable-nfsv4" ]]; then
depends libevent &&
depends libnfsidmap &&
- depends sqlite
+ depends sqlite &&
+
+ optional_depends lvm \
+ "--enable-nfsv41" \
+ "--disable-nfsv41" \
+ "for NFS v4.1 support"
+else
+ list_add "NFS_UTILS_NFSV4" "--disable-nfsv41"
fi
diff --git a/net/nfs-utils/HISTORY b/net/nfs-utils/HISTORY
index ed552bf..a9959e8 100644
--- a/net/nfs-utils/HISTORY
+++ b/net/nfs-utils/HISTORY
@@ -1,3 +1,7 @@
+2015-04-24 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD, CONFIGURE: removed deprecated NFSv3 setting
+ * DEPENDS: fixed build on lvm-less systems; added lvm optional dep
+
2014-01-16 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: NFSv4 support requires sqlite




  • [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (a23a8ec257fdd8f79ea29bc645f7b7a1755ced34), Vlad Glagolev, 04/24/2015

Archive powered by MHonArc 2.6.24.

Top of Page