Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Arjan Bouter (64f6fb14589f2e898d914be21804c3d604ca6489)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Arjan Bouter <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Arjan Bouter (64f6fb14589f2e898d914be21804c3d604ca6489)
  • Date: Tue, 12 Jun 2007 07:20:49 -0500

GIT changes to master grimoire by Arjan Bouter <abouter AT sourcemage.org>:

database/postgresql/DETAILS | 1 +
database/postgresql/HISTORY | 4 ++++
database/postgresql/init.d/postgresql | 18 +++++++++++++++---
database/postgresql/init.d/postgresql.conf | 2 +-
http/links-twibright/DETAILS | 1 +
http/links-twibright/HISTORY | 4 ++++
http/links-twibright/desktop/links-dfb.desktop | 8 ++++++++
http/links-twibright/desktop/links-fb.desktop | 8 ++++++++
http/links-twibright/desktop/links-x11.desktop | 8 ++++++++
http/links-twibright/desktop/links.desktop | 4 ++--
kernels/madwifi/madwifi-0.9.3.1.tar.bz2.sig |binary
11 files changed, 52 insertions(+), 6 deletions(-)

New commits:
commit 64f6fb14589f2e898d914be21804c3d604ca6489
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

links-twibright and madwifi: fixing borked commit

commit 2c08c15064a9b1c6039f62392758fef77f5474e0
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

links-twibright: added desktopfiles for the different drivers

commit 215e885a97efb147da60b5beeebc87cd35849217
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

postgresql: fixed initscript for when one logs to syslog

