Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master games grimoire by Eric Sandall (2b2b57b8cd36a645a4d5a2f83be6290c1c935f78)

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 master games grimoire by Eric Sandall (2b2b57b8cd36a645a4d5a2f83be6290c1c935f78)
  • Date: Mon, 1 Jul 2013 15:42:04 -0500

GIT changes to master games grimoire by Eric Sandall
<sandalle AT sourcemage.org>:

games-data/fortune-bofh/HISTORY | 3 +++
games-data/fortune-bofh/INSTALL | 13 +++++++------
games-data/fortune-discworld/HISTORY | 3 +++
games-data/fortune-discworld/INSTALL | 14 +++++++-------
games-data/fortune-dune/HISTORY | 3 +++
games-data/fortune-dune/INSTALL | 14 +++++++-------
games-data/fortune-firefly/HISTORY | 4 ++++
games-data/fortune-firefly/INSTALL | 14 +++++++-------
games-data/fortune-forrestgump/HISTORY | 3 +++
games-data/fortune-forrestgump/INSTALL | 14 +++++++-------
games-data/fortune-futurama/HISTORY | 4 ++++
games-data/fortune-futurama/INSTALL | 14 +++++++-------
games-data/fortune-hitchhiker/HISTORY | 4 ++++
games-data/fortune-hitchhiker/INSTALL | 14 +++++++-------
games-data/fortune-it/HISTORY | 4 ++++
games-data/fortune-it/INSTALL | 14 +++++++-------
games-data/fortune-simpsons/HISTORY | 3 +++
games-data/fortune-simpsons/INSTALL | 14 +++++++-------
games-data/fortune-starwars/HISTORY | 3 +++
games-data/fortune-starwars/INSTALL | 14 +++++++-------
games-data/fortune-xfiles/HISTORY | 3 +++
games-data/fortune-xfiles/INSTALL | 14 +++++++-------
22 files changed, 114 insertions(+), 76 deletions(-)

New commits:
commit 2b2b57b8cd36a645a4d5a2f83be6290c1c935f78
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

fortune-*: Do not use find_and_scam on shared directories

Doing this causes the last cast spell to own *all* of the shared
files, and thus on the next recast (or really any action which
causes the spell to dispel, even if temporarily) will then remove
all files except for the few that latest spell installs, breaking
all prior spells and their files which shared that directory.

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

fortune-futurama: Make sure /usr/share/games/fortunes/ exists

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

fortune-firefly: Make sure /usr/share/games/fortunes/ exists

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

fortune-hitchhiker: Make sure /usr/share/games/fortunes/ exists

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

fortune-it: Make sure /usr/share/games/fortunes/ exists

diff --git a/games-data/fortune-bofh/HISTORY b/games-data/fortune-bofh/HISTORY
index 42a38e1..4222215 100644
--- a/games-data/fortune-bofh/HISTORY
+++ b/games-data/fortune-bofh/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-bofh/INSTALL b/games-data/fortune-bofh/INSTALL
index cb5fbe6..8facec0 100755
--- a/games-data/fortune-bofh/INSTALL
+++ b/games-data/fortune-bofh/INSTALL
@@ -1,8 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-discworld/HISTORY
b/games-data/fortune-discworld/HISTORY
index d212bd2..356cdd7 100644
--- a/games-data/fortune-discworld/HISTORY
+++ b/games-data/fortune-discworld/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-discworld/INSTALL
b/games-data/fortune-discworld/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-discworld/INSTALL
+++ b/games-data/fortune-discworld/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-dune/HISTORY b/games-data/fortune-dune/HISTORY
index def961e..d4bb11a 100644
--- a/games-data/fortune-dune/HISTORY
+++ b/games-data/fortune-dune/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-dune/INSTALL b/games-data/fortune-dune/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-dune/INSTALL
+++ b/games-data/fortune-dune/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-firefly/HISTORY
b/games-data/fortune-firefly/HISTORY
index 162b42d..a71e3c2 100644
--- a/games-data/fortune-firefly/HISTORY
+++ b/games-data/fortune-firefly/HISTORY
@@ -1,3 +1,7 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Make sure /usr/share/games/fortunes/ exists
+ Do not use find_and_scam on shared directories
+
2010-06-28 Ismael Luceno <ismael AT sourcemage.org>
* BUILD: Fix PATH to call strfile

