* [gentoo-commits] gentoo-x86 commit in www-apps/phpwiki: ChangeLog phpwiki-1.4.0_rc1.ebuild
@ 2011-08-22 17:45 Matti Bickel (mabi)
0 siblings, 0 replies; 2+ messages in thread
From: Matti Bickel (mabi) @ 2011-08-22 17:45 UTC (permalink / raw
To: gentoo-commits
mabi 11/08/22 17:45:40
Modified: ChangeLog
Added: phpwiki-1.4.0_rc1.ebuild
Log:
version bump to fix php upgrade related issue (bug #324819), also bump to EAPI4
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Revision Changes Path
1.25 www-apps/phpwiki/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 4 Feb 2008 08:30:59 -0000 1.24
+++ ChangeLog 22 Aug 2011 17:45:40 -0000 1.25
@@ -1,6 +1,12 @@
# ChangeLog for www-apps/phpwiki
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v 1.24 2008/02/04 08:30:59 hollow Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v 1.25 2011/08/22 17:45:40 mabi Exp $
+
+*phpwiki-1.4.0_rc1 (22 Aug 2011)
+
+ 22 Aug 2011; Matti Bickel <mabi@gentoo.org> +phpwiki-1.4.0_rc1.ebuild:
+ version bump to fix php upgrade related issue (bug #324819), also bump to
+ EAPI4
04 Feb 2008; Benedikt Böhm <hollow@gentoo.org> phpwiki-1.3.14.ebuild:
merge from webapps overlay wrt #208584
1.1 www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild?rev=1.1&content-type=text/plain
Index: phpwiki-1.4.0_rc1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild,v 1.1 2011/08/22 17:45:40 mabi Exp $
EAPI=4
inherit webapp
MY_P=${P/_/}
S="${WORKDIR}/${MY_P}"
DESCRIPTION="PhpWiki is a WikiWikiWeb clone in PHP"
HOMEPAGE="http://phpwiki.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="msql mysql postgres"
RDEPEND="
virtual/httpd-cgi
dev-lang/php[msql?,mysql?,postgres?]
|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
|| ( dev-lang/php[cgi] dev-lang/php[apache2] )"
src_prepare() {
rm -f Makefile LICENSE
}
src_install() {
webapp_src_preinst
cp -pPR * "${D}/${MY_HTDOCSDIR}"
rm -rf "${D}/${MY_HTDOCSDIR}"/{doc,schemas,README,INSTALL,TODO,UPGRADING}
dodoc README INSTALL TODO UPGRADING doc/* schemas/*
# Create config file from distribution default, and fix up invalid defaults
sed -ie "s:;DEBUG = 1:DEBUG = 0:" "${D}/${MY_HTDOCSDIR}"/config/config-dist.ini
cd "${D}"/${MY_HTDOCSDIR}/config
cp config-dist.ini config.ini
webapp_postinst_txt en "${FILESDIR}"/postinstall-1.3-en.txt
webapp_configfile "${MY_HTDOCSDIR}"/config/config.ini
webapp_src_install
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in www-apps/phpwiki: ChangeLog phpwiki-1.4.0_rc1.ebuild
@ 2011-08-24 7:23 Ole Markus With (olemarkus)
0 siblings, 0 replies; 2+ messages in thread
From: Ole Markus With (olemarkus) @ 2011-08-24 7:23 UTC (permalink / raw
To: gentoo-commits
olemarkus 11/08/24 07:23:09
Modified: ChangeLog phpwiki-1.4.0_rc1.ebuild
Log:
Removed the msql USE flag since it is not available in PHP anymore
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Revision Changes Path
1.26 www-apps/phpwiki/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 22 Aug 2011 17:45:40 -0000 1.25
+++ ChangeLog 24 Aug 2011 07:23:09 -0000 1.26
@@ -1,6 +1,9 @@
# ChangeLog for www-apps/phpwiki
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v 1.25 2011/08/22 17:45:40 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/ChangeLog,v 1.26 2011/08/24 07:23:09 olemarkus Exp $
+
+ 24 Aug 2011; Ole Markus With <olemarkus@gentoo.org> phpwiki-1.4.0_rc1.ebuild:
+ Removed the msql USE flag since it is not available in PHP anymore
*phpwiki-1.4.0_rc1 (22 Aug 2011)
1.2 www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild?r1=1.1&r2=1.2
Index: phpwiki-1.4.0_rc1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- phpwiki-1.4.0_rc1.ebuild 22 Aug 2011 17:45:40 -0000 1.1
+++ phpwiki-1.4.0_rc1.ebuild 24 Aug 2011 07:23:09 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild,v 1.1 2011/08/22 17:45:40 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwiki/phpwiki-1.4.0_rc1.ebuild,v 1.2 2011/08/24 07:23:09 olemarkus Exp $
EAPI=4
@@ -15,11 +15,11 @@
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="msql mysql postgres"
+IUSE="mysql postgres"
RDEPEND="
virtual/httpd-cgi
- dev-lang/php[msql?,mysql?,postgres?]
+ dev-lang/php[mysql?,postgres?]
|| ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
|| ( dev-lang/php[cgi] dev-lang/php[apache2] )"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-08-24 7:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-24 7:23 [gentoo-commits] gentoo-x86 commit in www-apps/phpwiki: ChangeLog phpwiki-1.4.0_rc1.ebuild Ole Markus With (olemarkus)
-- strict thread matches above, loose matches on Subject: below --
2011-08-22 17:45 Matti Bickel (mabi)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox