Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.17 grimoire by Eric Sandall (5104fb61534989511efdf031e70f1b586d3d2704)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-0.17 grimoire by Eric Sandall (5104fb61534989511efdf031e70f1b586d3d2704)
  • Date: Mon, 4 Feb 2008 13:54:56 -0600

GIT changes to stable-0.17 grimoire by Eric Sandall <sandalle AT sourcemage.org>:

VERSION | 2 +-
disk/ide-smart/BUILD | 5 ++---
disk/ide-smart/HISTORY | 6 ++++++
disk/ide-smart/PRE_BUILD | 4 ++++
http/apache/DEPENDS | 7 ++++++-
http/apache/DETAILS | 4 ++--
http/apache/HISTORY | 7 +++++++
utils/nut/BUILD | 2 +-
utils/nut/HISTORY | 3 +++
9 files changed, 32 insertions(+), 8 deletions(-)

New commits:
commit 5104fb61534989511efdf031e70f1b586d3d2704
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

VERSION: 0.17-2

commit ad2fcd9816d1c62d7314f6d692c725262fcfc81c
Author: Elisamuel Resto <ryuji AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

utils/nut: use --with-group since --with-user was specified in $OPTS
(cherry picked from commit 89cbba53bd4195358f0daeddc1fb259281796f0e)

commit c56f77e819bf6be34e7c5f50950a0916abf8e806
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

apache: Optionally depends on gdbm (finishes Bug #14241)
(cherry picked from commit d69031a6116537992934e16efc6cc3b253320ecc)

commit 9c0ef69a007c5d612869a18e546eaf87a613e5db
Author: Ladislav Hagara <ladislav.hagara AT unob.cz>
Commit: Eric Sandall <sandalle AT sourcemage.org>

apache 1.3.41, SECURITY_PATCH=3
(cherry picked from commit 199ca85be83bd36e7e1502bbab63ef7d36d6dace)

commit edb6aec2a80adf40cde0b4af3cf06100febfa640
Author: Martin Spitzbarth <m.spitzbarth AT gmx.de>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ide-smart: Use make -B, install manpages to usr/share/man. Fixes bug#14266

diff --git a/VERSION b/VERSION
index dfc5080..b64c34b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.17-1
+0.17-2
diff --git a/disk/ide-smart/BUILD b/disk/ide-smart/BUILD
index 06e2384..e55d438 100755
--- a/disk/ide-smart/BUILD
+++ b/disk/ide-smart/BUILD
@@ -1,3 +1,2 @@
-sedit "s:INSTALL_PREFIX=/usr/local:INSTALL_PREFIX=${INSTALL_ROOT}/usr:"
Makefile &&
-rm ide-smart &&
-make
+# The tarball ships with precompiled binaries. Force make to recompile using
-B
+make -B
diff --git a/disk/ide-smart/HISTORY b/disk/ide-smart/HISTORY
index c23c96e..0264f48 100644
--- a/disk/ide-smart/HISTORY
+++ b/disk/ide-smart/HISTORY
@@ -1,3 +1,9 @@
+2008-02-03 Martin Spitzbarth <m.spitzbarth AT gmx.de>
+ * BUILD: moved a sed command to PRE_BUILD,
+ force compilation by using make -B (Bug #14266)
+ * PRE_BUILD: created, moved a sed command here from BUILD,
+ install manpages to usr/share/man instead of usr/man
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/disk/ide-smart/PRE_BUILD b/disk/ide-smart/PRE_BUILD
new file mode 100755
index 0000000..aab472c
--- /dev/null
+++ b/disk/ide-smart/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+sedit "s:INSTALL_PREFIX=/usr/local:INSTALL_PREFIX=${INSTALL_ROOT}/usr:"
Makefile &&
+sedit "s:/man/:/share/man/:" Makefile
diff --git a/http/apache/DEPENDS b/http/apache/DEPENDS
index deddfe4..6e63efc 100755
--- a/http/apache/DEPENDS
+++ b/http/apache/DEPENDS
@@ -1 +1,6 @@
-optional_depends db '--enable-module=auth_db' '--disable-module=auth_db'
'for Berekely DB support'
+optional_depends db '--enable-module=auth_db' '--disable-module=auth_db'
'for Berekely DB support' &&
+
+optional_depends 'gdbm' \
+ '--enable-module=rewrite' \
+ '--disable-module=rewrite' \
+ 'for extensible hasing database routines'
diff --git a/http/apache/DETAILS b/http/apache/DETAILS
index 75636ec..76206df 100755
--- a/http/apache/DETAILS
+++ b/http/apache/DETAILS
@@ -1,6 +1,6 @@
SPELL=apache
- VERSION=1.3.39
- SECURITY_PATCH=2
+ VERSION=1.3.41
+ SECURITY_PATCH=3
SOURCE=${SPELL}_$VERSION.tar.gz
SOURCE2=$SOURCE.asc
SOURCE_GPG="apache.gpg:$SOURCE2:UPSTREAM_KEY"
diff --git a/http/apache/HISTORY b/http/apache/HISTORY
index 0723ff0..3f70275 100644
--- a/http/apache/HISTORY
+++ b/http/apache/HISTORY
@@ -1,3 +1,10 @@
+2008-01-25 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Optionally depend on gdbm (Bug #14241) for mod_rewrite
+
+2008-01-19 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 1.3.41, SECURITY_PATCH=3
+ http://httpd.apache.org/security/vulnerabilities_13.html
+
2007-11-29 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Use upstream apache.gpg

diff --git a/utils/nut/BUILD b/utils/nut/BUILD
index b4cb3d8..72cb5c5 100755
--- a/utils/nut/BUILD
+++ b/utils/nut/BUILD
@@ -1,3 +1,3 @@
create_account ups &&
-OPTS="--with-user=ups $OPTS" &&
+OPTS="--with-user=ups --with-group=nobody $OPTS" &&
default_build
diff --git a/utils/nut/HISTORY b/utils/nut/HISTORY
index b868df9..302c7e2 100644
--- a/utils/nut/HISTORY
+++ b/utils/nut/HISTORY
@@ -1,3 +1,6 @@
+2008-01-07 Elisamuel Resto <ryuji AT sourcemage.org>
+ * BUILD: must specify --with-group if --with-user is used in $OPTS
+
2007-12-20 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* 204DDF1B.gpg: added gpg keyring
* DETAILS: Fixed SOURCE_URL[0]



  • [SM-Commit] GIT changes to stable-0.17 grimoire by Eric Sandall (5104fb61534989511efdf031e70f1b586d3d2704), Eric Sandall, 02/04/2008

Archive powered by MHonArc 2.6.24.

Top of Page