diff --git a/games-data/fortune-firefly/INSTALL
b/games-data/fortune-firefly/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-firefly/INSTALL
+++ b/games-data/fortune-firefly/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-forrestgump/HISTORY
b/games-data/fortune-forrestgump/HISTORY
index d212bd2..356cdd7 100644
--- a/games-data/fortune-forrestgump/HISTORY
+++ b/games-data/fortune-forrestgump/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-forrestgump/INSTALL
b/games-data/fortune-forrestgump/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-forrestgump/INSTALL
+++ b/games-data/fortune-forrestgump/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-futurama/HISTORY
b/games-data/fortune-futurama/HISTORY
index def961e..7e79812 100644
--- a/games-data/fortune-futurama/HISTORY
+++ b/games-data/fortune-futurama/HISTORY
@@ -1,3 +1,7 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Make sure /usr/share/games/fortunes/ exists
+ Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-futurama/INSTALL
b/games-data/fortune-futurama/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-futurama/INSTALL
+++ b/games-data/fortune-futurama/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-hitchhiker/HISTORY
b/games-data/fortune-hitchhiker/HISTORY
index 3f0d88d..308fde7 100644
--- a/games-data/fortune-hitchhiker/HISTORY
+++ b/games-data/fortune-hitchhiker/HISTORY
@@ -1,3 +1,7 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Make sure /usr/share/games/fortunes/ exists
+ Do not use find_and_scam on shared directories
+
2009-08-22 Bor Kraljic <pyrobor AT ver.si>
* DETAILS: changed updated download link, homepage & hash

diff --git a/games-data/fortune-hitchhiker/INSTALL
b/games-data/fortune-hitchhiker/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-hitchhiker/INSTALL
+++ b/games-data/fortune-hitchhiker/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-it/HISTORY b/games-data/fortune-it/HISTORY
index 65464c8..8a9de5b 100644
--- a/games-data/fortune-it/HISTORY
+++ b/games-data/fortune-it/HISTORY
@@ -1,3 +1,7 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Make sure /usr/share/games/fortunes/ exists
+ Do not use find_and_scam on shared directories
+
2010-06-28 Ismael Luceno <ismael AT sourcemage.org>
* BUILD: Fix PATH to call strfile

diff --git a/games-data/fortune-it/INSTALL b/games-data/fortune-it/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-it/INSTALL
+++ b/games-data/fortune-it/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-simpsons/HISTORY
b/games-data/fortune-simpsons/HISTORY
index 2ddb8f9..3844a2a 100644
--- a/games-data/fortune-simpsons/HISTORY
+++ b/games-data/fortune-simpsons/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2009-08-22 Bor Kraljic <pyrobor AT ver.si>
* DETAILS: changed updated download link & homepage

diff --git a/games-data/fortune-simpsons/INSTALL
b/games-data/fortune-simpsons/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-simpsons/INSTALL
+++ b/games-data/fortune-simpsons/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-starwars/HISTORY
b/games-data/fortune-starwars/HISTORY
index 678fc6a..c4e02b8 100644
--- a/games-data/fortune-starwars/HISTORY
+++ b/games-data/fortune-starwars/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-starwars/INSTALL
b/games-data/fortune-starwars/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-starwars/INSTALL
+++ b/games-data/fortune-starwars/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done
diff --git a/games-data/fortune-xfiles/HISTORY
b/games-data/fortune-xfiles/HISTORY
index d212bd2..356cdd7 100644
--- a/games-data/fortune-xfiles/HISTORY
+++ b/games-data/fortune-xfiles/HISTORY
@@ -1,3 +1,6 @@
+2013-07-01 Eric Sandall <sandalle AT sourcemage.org>
+ * INSTALL: Do not use find_and_scam on shared directories
+
2006-09-21 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/games-data/fortune-xfiles/INSTALL
b/games-data/fortune-xfiles/INSTALL
index 4abb466..8facec0 100755
--- a/games-data/fortune-xfiles/INSTALL
+++ b/games-data/fortune-xfiles/INSTALL
@@ -1,9 +1,9 @@
-cd $SOURCE_DIRECTORY &&
+cd $SOURCE_DIRECTORY &&
+
for cookie in *.dat
do
-cp -v $cookie ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-cp -v ${cookie/.dat} ${INSTALL_ROOT}/usr/share/games/fortunes/
-done &&
-cd ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
-find_and_scam
-
+ install -m 0640 -o root -g games $cookie \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/ &&
+ install -m 0640 -o root -g games ${cookie/.dat} \
+ ${INSTALL_ROOT}/usr/share/games/fortunes/
+done



  • [SM-Commit] GIT changes to master games grimoire by Eric Sandall (2b2b57b8cd36a645a4d5a2f83be6290c1c935f78), Eric Sandall, 07/01/2013

Archive powered by MHonArc 2.6.24.

Top of Page