Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (e3736aa1cab6714abf7e5c5cc7450eb2a6829984)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (e3736aa1cab6714abf7e5c5cc7450eb2a6829984)
  • Date: Tue, 4 Jul 2006 08:39:30 -0500

GIT changes to master grimoire by Treeve Jelbert <treeve AT scarlet.be>:

php-pear/php-dev/FINAL | 19 +++++++++++++++++++
php-pear/php-dev/HISTORY | 4 ++++
php-pear/php-dev/POST_INSTALL | 19 -------------------
php-pear/xdebug/DETAILS | 5 ++---
php-pear/xdebug/FINAL | 2 ++
php-pear/xdebug/HISTORY | 5 +++++
php-pear/xdebug/POST_INSTALL | 2 --
7 files changed, 32 insertions(+), 24 deletions(-)

New commits:
commit e3736aa1cab6714abf7e5c5cc7450eb2a6829984
Author: Treeve Jelbert <treeve AT scarlet.be>
Commit: Treeve Jelbert <treeve AT scarlet.be>

xdebug-2.0.0beta6

commit c53240b7de7699c748214e873949988240bff6b5
Author: Treeve Jelbert <treeve AT scarlet.be>
Commit: Treeve Jelbert <treeve AT scarlet.be>

php-dev - fix bug #10601

diff --git a/php-pear/php-dev/FINAL b/php-pear/php-dev/FINAL
new file mode 100755
index 0000000..34088f5
--- /dev/null
+++ b/php-pear/php-dev/FINAL
@@ -0,0 +1,19 @@
+# PHP is using APXS to alter httpd.conf, hence installwatch
+# is picking it up as installed file. httpd.conf should not
+# be part of PHP installation.
+sedit 's|.*/httpd\.conf.*||g' $INSTALL_LOGS/$SPELL-$VERSION
+
+INC="AddType application/x-httpd-php .php .phtml
+LoadModule php4_module libexec/libphp4.so"
+
+if [ -e /etc/httpd/httpd.conf ]
+then MOD="/etc/httpd/httpd.conf"
+ grep -q php4_module $MOD || echo "$INC" >> $MOD
+ httpd -t
+fi
+
+if [ -e /etc/httpsd/httpd.conf ]
+then MOD="/etc/httpsd/httpd.conf"
+ grep -q php4_module $MOD || echo "$INC" >> $MOD
+ httpd -t
+fi
diff --git a/php-pear/php-dev/HISTORY b/php-pear/php-dev/HISTORY
index 4708289..ba45c52 100644
--- a/php-pear/php-dev/HISTORY
+++ b/php-pear/php-dev/HISTORY
@@ -1,3 +1,7 @@
+2006-07-04 Treeve Jelbert <treeve AT pi.be>
+ * POST_INSTALL: rename as FINAL
+ fixes bug #10601
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/php-pear/php-dev/POST_INSTALL b/php-pear/php-dev/POST_INSTALL
deleted file mode 100755
index 34088f5..0000000
--- a/php-pear/php-dev/POST_INSTALL
+++ /dev/null
@@ -1,19 +0,0 @@
-# PHP is using APXS to alter httpd.conf, hence installwatch
-# is picking it up as installed file. httpd.conf should not
-# be part of PHP installation.
-sedit 's|.*/httpd\.conf.*||g' $INSTALL_LOGS/$SPELL-$VERSION
-
-INC="AddType application/x-httpd-php .php .phtml
-LoadModule php4_module libexec/libphp4.so"
-
-if [ -e /etc/httpd/httpd.conf ]
-then MOD="/etc/httpd/httpd.conf"
- grep -q php4_module $MOD || echo "$INC" >> $MOD
- httpd -t
-fi
-
-if [ -e /etc/httpsd/httpd.conf ]
-then MOD="/etc/httpsd/httpd.conf"
- grep -q php4_module $MOD || echo "$INC" >> $MOD
- httpd -t
-fi
diff --git a/php-pear/xdebug/DETAILS b/php-pear/xdebug/DETAILS
index cd6a048..7fd1ded 100755
--- a/php-pear/xdebug/DETAILS
+++ b/php-pear/xdebug/DETAILS
@@ -1,13 +1,12 @@
SPELL=xdebug
- VERSION=2.0.0beta2
-
SOURCE_HASH='sha512:86d078a8f90e0048365253d28af0e550e7ea1a26d3c3cfb53be7d377f8dbc5e4469425926ef2780ad9b1cd312984300f5bd3f2d9b7002a3aeb6ae76ccb9eda72'
+ VERSION=2.0.0beta6
+
SOURCE_HASH='sha512:ec514eea2ab27b6fee4af2d320c70d4fc55ada0cfc2932340c3331fbb07945b8fc7ab38df42b4c51064e2c7a3bf3563c982d3e15fd2891162e4acabe69602707'
SOURCE=$SPELL-$VERSION.tgz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.xdebug.org/files/$SOURCE
LICENSE[0]=PHP
WEB_SITE=http://www.xdebug.org/
ENTERED=20020730
- UPDATED=20020730
KEYWORDS="debugger php"
SHORT='Xdebug is a PHP debugging extension'
cat << EOF
diff --git a/php-pear/xdebug/FINAL b/php-pear/xdebug/FINAL
new file mode 100755
index 0000000..b2000b0
--- /dev/null
+++ b/php-pear/xdebug/FINAL
@@ -0,0 +1,2 @@
+PHP_EXT=$(php-config --extension-dir) &&
+echo "Add the following to /etc/php.ini: extension=\"$PHP_EXT/xdebug.so\""
diff --git a/php-pear/xdebug/HISTORY b/php-pear/xdebug/HISTORY
index 8383d9b..a9afe87 100644
--- a/php-pear/xdebug/HISTORY
+++ b/php-pear/xdebug/HISTORY
@@ -1,3 +1,8 @@
+2006-07-04 Treeve Jelbert <treeve AT pi.be>
+ * POST_INSTALL: rename as FINAL
+ fixes bug #10602
+ * DETAILS: version 2.0.0b6
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/php-pear/xdebug/POST_INSTALL b/php-pear/xdebug/POST_INSTALL
deleted file mode 100755
index b2000b0..0000000
--- a/php-pear/xdebug/POST_INSTALL
+++ /dev/null
@@ -1,2 +0,0 @@
-PHP_EXT=$(php-config --extension-dir) &&
-echo "Add the following to /etc/php.ini: extension=\"$PHP_EXT/xdebug.so\""



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (e3736aa1cab6714abf7e5c5cc7450eb2a6829984), Treeve Jelbert, 07/04/2006

Archive powered by MHonArc 2.6.24.

Top of Page