Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Arwed von Merkatz (3ab4774c8ab211828853657d7531ddc75a2b01d3)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Arwed von Merkatz <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Arwed von Merkatz (3ab4774c8ab211828853657d7531ddc75a2b01d3)
  • Date: Thu, 19 Apr 2007 14:15:34 -0500

GIT changes to master grimoire by Arwed von Merkatz <v.merkatz AT gmx.net>:

archive/gzip/HISTORY | 6 ++
archive/gzip/REPAIR^5a04e3821a948c0fa5ca50d054caa253^UP_TRIGGERS | 3 -
archive/gzip/UP_TRIGGERS | 2
disk/udev/HISTORY | 7 +-
disk/udev/init.d/copy-persistent-rules | 29
++++++++++
5 files changed, 41 insertions(+), 6 deletions(-)

New commits:
commit 3ab4774c8ab211828853657d7531ddc75a2b01d3
Author: Arwed von Merkatz <v.merkatz AT gmx.net>
Commit: Arwed von Merkatz <v.merkatz AT gmx.net>

gzip: fix UP_TRIGGERS to actually trigger when needed

commit e3b6ec89f82332ae540a19bc32432fefdb1644d0
Author: Arwed von Merkatz <v.merkatz AT gmx.net>
Commit: Arwed von Merkatz <v.merkatz AT gmx.net>

udev: added init script to make generated rules really persistent

diff --git a/archive/gzip/HISTORY b/archive/gzip/HISTORY
index d160406..020a22b 100644
--- a/archive/gzip/HISTORY
+++ b/archive/gzip/HISTORY
@@ -1,3 +1,9 @@
+2007-04-19 Arwed v. Merkatz <v.merkatz AT gmx.net>
+ * UP_TRIGGERS: trigger man recast independent of gzip version always
+ if the path to gunzip in man.conf is wrong
+ * REPAIR^5a04e3821a948c0fa5ca50d054caa253^UP_TRIGGERS: removed,
+ UP_TRIGGERS is run from the grimoire, not the tablet
+
2007-04-14 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated to version 1.3.12

diff --git a/archive/gzip/REPAIR^5a04e3821a948c0fa5ca50d054caa253^UP_TRIGGERS
b/archive/gzip/REPAIR^5a04e3821a948c0fa5ca50d054caa253^UP_TRIGGERS
deleted file mode 100755
index e6c1633..0000000
--- a/archive/gzip/REPAIR^5a04e3821a948c0fa5ca50d054caa253^UP_TRIGGERS
+++ /dev/null
@@ -1,3 +0,0 @@
-if [[ $VERSION == 1.3.9 ]] && spell_ok man; then
- up_trigger man cast_self
-fi
diff --git a/archive/gzip/UP_TRIGGERS b/archive/gzip/UP_TRIGGERS
index e6c1633..8c8eeca 100755
--- a/archive/gzip/UP_TRIGGERS
+++ b/archive/gzip/UP_TRIGGERS
@@ -1,3 +1,3 @@
-if [[ $VERSION == 1.3.9 ]] && spell_ok man; then
+if grep -q usr/bin/gunzip /etc/man.conf; then
up_trigger man cast_self
fi
diff --git a/disk/udev/HISTORY b/disk/udev/HISTORY
index 05df281..c0e99e3 100644
--- a/disk/udev/HISTORY
+++ b/disk/udev/HISTORY
@@ -1,10 +1,13 @@
+2007-04-19 Arwed v. Merkatz <v.merkatz AT gmx.net>
+ * init.d/copy-persistent-rules: added init script to copy the files
+ created in /dev/.udev/ by the rules_generator rules so they actually
+ are persistent afterwards
+
2007-03-31 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 108
* CONFIGURE: remove non-existant extras/{run_directory,dasd_id}
you may need to redo your netconf(see FINAL for more details)

-
-
2007-02-14 Juuso Alasuutari <iuso AT sourcemage.org>
* PRE_SUB_DEPENDS, SUB_DEPENDS: Added, new sub-dependency
VOLUME_ID for bug #13500.
diff --git a/disk/udev/init.d/copy-persistent-rules
b/disk/udev/init.d/copy-persistent-rules
new file mode 100755
index 0000000..696fc00
--- /dev/null
+++ b/disk/udev/init.d/copy-persistent-rules
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+PROGRAM=/bin/false
+RUNLEVEL=S
+NEEDS="+local_fs"
+
+. /etc/init.d/smgl_init
+
+start() {
+ for rules in /dev/.udev/tmp-rules--*; do
+ persistent_rules=${rules#/dev/.udev/tmp-rules--}
+ if [ ! -e /etc/udev/rules.d/$persistent_rules ]; then
+ echo "Copying persistent rules to /etc/udev/rules.d/$persistent_rules"
+ cp $rules /etc/udev/rules.d/$persistent_rules
+ fi
+ evaluate_retval
+ done
+}
+
+stop() { exit 0; }
+restart() { exit 3; }
+reload() { exit 3; }
+force_reload() { exit 3; }
+status() { exit 3; }
+
+usage()
+{
+ echo "Usage: $0 {start|stop}"
+}



  • [SM-Commit] GIT changes to master grimoire by Arwed von Merkatz (3ab4774c8ab211828853657d7531ddc75a2b01d3), Arwed von Merkatz, 04/19/2007

Archive powered by MHonArc 2.6.24.

Top of Page