summaryrefslogtreecommitdiff
path: root/community/xdebug
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-21 11:26:12 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-21 11:26:12 -0300
commitc0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (patch)
tree8e4f525a74e1ec4d373256b380f7d49305ed5d00 /community/xdebug
parenta05bf04c686ff44fc6c12fbe774d65032b74c55d (diff)
parent11484c032f8c236b2044e715a9a3b28e33f65598 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/6tunnel/PKGBUILD community/chrootuid/PKGBUILD community/cpulimit/PKGBUILD community/cutter/PKGBUILD community/darkhttpd/PKGBUILD community/darkstat/PKGBUILD community/datemath/PKGBUILD community/delegate/PKGBUILD community/dfm/PKGBUILD community/freedroid/PKGBUILD community/parano/PKGBUILD community/pyvorbis/PKGBUILD community/scrotwm/PKGBUILD extra/antlr2/PKGBUILD extra/live-media/PKGBUILD extra/mono-zeroconf/PKGBUILD extra/vlc/PKGBUILD
Diffstat (limited to 'community/xdebug')
-rw-r--r--community/xdebug/PKGBUILD8
-rw-r--r--community/xdebug/xdebug.install32
2 files changed, 4 insertions, 36 deletions
diff --git a/community/xdebug/PKGBUILD b/community/xdebug/PKGBUILD
index 8c924de9b..cea0f3650 100644
--- a/community/xdebug/PKGBUILD
+++ b/community/xdebug/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 54418 2011-08-18 09:30:31Z spupykin $
+# $Id: PKGBUILD 65011 2012-02-20 01:39:51Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jonathan Wiersma <arch aur at jonw dot org>
# Contributor: Jonathan Wiersma <arch aur at jonw dot org>
# Contributor: sracker <smb.sac@gmail.com>
pkgname=xdebug
-pkgver=2.1.2
-pkgrel=1
+pkgver=2.1.3
+pkgrel=2
pkgdesc="PHP debugging extension"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.xdebug.org"
@@ -17,7 +17,7 @@ backup=('etc/php/conf.d/xdebug.ini')
source=(http://www.xdebug.org/files/$pkgname-$pkgver.tgz
xdebug-5.2.ini
xdebug.ini)
-md5sums=('3a9c3402063c8163de6e419ddc8d96e7'
+md5sums=('779f4a66acdccd673553769e403674c4'
'6b7fdbbe0bf381bda40e77e29981f439'
'68de800943369d4c76bdf7eb35c8463b')
diff --git a/community/xdebug/xdebug.install b/community/xdebug/xdebug.install
index fc2fcbc84..a7ec0b9cc 100644
--- a/community/xdebug/xdebug.install
+++ b/community/xdebug/xdebug.install
@@ -1,18 +1,8 @@
-pre_upgrade() {
- local _configfile=/etc/php/conf.d/xdebug.ini
-
- if [ $2 \< "2.0.4-2" -a -f $_configfile ] ; then
- mv -f $_configfile $_configfile.pacold
- fi
- /bin/true
-}
-
post_install() {
local _configfile=/etc/php/conf.d/xdebug.ini
echo " ==> You may wish to uncomment/change the settings found in "
echo " $_configfile"
echo ""
- /bin/true
}
post_upgrade() {
@@ -20,28 +10,6 @@ post_upgrade() {
local PHPVER=$(php -r 'echo phpversion();')
post_install $1
- if [ $2 \< "2.0.4-2" ] ; then
- if [ -f $_configfile.pacold ] ; then
- mv $_configfile $_configfile.pacnew
- mv $_configfile.pacold $_configfile
- echo " ==> There is a new xdebug.ini at $_configfile.pacnew."
- echo " You may wish to copy it or modify your existing file: "
- echo " $_configfile."
- echo ""
- else
- echo " ==> A configuration file for xdebug has been placed at:"
- echo " $_configfile."
- echo " Please remove the following lines from /etc/php/php.ini and move them"
- echo " to $_configfile:"
- echo " zend_extension=/usr/lib/php/xdebug.so"
- echo " xdebug.remote_enable=on"
- echo " xdebug.remote_host=<ip address>"
- echo " xdebug.remote_port=<port>"
- echo " xdebug.remote_handler=dbgp"
- echo ""
- fi
- fi
-
if [ "$PHPVER" \< "5.3" ] ; then
echo " ==> You are currenty running a version of php < 5.3."
echo " When/if you upgrade php to a version >= 5.3, you will need to reinstall $pkgname."