diff --git a/database/postgresql/DETAILS b/database/postgresql/DETAILS
index 5cddc91..adc5816 100755
--- a/database/postgresql/DETAILS
+++ b/database/postgresql/DETAILS
@@ -11,6 +11,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
WEB_SITE=http://www.postgresql.org/
DOCS=""
SECURITY_PATCH=4
+ PATCHLEVEL=1
ENTERED=20011113
LICENSE[0]=BSD
KEYWORDS="database"
diff --git a/database/postgresql/HISTORY b/database/postgresql/HISTORY
index 6eb2a8e..f2553b3 100644
--- a/database/postgresql/HISTORY
+++ b/database/postgresql/HISTORY
@@ -1,3 +1,7 @@
+2007-06-12 Arjan Bouter <abouter AT sourcemage.org>
+ * init.d/*: made the logfile optional
+ * DETAILS: patchlevel++
+
2007-04-23 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 8.2.4, SECURITY_PATCH=4, CVE-2007-2138

diff --git a/database/postgresql/init.d/postgresql
b/database/postgresql/init.d/postgresql
index 427133f..b222b6d 100644
--- a/database/postgresql/init.d/postgresql
+++ b/database/postgresql/init.d/postgresql
@@ -12,9 +12,17 @@ start()
echo "Starting postmaster..."
cd "$DBPATH" &&
if [[ -z "$PORT" ]]; then
- su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH' -l '$LOGFILE'"
+ if [[ "$LOGFILE" = 'syslog' ]]; then
+ su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH'"
+ else
+ su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH' -l '$LOGFILE'"
+ fi
else
- su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH' -l '$LOGFILE' -o
\"-i -p '$PORT'\""
+ if [[ "$LOGFILE" = 'syslog' ]]; then
+ su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH' -o \"-i -p
'$PORT'\""
+ else
+ su -l "$USER" -s /bin/sh -c "pg_ctl start -D '$DBPATH' -l '$LOGFILE'
-o \"-i -p '$PORT'\""
+ fi
fi
evaluate_retval
}
@@ -31,5 +39,9 @@ restart()
{
echo "Restarting postmaster..."
cd "$DBPATH" &&
- su -l "$USER" -s /bin/sh -c "pg_ctl restart -D '$DBPATH' -l '$LOGFILE'"
+ if [[ "$LOGFILE" = 'syslog' ]]; then
+ su -l "$USER" -s /bin/sh -c "pg_ctl restart -D '$DBPATH'"
+ else
+ su -l "$USER" -s /bin/sh -c "pg_ctl restart -D '$DBPATH' -l '$LOGFILE'"
+ fi
}
diff --git a/database/postgresql/init.d/postgresql.conf
b/database/postgresql/init.d/postgresql.conf
index 3c330ea..a2858e8 100644
--- a/database/postgresql/init.d/postgresql.conf
+++ b/database/postgresql/init.d/postgresql.conf
@@ -5,7 +5,7 @@ USER=postgres
# you initdb here
DBPATH=/var/lib/postgres/data

-# this is where the logs go
+# this is where the logs go. Use 'syslog' if you want to log to syslog.
LOGFILE=/var/log/postgres

# Network TCP port to listen on, default is 5432
diff --git a/http/links-twibright/DETAILS b/http/links-twibright/DETAILS
index 55758bc..e2161cb 100755
--- a/http/links-twibright/DETAILS
+++ b/http/links-twibright/DETAILS
@@ -8,6 +8,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SOURCE_NAME-$VERSION
LICENSE[0]=GPL
WEB_SITE=http://links.twibright.com/
ENTERED=20011027
+ PATCHLEVEL=1
KEYWORDS="http"
SHORT='Advanced text browser with an optional GUI'
cat << EOF
diff --git a/http/links-twibright/HISTORY b/http/links-twibright/HISTORY
index 75c9e22..629e9da 100644
--- a/http/links-twibright/HISTORY
+++ b/http/links-twibright/HISTORY
@@ -1,3 +1,7 @@
+2007-06-12 Arjan Bouter <abouter AT sourcemage.org>
+ * DETAILS: patchlevel++
+ * desktop/* added menu entries for different drivers
+
2007-04-12 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.1pre28

diff --git a/http/links-twibright/desktop/links-dfb.desktop
b/http/links-twibright/desktop/links-dfb.desktop
new file mode 100644
index 0000000..14b7c85
--- /dev/null
+++ b/http/links-twibright/desktop/links-dfb.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Links DirectFB
+Exec=links -driver directfb -g
+Icon=
+Terminal=false
+Type=Application
+Categories=Application;Network;Browsers;
diff --git a/http/links-twibright/desktop/links-fb.desktop
b/http/links-twibright/desktop/links-fb.desktop
new file mode 100644
index 0000000..a91cdcd
--- /dev/null
+++ b/http/links-twibright/desktop/links-fb.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Links framebuffer
+Exec=links -driver fb -g
+Icon=
+Terminal=false
+Type=Application
+Categories=Application;Network;Browsers;
diff --git a/http/links-twibright/desktop/links-x11.desktop
b/http/links-twibright/desktop/links-x11.desktop
new file mode 100644
index 0000000..e4ea493
--- /dev/null
+++ b/http/links-twibright/desktop/links-x11.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Links X11
+Exec=links -driver x -g
+Icon=
+Terminal=false
+Type=Application
+Categories=Application;Network;Browsers;
diff --git a/http/links-twibright/desktop/links.desktop
b/http/links-twibright/desktop/links.desktop
index 2e0a497..55f0f95 100644
--- a/http/links-twibright/desktop/links.desktop
+++ b/http/links-twibright/desktop/links.desktop
@@ -1,8 +1,8 @@
[Desktop Entry]
Encoding=UTF-8
Name=Links
-Exec=links -g
+Exec=links
Icon=
-Terminal=false
+Terminal=true
Type=Application
Categories=Application;Network;Browsers;
diff --git a/kernels/madwifi/madwifi-0.9.3.1.tar.bz2.sig
b/kernels/madwifi/madwifi-0.9.3.1.tar.bz2.sig
new file mode 100644
index 0000000..536daba
Binary files /dev/null and b/kernels/madwifi/madwifi-0.9.3.1.tar.bz2.sig
differ



  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (64f6fb14589f2e898d914be21804c3d604ca6489), Arjan Bouter, 06/12/2007

Archive powered by MHonArc 2.6.24.

Top of Page