diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2010-08-15 14:31:38 +0000 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2010-08-15 14:31:38 +0000 |
commit | 146cc8f62b5227c64474d701d6af493b72a4eb6b (patch) | |
tree | b0d7ed4f050552bc67dc63bb75d56cc3bbe72cb3 /www-apps/wordpress | |
parent | Cleanup (diff) | |
download | gentoo-2-146cc8f62b5227c64474d701d6af493b72a4eb6b.tar.gz gentoo-2-146cc8f62b5227c64474d701d6af493b72a4eb6b.tar.bz2 gentoo-2-146cc8f62b5227c64474d701d6af493b72a4eb6b.zip |
Bump to 3.0.1. Tons of fixes and feature additions (and plugin/theme breakages).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/wordpress')
-rw-r--r-- | www-apps/wordpress/ChangeLog | 9 | ||||
-rw-r--r-- | www-apps/wordpress/files/postupgrade-en.txt | 6 | ||||
-rw-r--r-- | www-apps/wordpress/wordpress-3.0.1.ebuild | 47 |
3 files changed, 61 insertions, 1 deletions
diff --git a/www-apps/wordpress/ChangeLog b/www-apps/wordpress/ChangeLog index c0e1ee125d3f..a94e276b131f 100644 --- a/www-apps/wordpress/ChangeLog +++ b/www-apps/wordpress/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for www-apps/wordpress # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/ChangeLog,v 1.109 2010/07/03 14:33:51 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/ChangeLog,v 1.110 2010/08/15 14:31:37 ford_prefect Exp $ + +*wordpress-3.0.1 (15 Aug 2010) + + 15 Aug 2010; Arun Raghavan <ford_prefect@gentoo.org> + +wordpress-3.0.1.ebuild, files/postupgrade-en.txt: + Bump to 3.0.1. Tons of fixes and feature additions (and plugin/theme + breakages). *wordpress-2.9.2-r1 (03 Jul 2010) diff --git a/www-apps/wordpress/files/postupgrade-en.txt b/www-apps/wordpress/files/postupgrade-en.txt index fc09e4b8ca53..5c7b3276db98 100644 --- a/www-apps/wordpress/files/postupgrade-en.txt +++ b/www-apps/wordpress/files/postupgrade-en.txt @@ -10,6 +10,12 @@ http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/wp-admin/upgrade.php and follow the instructions on the screen. +Note that the default theme has changed between Wordpress 2.x and 3.x, +so if you were using the default theme, your site will fail to load after +the upgrade. Log in to the admin interface and open the themes section to +reset to the new default theme. If you face other troubles after the +upgrade, you might want to look for broken plugins or themes. + ------------------------------------------------------------------------ !!!!!!!!! SECURITY WARNING !!!!!!!!!!! diff --git a/www-apps/wordpress/wordpress-3.0.1.ebuild b/www-apps/wordpress/wordpress-3.0.1.ebuild new file mode 100644 index 000000000000..deba5b64349e --- /dev/null +++ b/www-apps/wordpress/wordpress-3.0.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/wordpress/wordpress-3.0.1.ebuild,v 1.1 2010/08/15 14:31:37 ford_prefect Exp $ + +EAPI="2" + +inherit webapp depend.php + +DESCRIPTION="Wordpress php and mysql based CMS system." +HOMEPAGE="http://wordpress.org/" +SRC_URI="http://wordpress.org/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="|| ( dev-lang/php[mysql] dev-lang/php[mysqli] ) + || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )" + +S="${WORKDIR}"/${PN} + +need_httpd_cgi +need_php_httpd + +src_install() { + webapp_src_preinst + + dohtml readme.html + rm -f readme.html license.txt + + [ -f wp-config.php ] || cp wp-config-sample.php wp-config.php + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_serverowned "${MY_HTDOCSDIR}"/index.php + webapp_serverowned "${MY_HTDOCSDIR}"/wp-admin/menu.php + webapp_serverowned "${MY_HTDOCSDIR}" + + webapp_configfile "${MY_HTDOCSDIR}"/wp-config.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt + + webapp_src_install +} |