Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (fe8714a7e2247b9cbaa100f124ec81ae30f6d8c2)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Juuso Alasuutari <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Juuso Alasuutari (fe8714a7e2247b9cbaa100f124ec81ae30f6d8c2)
  • Date: Fri, 6 Oct 2006 04:47:01 -0500

GIT changes to master grimoire by Juuso Alasuutari <iuso AT sourcemage.org>:

audio-drivers/alsa-oss/HISTORY | 3 +++
audio-drivers/alsa-oss/profile.d/alsa-oss.sh | 6 +++---
doc/man/HISTORY | 3 +++
doc/man/man.sh | 2 +-
http/firefox/HISTORY | 3 +++
http/firefox/firefox.sh | 4 ++--
perl-cpan/perl/HISTORY | 3 +++
perl-cpan/perl/perl.sh | 2 +-
shell-term-fm/bash/HISTORY | 4 ++++
shell-term-fm/bash/profile.d/dummy | 2 +-
shell-term-fm/bash/profile.d/editor.sh | 2 +-
utils/coreutils/HISTORY | 3 +++
utils/coreutils/coreutils.sh | 2 +-
x11-toolkits/qt-x11/HISTORY | 3 +++
x11-toolkits/qt-x11/qt.sh | 2 +-
15 files changed, 33 insertions(+), 11 deletions(-)

New commits:
commit cdf3c1fb2ab0cb431c187e8eac2c90d61ae340dd
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

alsa-oss: Removed bashisms from profile.d script.

commit 09232f38fa3936b26483f3352ef6530590275ff8
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

firefox: Removed bashism from profile.d script.

commit 68398ac3eb221aa336024aea7d80db8fd94518ed
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

man: Removed bashism from profile.d script.

commit df1a0bc2cc97f488787a263b75d8c524f8c96e00
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

coreutils: Removed bashism from profile.d script.

commit a4c0fee9fdb34afc36891e8e8497d038c3ce37b4
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

bash: Removed bashisms from profile.d scripts.

commit 45a1ec87adaa6f0c2098604dcad02b241774c690
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

qt-x11: Removed bashism from profile.d script.

commit f49a0bc019e835d494474f85217054f1e06d862d
Author: Juuso Alasuutari <iuso AT sourcemage.org>
Commit: Juuso Alasuutari <iuso AT sourcemage.org>

perl: Removed bashism from profile.d script.

diff --git a/audio-drivers/alsa-oss/HISTORY b/audio-drivers/alsa-oss/HISTORY
index 1c473b3..d5b9892 100644
--- a/audio-drivers/alsa-oss/HISTORY
+++ b/audio-drivers/alsa-oss/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * profile.d/alsa-oss.sh: Removed bashisms.
+
2006-08-31 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: updated to 1.0.12, removed PATCHLEVEL

diff --git a/audio-drivers/alsa-oss/profile.d/alsa-oss.sh
b/audio-drivers/alsa-oss/profile.d/alsa-oss.sh
index a6f4c65..64452a9 100755
--- a/audio-drivers/alsa-oss/profile.d/alsa-oss.sh
+++ b/audio-drivers/alsa-oss/profile.d/alsa-oss.sh
@@ -1,5 +1,5 @@
-#!/bin/bash
+#!/bin/sh

-[[ -f /etc/sysconfig/alsa-oss ]] &&
- . /etc/sysconfig/alsa-oss &&
+[ -f /etc/sysconfig/alsa-oss ] &&
+ . /etc/sysconfig/alsa-oss &&
export USE_AOSS_WRAPPER
diff --git a/doc/man/HISTORY b/doc/man/HISTORY
index 68be739..3cdaf68 100644
--- a/doc/man/HISTORY
+++ b/doc/man/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * man.sh: Removed bashism.
+
2006-09-08 Ladislav Hagara <hgr AT vabo.cz>
* BUILD: install man pages in all languages [Bug 13018]
* DETAILS: PATCHLEVEL=1
diff --git a/doc/man/man.sh b/doc/man/man.sh
index 53261a3..9a31508 100644
--- a/doc/man/man.sh
+++ b/doc/man/man.sh
@@ -1,3 +1,3 @@
-#!/bin/bash
+#!/bin/sh

export MANPATH=/usr/local/share/man:/usr/share/man:/usr/X11R6/man:$MANPATH
diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index 77d0588..2e273b8 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * firefox.sh: Removed bashism.
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* PROVIDES: [automated] Fixed invalid entries.

