public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastian Pipping" <sping@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/wordpress/
Date: Sat, 19 Dec 2015 20:09:15 +0000 (UTC)	[thread overview]
Message-ID: <1450555684.ec13cc7f87541d157420ef03a44a203ce400f4ec.sping@gentoo> (raw)

commit:     ec13cc7f87541d157420ef03a44a203ce400f4ec
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 19 20:06:18 2015 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 20:08:04 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec13cc7f

www-apps/wordpress: 4.4 (bug #568362)

Package-Manager: portage-2.2.26

 www-apps/wordpress/Manifest             |  1 +
 www-apps/wordpress/wordpress-4.4.ebuild | 56 +++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/www-apps/wordpress/Manifest b/www-apps/wordpress/Manifest
index 4129816..d516fdd 100644
--- a/www-apps/wordpress/Manifest
+++ b/www-apps/wordpress/Manifest
@@ -1,3 +1,4 @@
 DIST wordpress-4.2.4.tar.gz 6313249 SHA256 42ca594afc709cbef8528a6096f5a1efe96dcf3164e7ce321e87d57ae015cc82 SHA512 f0f3030d12ac19b0e2ffc5692e02f3e9137b31a0b47fa64a02265ca535f37a12afe816ed728623cab4537e22f8d5e7637f0cb059d3cf875620abd6e797c154ba WHIRLPOOL 865e22ceb71fa8b63401077f2c13bd0f0a6698a1361781f762659804019afe0bee06ba1edb593d25fcb52849156223eae2c248387db4b73bc07bc8410e52673a
 DIST wordpress-4.3.1.tar.gz 6526208 SHA256 df5a5bfa28c916e11e8a636297c8eeb68816fff1d1bc2564c1d73c0063f0027c SHA512 d19b9a76b10d4cc3d7f577b8196b3423e72a1847a1cb9c85fa1506c0a97f3e10f65c5b2453aacd4b963327b3209725f44e30186e69d075c093b15177587a974a WHIRLPOOL 9dbfb60e1e081a4981f54f073fa6075799b051bdd3cd64c7a27ab29fef6484299c5c5e3d06d03bd1b926d82004d0955838e1c0e96607f62d120a5b034acae4dd
 DIST wordpress-4.3.tar.gz 6524201 SHA256 3b0db3abe8504f15a33cf64188a493ec0de01eaa8d20e37c3d6a1d9fa0a40fb4 SHA512 d40723efa4aac41ade734d35f985397679e4e72657724ff47a0783205ca51ce7477973e3a7bc73550a4e3d1b523991d6ece09ff652032b746adb96207de6eca1 WHIRLPOOL 474b03255ae381e6b92ae5bf094596bcd3fcd12e11271bd68d091fcce27b80ab922d3c240f2eaa2509ad603edb34a78639145b3fe6bf19a9d367fa334c4beaea
+DIST wordpress-4.4.tar.gz 7079339 SHA256 02047ded951bc9d3e3d7e33dc4add71165edff202bee0c00d536e9640813ce99 SHA512 7963f42a20b0c4fb8bbab4e2ee464ed4d1fc69c194eaefb7c4a0a7a77c4f44e846e8a1322a5fee57788b8af5a5be2a946fb8615e020faa098a985aa48c9da35a WHIRLPOOL 03310277df56856e9a02b5177effc18a8e2067ec91d1e337ddaaca19f11582b04322eabc33e5b6324c21c4314109b493fa7e76b1a7a30e3ae0241eca4284370a

diff --git a/www-apps/wordpress/wordpress-4.4.ebuild b/www-apps/wordpress/wordpress-4.4.ebuild
new file mode 100644
index 0000000..15f1314
--- /dev/null
+++ b/www-apps/wordpress/wordpress-4.4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit webapp
+
+DESCRIPTION="Wordpress PHP and MySQL based content management system (CMS)"
+HOMEPAGE="https://wordpress.org/"
+SRC_URI="https://wordpress.org/${P/_rc/-RC}.tar.gz"
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="virtual/httpd-php
+	|| ( dev-lang/php[mysql] dev-lang/php[mysqli] )"
+
+S=${WORKDIR}/${PN}
+
+need_httpd_cgi
+
+IUSE="+akismet examples +themes vhosts"
+
+src_install() {
+	webapp_src_preinst
+
+	dohtml readme.html
+	rm readme.html license.txt || die
+
+	if ! use akismet ; then
+		rm -R wp-content/plugins/akismet/ || die
+	fi
+	if ! use examples ; then
+		rm wp-content/plugins/hello.php || die
+	fi
+	if ! use themes ; then
+		rm -R wp-content/themes/*/ || die
+	fi
+
+	[[ -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
+}


             reply	other threads:[~2015-12-19 20:09 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-19 20:09 Sebastian Pipping [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-21 16:51 [gentoo-commits] repo/gentoo:master commit in: www-apps/wordpress/ Miroslav Šulc
2024-11-13 10:59 Miroslav Šulc
2024-09-10 16:19 Miroslav Šulc
2024-07-23 21:09 Miroslav Šulc
2024-07-17  4:27 Viorel Munteanu
2024-06-24 19:25 Miroslav Šulc
2024-06-05 16:21 Miroslav Šulc
2024-05-08  7:05 Miroslav Šulc
2024-04-10  6:52 Viorel Munteanu
2024-04-10  6:52 Viorel Munteanu
2024-04-10  6:52 Viorel Munteanu
2024-04-10  6:52 Viorel Munteanu
2024-04-03  4:11 Viorel Munteanu
2024-01-31  5:27 Viorel Munteanu
2024-01-31  5:27 Viorel Munteanu
2023-12-06 17:28 Miroslav Šulc
2023-11-09 11:20 Miroslav Šulc
2023-11-08  9:16 Miroslav Šulc
2023-10-13  5:42 Viorel Munteanu
2023-10-13  5:42 Viorel Munteanu
2023-08-29 18:39 Viorel Munteanu
2023-08-29 18:39 Viorel Munteanu
2023-08-09  6:27 Miroslav Šulc
2023-05-20  7:09 Miroslav Šulc
2023-05-17  5:16 Viorel Munteanu
2023-05-17  5:16 Viorel Munteanu
2023-05-17  5:16 Viorel Munteanu
2023-03-30  4:39 Viorel Munteanu
2023-03-30  4:39 Viorel Munteanu
2023-03-21 18:30 Viorel Munteanu
2023-03-21 18:30 Viorel Munteanu
2023-03-15  5:41 Viorel Munteanu
2023-03-15  5:41 Viorel Munteanu
2023-03-11 11:44 Viorel Munteanu
2022-11-16  8:31 Miroslav Šulc
2022-11-02  6:56 Miroslav Šulc
2022-10-28  3:45 Jakov Smolić
2022-10-18  5:10 Miroslav Šulc
2022-08-31  4:53 Miroslav Šulc
2022-07-13  2:49 Miroslav Šulc
2022-06-06  6:07 Miroslav Šulc
2022-04-06  7:01 Miroslav Šulc
2022-03-14  8:05 Miroslav Šulc
2022-02-23  9:47 Miroslav Šulc
2022-01-26  8:58 Miroslav Šulc
2022-01-06 21:13 Miroslav Šulc
2021-11-12  7:44 Miroslav Šulc
2021-09-09 18:53 Miroslav Šulc
2021-07-21  7:55 Miroslav Šulc
2021-05-13  8:28 Miroslav Šulc
2021-04-15 10:33 Miroslav Šulc
2021-03-23 11:20 Miroslav Šulc
2021-02-23  8:38 Miroslav Šulc
2021-02-04  9:29 Miroslav Šulc
2021-01-10 22:27 Sam James
2021-01-10 22:27 Sam James
2020-12-09  9:47 Miroslav Šulc
2020-10-31  8:22 Miroslav Šulc
2020-10-30  9:36 Miroslav Šulc
2020-09-02  7:35 Miroslav Šulc
2020-08-12 10:34 Miroslav Šulc
2020-06-12  3:34 Aaron Bauman
2020-06-11  7:10 Miroslav Šulc
2020-05-01  3:19 Miroslav Šulc
2020-04-30  4:59 Miroslav Šulc
2020-04-01 12:08 Miroslav Šulc
2020-04-01 12:08 Miroslav Šulc
2019-12-19  9:08 Miroslav Šulc
2019-12-19  9:05 Miroslav Šulc
2019-12-13  9:13 Miroslav Šulc
2019-12-13  9:13 Miroslav Šulc
2019-10-19 10:19 Miroslav Šulc
2019-10-19  8:21 Miroslav Šulc
2019-10-08 16:27 Miroslav Šulc
2019-05-25 14:29 Anthony G. Basile
2019-05-13 16:11 Anthony G. Basile
2019-03-16  6:50 Miroslav Šulc
2019-03-16  6:50 Miroslav Šulc
2019-02-26 17:00 Miroslav Šulc
2018-12-29 23:19 Anthony G. Basile
2018-09-12 11:44 Alexey Shvetsov
2018-07-11 18:29 Anthony G. Basile
2018-05-26 11:51 Sebastian Pipping
2018-04-04  1:06 Sebastian Pipping
2018-02-07 13:51 Sebastian Pipping
2018-02-05 22:21 Sebastian Pipping
2018-01-25 21:11 Aaron Bauman
2018-01-17  0:05 Sebastian Pipping
2017-11-29 22:19 Sebastian Pipping
2017-11-27 16:21 Anthony G. Basile
2017-11-27 14:36 Anthony G. Basile
2017-11-20  0:43 Anthony G. Basile
2017-10-31 16:33 Sebastian Pipping
2017-09-20 11:47 Anthony G. Basile
2017-08-06 16:04 Sebastian Pipping
2017-06-10 12:41 Anthony G. Basile
2017-05-17 13:20 Sebastian Pipping
2017-04-30 15:30 Sebastian Pipping
2017-03-07 21:40 Anthony G. Basile
2017-03-06 21:22 Sebastian Pipping
2017-02-01  2:20 Aaron Bauman
2017-01-26 23:11 Sebastian Pipping
2017-01-11 20:18 Sebastian Pipping
2017-01-02 13:36 Anthony G. Basile
2017-01-02 13:34 Anthony G. Basile
2016-09-07 17:57 Sebastian Pipping
2016-08-24  0:30 Anthony G. Basile
2016-06-23  1:03 Anthony G. Basile
2016-05-06 22:02 Anthony G. Basile
2016-04-30 14:00 Anthony G. Basile
2016-04-25 23:46 Jorge Manuel B. S. Vicetto
2016-02-02 19:08 Sebastian Pipping
2016-01-06 20:36 Sebastian Pipping
2016-01-06 20:27 Sebastian Pipping
2015-09-15 23:05 Sebastian Pipping
2015-08-25  2:47 Tim Harder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1450555684.ec13cc7f87541d157420ef03a44a203ce400f4ec.sping@gentoo \
    --to=sping@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox