Skip to Content.
Sympa Menu

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

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 (b90a76bb7b522d30b55458e5e25b31ee8a6fb5ea)
  • Date: Sun, 15 Jul 2012 06:09:03 -0500

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

disk/avfs/BUILD | 3 +++
disk/avfs/CONFIGURE | 22 ++++++++++++++++++++++
disk/avfs/DEPENDS | 46 ++++++++++++++++++++++++++++++++++++++++++++++
disk/avfs/DETAILS | 4 ++--
disk/avfs/HISTORY | 6 ++++++
net/samba/DEPENDS | 4 +++-
net/samba/HISTORY | 3 +++
7 files changed, 85 insertions(+), 3 deletions(-)

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

avfs: => 1.0.1

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

samba: libcap becomes optional

diff --git a/disk/avfs/BUILD b/disk/avfs/BUILD
new file mode 100755
index 0000000..b6b40a7
--- /dev/null
+++ b/disk/avfs/BUILD
@@ -0,0 +1,3 @@
+OPTS="$AVFS_OPTS $OPTS" &&
+
+default_build
diff --git a/disk/avfs/CONFIGURE b/disk/avfs/CONFIGURE
new file mode 100755
index 0000000..2eeb30b
--- /dev/null
+++ b/disk/avfs/CONFIGURE
@@ -0,0 +1,22 @@
+config_query_option AVFS_OPTS "Compile avfs as a shared or static library?"
y \
+ "--enable-library" \
+ "--disable-library" &&
+
+config_query_option AVFS_OPTS "Compile the preloaded library and server?" n \
+ "--enable-preload" \
+ "--disable-preload" &&
+
+config_query_option AVFS_OPTS "Compile in debug information?" n \
+ "--enable-debug" \
+ "--disable-debug" &&
+
+# dav support is broken
+message "${MESSAGE_COLOR}Dav module is incompatible with modern libraries,
disabling it...${DEFAULT_COLOR}" &&
+list_add "AVFS_OPTS" "--disable-dav" &&
+#config_query_option AVFS_OPTS "Compile the dav module?" n \
+# "--enable-dav" \
+# "--disable-dav" &&
+
+config_query_option AVFS_OPTS "Compile avfscoda daemon and kernel module?" n
\
+ "--enable-avfscoda" \
+ "--disable-avfscoda"
diff --git a/disk/avfs/DEPENDS b/disk/avfs/DEPENDS
new file mode 100755
index 0000000..d25e86d
--- /dev/null
+++ b/disk/avfs/DEPENDS
@@ -0,0 +1,46 @@
+message "${MESSAGE_COLOR}NOTE: usage of system libraries leads to
significant low access speed${DEFAULT_COLOR}" &&
+
+optional_depends zlib \
+ "--with-system-zlib" \
+ "--without-system-zlib" \
+ "to use system zlib instead of builtin" &&
+
+optional_depends bzip2 \
+ "--with-system-bzlib" \
+ "--without-system-bzlib" \
+ "to use system bzlib instead of builtin" &&
+
+optional_depends xz-utils \
+ "--with-xz" \
+ "--without-xz" \
+ "for LZMA support" &&
+
+optional_depends fuse \
+ "--enable-fuse" \
+ "--disable-fuse" \
+ "to compile avfsd for fuse" &&
+
+if list_find "$AVFS_OPTS" "--enable-dav"; then
+ optional_depends -sub DAV neon \
+ "--without-included-neon --with-neon=$INSTALL_ROOT/usr" \
+ "--with-included-neon" \
+ "to use system neon library" &&
+
+ if ! is_depends_enabled $SPELL neon; then
+ optional_depends openssl \
+ "--with-ssl=$INSTALL_ROOT/usr" \
+ "--without-ssl" \
+ "for OpenSSL support in dav module" &&
+
+ config_query_list AVFS_NEON_XML "Specify XML Parser:" \
+ expat \
+ libxml2 &&
+
+ case $AVFS_NEON_XML in
+ expat) depends expat "--with-expat=$INSTALL_ROOT/usr"
+ ;;
+ libxml2) depends libxml2 "--enable-libxml"
+ ;;
+ esac
+ fi
+fi
diff --git a/disk/avfs/DETAILS b/disk/avfs/DETAILS
index dfa125e..da335a8 100755
--- a/disk/avfs/DETAILS
+++ b/disk/avfs/DETAILS
@@ -1,12 +1,12 @@
SPELL=avfs
- VERSION=1.0.0
+ VERSION=1.0.1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.asc
SOURCE_URL[0]=$SOURCEFORGE_URL/avf/$SOURCE
SOURCE2_URL[0]=${SOURCE_URL[0]}.asc
SOURCE_GPG=6623F6B4.gpg:$SOURCE2:UPSTREAM_KEY
SOURCE2_IGNORE=signature
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE=http://avf.sourceforge.net/
LICENSE[0]=GPL
ENTERED=20071205
diff --git a/disk/avfs/HISTORY b/disk/avfs/HISTORY
index f85d99b..ee12568 100644
--- a/disk/avfs/HISTORY
+++ b/disk/avfs/HISTORY
@@ -1,3 +1,9 @@
+2012-07-15 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.0.1; quoting paths
+ * BUILD: added, to use AVFS_OPTS
+ * DEPENDS: added, for missing dependencies
+ * CONFIGURE: added, for missing configure options
+
2011-09-26 Bor Kraljič <pyrobor AT ver.si>
* DETAILS: converted to upstream signature checking
* 6623F6B4.gpg: added gpg keyring
diff --git a/net/samba/DEPENDS b/net/samba/DEPENDS
index 82a5b65..eb8f874 100755
--- a/net/samba/DEPENDS
+++ b/net/samba/DEPENDS
@@ -1,5 +1,4 @@
depends e2fsprogs &&
-depends libcap &&
depends popt "--without-included-popt" &&

if [[ "$SAMBA_AD" == "y" ]]; then
@@ -12,6 +11,9 @@ else
"for LDAP support"
fi &&

+optional_depends libcap "" "" "for POSIX capability support" &&
+
+
optional_depends readline \
"--with-readline" \
"--without-readline" \
diff --git a/net/samba/HISTORY b/net/samba/HISTORY
index 6e9ec08..4528b1e 100644
--- a/net/samba/HISTORY
+++ b/net/samba/HISTORY
@@ -1,3 +1,6 @@
+2012-07-15 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: libcap becomes optional
+
2012-06-28 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 3.6.6




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (b90a76bb7b522d30b55458e5e25b31ee8a6fb5ea), Vlad Glagolev, 07/15/2012

Archive powered by MHonArc 2.6.24.

Top of Page