diff --git a/http/firefox/firefox.sh b/http/firefox/firefox.sh
index 5561f9b..f1063c9 100644
--- a/http/firefox/firefox.sh
+++ b/http/firefox/firefox.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# First check if this variable is already set
# then if not set, check it (maybe), then set it
#
@@ -6,7 +6,7 @@ # Set MOZILLA_FIVE_HOME for packages whi
# the mozilla libs (e.g. monodevelop)
#

-if [ -z "$MOZILLA_FIVE_HOME" -a ! -f /etc/profile.d/mozilla.sh ];
then
+if [ -z "$MOZILLA_FIVE_HOME" -a ! -f /etc/profile.d/mozilla.sh ];
then
MOZILLA_FIVE_HOME=/usr/lib/firefox
fi &&

diff --git a/perl-cpan/perl/HISTORY b/perl-cpan/perl/HISTORY
index 1af7987..78a79b2 100644
--- a/perl-cpan/perl/HISTORY
+++ b/perl-cpan/perl/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * perl.sh: Removed bashism.
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed BUILD_API=2.

diff --git a/perl-cpan/perl/perl.sh b/perl-cpan/perl/perl.sh
index 437d725..f4c1360 100644
--- a/perl-cpan/perl/perl.sh
+++ b/perl-cpan/perl/perl.sh
@@ -1,2 +1,2 @@
-#!/bin/bash
+#!/bin/sh
MANPATH="${MANPATH}:/usr/share/site_perl/man:/usr/share/vendor_perl/man"
diff --git a/shell-term-fm/bash/HISTORY b/shell-term-fm/bash/HISTORY
index dac96f6..cc26868 100644
--- a/shell-term-fm/bash/HISTORY
+++ b/shell-term-fm/bash/HISTORY
@@ -1,3 +1,7 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * profile.d/dummy: Removed bashism.
+ * profile.d/editor.sh: Removed bashism.
+
2006-08-15 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED (deprecated in favor of
PATCHLEVEL).
diff --git a/shell-term-fm/bash/profile.d/dummy
b/shell-term-fm/bash/profile.d/dummy
index 155b6b5..ece9fcd 100644
--- a/shell-term-fm/bash/profile.d/dummy
+++ b/shell-term-fm/bash/profile.d/dummy
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# First check if this variable is already set
# then if not set, check it (maybe), then set it

diff --git a/shell-term-fm/bash/profile.d/editor.sh
b/shell-term-fm/bash/profile.d/editor.sh
index d848828..c1d819b 100644
--- a/shell-term-fm/bash/profile.d/editor.sh
+++ b/shell-term-fm/bash/profile.d/editor.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Added by /usr/sbin/smgl.install
# First check if this variable is already set
# then if not set, check it (maybe), then set it
diff --git a/utils/coreutils/HISTORY b/utils/coreutils/HISTORY
index fb9372e..a953099 100644
--- a/utils/coreutils/HISTORY
+++ b/utils/coreutils/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * coreutils.sh: Removed bashism.
+
2006-06-28 Eric Sandall <eric AT sandall.us>
* DETAILS: Removed BUILD_API=2, set grimoire-wide

diff --git a/utils/coreutils/coreutils.sh b/utils/coreutils/coreutils.sh
index 7270b8b..5f58c5a 100644
--- a/utils/coreutils/coreutils.sh
+++ b/utils/coreutils/coreutils.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# make coreutils tools not fail on common commands that happen to be left out
# of the posix standard (e.g. tail -1)
export _POSIX2_VERSION=199209
diff --git a/x11-toolkits/qt-x11/HISTORY b/x11-toolkits/qt-x11/HISTORY
index 68ae89a..1cbb753 100644
--- a/x11-toolkits/qt-x11/HISTORY
+++ b/x11-toolkits/qt-x11/HISTORY
@@ -1,3 +1,6 @@
+2006-10-06 Juuso Alasuutari <iuso AT sourcemage.org>
+ * qt.sh: Removed bashism.
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* PROVIDES: [automated] Fixed invalid entries.

diff --git a/x11-toolkits/qt-x11/qt.sh b/x11-toolkits/qt-x11/qt.sh
index ca68979..d83cf6d 100644
--- a/x11-toolkits/qt-x11/qt.sh
+++ b/x11-toolkits/qt-x11/qt.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# First check if this variable is already set
# then if not set, check it (maybe), then set it





Archive powered by MHonArc 2.6.24.

Top of Page