Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (f5b567aa173decfa4893af72cf5ed457e843dcad)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (f5b567aa173decfa4893af72cf5ed457e843dcad)
  • Date: Mon, 21 Aug 2006 15:30:44 -0500

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

devel/jam/DETAILS | 5 ++---
devel/jam/HISTORY | 7 +++++++
devel/jam/INSTALL | 4 +---
devel/jam/PRE_BUILD | 7 ++++++-
net/firehol/DETAILS | 2 --
net/firehol/HISTORY | 4 ++++
net/firehol/INSTALL | 4 ++--
net/wwwoffle/BUILD | 2 +-
net/wwwoffle/FINAL | 2 +-
net/wwwoffle/HISTORY | 3 +++
utils/mcron/FINAL | 3 +++
utils/mcron/HISTORY | 10 ++++++----
utils/mcron/INSTALL | 4 ----
13 files changed, 36 insertions(+), 21 deletions(-)

New commits:
commit 468b038d3442a89cbe439780d3289f6c32ad354c
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

net/firehol:

DETAILS: removed UPDATED and BUILD_API=2 variables
INSTALL: fixed man pages installation

commit a41aefffc91ea1b7b08369656be6f66294ed50e8
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

utils/mcron:

INSTALL: removed, operations should be in FINAL anyway
FINAL: added, track_rootifying
HISTORY: fixed some minor typoes

commit 437c5ee3b1283b85c7a59ab248d4a44cb0fd5c0d
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

net/wwwoffle:

BUILD, FINAL: switching to TRACK_ROOT

commit d9c4d931edde2f46893c7f8f5a7782174ec07cbd
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

devel/jam/PRE_BUILD: quick fix, added yet another sedit lines for
optimization flags

commit 2417ef53e2af96455ea9e56008d5ad3b2f2b5d06
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

devel/jam:

DETAILS: MD5 -> SHA512, removed UPDATED and BUILD_API=2, added DOCS
PRE_BUILD: added sedit lines for substituing our {C,LD}FLAGS and for
switching to _Exit function to avoid warning messages
INSTALL: install_rootifying, removed installing RELEASE file because DOCS
has it, and chmod line was removed too as install does the same

diff --git a/devel/jam/DETAILS b/devel/jam/DETAILS
index b3b5f82..4ef325b 100755
--- a/devel/jam/DETAILS
+++ b/devel/jam/DETAILS
@@ -3,13 +3,12 @@
SOURCE=$SPELL-$VERSION.zip
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=ftp://ftp.perforce.com/jam/$SOURCE
- MD5[0]=f92caadb62fe4cb0b152eff508c9d450
+
SOURCE_HASH=sha512:bbb3132c617a14dff9fcce70e6d88bed298a5c6bee580fa9d9a2d99b47507c252968e5fdf66138e6d69d1f60f724365fd80012164cffc1e3d0f2c1005bcec437
WEB_SITE=http://www.perforce.com/jam/jam.html
ENTERED=20020220
- UPDATED=20020403
LICENSE[0]=ftp://ftp.perforce.com/pub/jam/src/README
- BUILD_API=2
KEYWORDS="devel"
+ DOCS="${DOCS} RELNOTES"
SHORT="Make(1) Redux. powerful, replacement for make"
cat << EOF
Jam is an alternative to the popular make(1) build tools. It constructs
diff --git a/devel/jam/HISTORY b/devel/jam/HISTORY
index f9be41f..239c00f 100644
--- a/devel/jam/HISTORY
+++ b/devel/jam/HISTORY
@@ -1,3 +1,10 @@
+2006-08-18 Pol Vinogradov <vin.public AT gmail.com>
+ * DETAILS: MD5 -> SHA512, removed UPDATED and BUILD_API=2, added DOCS
+ * PRE_BUILD: added sedit lines for substituing our {C,LD}FLAGS and for
+ switching to _Exit function to avoid warning messages
+ * INSTALL: install_rootifying, removed installing RELEASE file because
+ DOCS has it, and chmod line was removed too as install does the same
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/devel/jam/INSTALL b/devel/jam/INSTALL
index a912b73..d3377ed 100755
--- a/devel/jam/INSTALL
+++ b/devel/jam/INSTALL
@@ -1,3 +1 @@
-install -m 755 `basename $(find ${SOURCE_DIRECTORY} -name bin.*)`/jam
/usr/bin/jam &&
-install -D -m 444 RELNOTES /usr/doc/jam/RELNOTES
&&
-chmod a-s /usr/bin/jam
+install -m 0755 `basename $(find ${SOURCE_DIRECTORY} -name bin.*)`/jam
${INSTALL_ROOT}/usr/bin/jam
diff --git a/devel/jam/PRE_BUILD b/devel/jam/PRE_BUILD
index b1a70c5..01e5c77 100755
--- a/devel/jam/PRE_BUILD
+++ b/devel/jam/PRE_BUILD
@@ -1,3 +1,8 @@
mk_source_dir $SOURCE_DIRECTORY &&
cd $SOURCE_DIRECTORY &&
-unpack_file
+unpack_file &&
+sedit "s:CFLAGS =:CFLAGS = ${CFLAGS}:" Makefile &&
+sedit "s:(CFLAGS):(CFLAGS) ${LDFLAGS}:" Makefile &&
+sedit "s:CCFLAGS +=:CCFLAGS += ${CFLAGS}:g" Jamfile &&
+sedit "s:LINKFLAGS +=:LINKFLAGS += ${LDFLAGS}:g" Jamfile &&
+sedit "s:_exit:_Exit:" execunix.c
diff --git a/net/firehol/DETAILS b/net/firehol/DETAILS
index cf36e45..5a2c2f6 100755
--- a/net/firehol/DETAILS
+++ b/net/firehol/DETAILS
@@ -6,9 +6,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL

SOURCE_HASH=sha512:992232789ec6fc166258ae3ceb4ef942a961e79d98ea9271c5eaf46e2a6d28d6e1b2be34e9b6a201ca073041680ada00f42e408f7b454973748549ee84f4c674
WEB_SITE=http://firehol.sourceforge.net/
ENTERED=20041102
- UPDATED=20041127
LICENSE[0]=GPL
- BUILD_API=2
KEYWORDS="firewall net"
SHORT="A stateful packet filtering firewall builder for iptables."
cat << EOF
diff --git a/net/firehol/HISTORY b/net/firehol/HISTORY
index a394058..ce56403 100644
--- a/net/firehol/HISTORY
+++ b/net/firehol/HISTORY
@@ -1,3 +1,7 @@
+2006-08-21 Pol Vinogradov <vin.public AT gmail.com>
+ * DETAILS: removed UPDATED and BUILD_API=2 variables
+ * INSTALL: fixed man pages installation
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/net/firehol/INSTALL b/net/firehol/INSTALL
index d46a43a..0b8095e 100755
--- a/net/firehol/INSTALL
+++ b/net/firehol/INSTALL
@@ -2,8 +2,8 @@ IR=$INSTALL_ROOT
mkdir -p $IR/etc/firehol &&
install -m 754 firehol.sh $IR/etc/init.d/runlevels/%3/smgl-firehol &&
install -m 644 examples/* $IR/etc/firehol/ &&
-install man/firehol.1 $IR/usr/man/man1 &&
-install man/firehol.conf.5 $IR/usr/man/man5 &&
+install man/firehol.1 $IR/usr/share/man/man1 &&
+install man/firehol.conf.5 $IR/usr/share/man/man5 &&

# Install config file if it doesn't exist before and if was changed.
install_config_file examples/client-all.conf $IR/etc/firehol/firehol.conf
diff --git a/net/wwwoffle/BUILD b/net/wwwoffle/BUILD
index 41612d7..9588ee1 100755
--- a/net/wwwoffle/BUILD
+++ b/net/wwwoffle/BUILD
@@ -1,4 +1,4 @@
create_account proxy &&
-OPTS="$WWWOFFLE_OPTS --with-spooldir=${INSTALL_ROOT}/var/spool/wwwoffle
$OPTS" &&
+OPTS="$WWWOFFLE_OPTS --with-spooldir=${TRACK_ROOT}/var/spool/${SPELL} $OPTS"
&&

default_build
diff --git a/net/wwwoffle/FINAL b/net/wwwoffle/FINAL
index e2c2cea..3b1dd42 100755
--- a/net/wwwoffle/FINAL
+++ b/net/wwwoffle/FINAL
@@ -1 +1 @@
-chown -R proxy.proxy ${INSTALL_ROOT}/var/spool/wwwoffle
+chown -R proxy.proxy ${TRACK_ROOT}/var/spool/${SPELL}
diff --git a/net/wwwoffle/HISTORY b/net/wwwoffle/HISTORY
index c86e87f..8b5bbd9 100644
--- a/net/wwwoffle/HISTORY
+++ b/net/wwwoffle/HISTORY
@@ -1,3 +1,6 @@
+2006-08-20 Pol Vinogradov <vin.public AT gmail.com>
+ * BUILD, FINAL: switching to TRACK_ROOT
+
2006-08-13 Pol Vinogradov <vin.public AT gmail.com>
* PRE_BUILD: removed sedit line for doc/Makefile which no longer
exists
in source tarball
diff --git a/utils/mcron/FINAL b/utils/mcron/FINAL
new file mode 100755
index 0000000..f7dd40b
--- /dev/null
+++ b/utils/mcron/FINAL
@@ -0,0 +1,3 @@
+mkdir -p ${TRACK_ROOT}/var/cron/tabs &&
+echo "root" > ${TRACK_ROOT}/var/cron/allow &&
+touch ${TRACK_ROOT}/var/cron/deny
diff --git a/utils/mcron/HISTORY b/utils/mcron/HISTORY
index a0d7a3a..3fce9fd 100644
--- a/utils/mcron/HISTORY
+++ b/utils/mcron/HISTORY
@@ -1,3 +1,7 @@
+2006-08-20 Pol Vinogradov <vin.public AT gmail.com>
+ * INSTALL: removed, operations should be in FINAL anyway
+ * FINAL: added, track_rootifying
+
2006-06-28 Eric Sandall <eric AT sandall.us>
* DETAILS: Removed BUILD_API=2, set grimoire-wide

@@ -20,10 +24,10 @@

2004-12-19 Adam Clark <adamsgl AT dhbit.ca>
* DEPENDS: Added 'ed', squishes #7830
- * CONFIGURE/BUILD: Changed $DEBUG to $DEBUG_SUP - think about it
+ * CONFIGURE, BUILD: Changed $DEBUG to $DEBUG_SUP - think about it

2004-11-22 Maurizio Boriani <baux AT member.fsf.org>
- * DETAILS: Add buil api version 2.
+ * DETAILS: Add build api version 2.
* CONFIGURE: Use config_query for debug code selection.
* FINAL: Add root to cron allow.
* INSTALL: Splitted from BUILD.
@@ -37,5 +41,3 @@
* DEPENDS: This depends on guile.
* init.d/mcron: mcron init script added.
* init.d/cron: back compatibility to vixie cron.
-
-
diff --git a/utils/mcron/INSTALL b/utils/mcron/INSTALL
deleted file mode 100755
index 1576164..0000000
--- a/utils/mcron/INSTALL
+++ /dev/null
@@ -1,4 +0,0 @@
-default_install &&
-mkdir -p /var/cron/tabs &&
-echo "root" > /var/cron/allow &&
-touch /var/cron/deny



  • [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (f5b567aa173decfa4893af72cf5ed457e843dcad), Pol Vinogradov, 08/21/2006

Archive powered by MHonArc 2.6.24.

Top of Page