From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/drupal/
Date: Fri, 7 Jun 2019 09:20:34 +0000 (UTC) [thread overview]
Message-ID: <1559899203.43ea06fe985a14d9decea36b08e6f58703ffb9ba.jmbsvicetto@gentoo> (raw)
commit: 43ea06fe985a14d9decea36b08e6f58703ffb9ba
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 7 09:20:03 2019 +0000
Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
CommitDate: Fri Jun 7 09:20:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ea06fe
www-apps/drupal: Bump to 8.7.3 release.
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
www-apps/drupal/Manifest | 1 +
www-apps/drupal/drupal-8.7.3.ebuild | 84 +++++++++++++++++++++++++++++++++++++
2 files changed, 85 insertions(+)
diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index d79826f6686..3fc2c91fde2 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -2,3 +2,4 @@ DIST drupal-7.67.tar.gz 3312764 BLAKE2B bb7f21e80ca192ff3e37f917c1fa43dcd8d3cd8b
DIST drupal-8.6.16.tar.gz 17151378 BLAKE2B 2bdd14ff7a5f898af2d322a6b2862643899dfbe2ad05c99b85f036161612cccfc2c25105c8eef37311634a2aa03ed792db8de3e625aed5adb94cd8f644557fcb SHA512 34f260d780bce286a0a61b710c340d2622cb857aa92a2bdaad63737303ef2f4f1751edc3f415daaa14b9cb483757e367e639136d03f571cba5165129bba31e12
DIST drupal-8.7.1.tar.gz 17811529 BLAKE2B 5bdb92a8f6c5675dd311417db526be81149240a053bdb94f4294cb571193ed03f2edbc83b51cbcce9e0e322b45981d0949714659f5db2dff211815232cd447e5 SHA512 a386f7991465eade203aba4b20bb894041c76abda97e93afd772a02b215ac496d57a9aed50820a7bd78604c9e6602180fcda933c5121b8536a7d610a3bc3f2e8
DIST drupal-8.7.2.tar.gz 17824323 BLAKE2B 355a4cdbcefe98afd53235bd8546e50efe911a36536aa07e9cb8a86f00dc6b068d0c276e26aee975790ef80ca5030d7464d4b705fa4da9391ce051994a7b850d SHA512 9dc8ca6c431f1d9e50d1c9139efe537815b59bf17b433cdeeb2df5f60ae9a77812f5ca096b5a0aa67bf71344efe60728e46b209609d41fc25065ae58a6bca6af
+DIST drupal-8.7.3.tar.gz 17825116 BLAKE2B 961d92526d8d53d1823b01696bacf6bcca7c10ea0057c561a9126d43f0e18ab1b37a5e85b733927793348b8241014b78b4efdf8aaedbf9e6e82caed51df76b64 SHA512 f7b1c0360091f7b14109b6a328663d0006138d3a39855838bfa9ec70d17aa835ffe8fb393e3b54a378bdfd3011f6cfe9e2eae9be5e79c8fc2586bc48b0bd7df2
diff --git a/www-apps/drupal/drupal-8.7.3.ebuild b/www-apps/drupal/drupal-8.7.3.ebuild
new file mode 100644
index 00000000000..a8514d07dfe
--- /dev/null
+++ b/www-apps/drupal/drupal-8.7.3.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+MY_PV=${PV:0:3}.0
+MY_P=${P/_/-}
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="PHP-based open-source platform and content management system"
+HOMEPAGE="https://www.drupal.org/"
+SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+IUSE="+accelerator +mysql postgres sqlite +uploadprogress"
+
+RDEPEND="
+ dev-lang/php[gd,hash,pdo,postgres?,simplexml,xml]
+ virtual/httpd-php
+ accelerator? ( ||
+ (
+ dev-php/xcache
+ (
+ >=dev-lang/php-5.5[opcache]
+ dev-php/pecl-apcu
+ )
+ )
+ )
+ uploadprogress? ( dev-php/pecl-uploadprogress )
+ mysql? (
+ || (
+ dev-lang/php[mysql]
+ dev-lang/php[mysqli]
+ )
+ )
+ sqlite? ( dev-lang/php[sqlite] )
+"
+
+need_httpd_cgi
+
+REQUIRED_USE="|| ( mysql postgres sqlite )"
+
+src_install() {
+ webapp_src_preinst
+
+ local docs="LICENSE.txt README.txt core/MAINTAINERS.txt core/INSTALL.txt core/CHANGELOG.txt \
+ core/INSTALL.mysql.txt core/INSTALL.pgsql.txt core/INSTALL.sqlite.txt core/UPDATE.txt "
+
+ dodoc ${docs}
+ rm -f ${docs} core/INSTALL core/COPYRIGHT.txt core/LICENSE.txt || die
+
+ cp sites/default/{default.settings.php,settings.php} || die
+ insinto "${MY_HTDOCSDIR}"
+ doins -r .
+
+ dodir "${MY_HTDOCSDIR}"/files
+ webapp_serverowned "${MY_HTDOCSDIR}"/files
+
+ webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
+ webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
+
+ webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+
+ webapp_src_install
+}
+
+pkg_postinst() {
+ echo
+ ewarn "SECURITY NOTICE"
+ ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
+ ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
+ echo
+ ewarn "If this is a new install, unless you want anyone with network access to your server to be"
+ ewarn "able to run the setup, you'll have to configure your web server to limit access to it."
+ echo
+ ewarn "If you're doing a new drupal-8 install, you'll have to copy /sites/default/default.services.yml"
+ ewarn "to /sites/default/services.yml and grant it write permissions to your web server."
+ ewarn "Just follow the instructions of the drupal setup and be sure to resolve any permissions issue"
+ ewarn "reported by the setup."
+ echo
+}
next reply other threads:[~2019-06-07 9:20 UTC|newest]
Thread overview: 153+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-07 9:20 Jorge Manuel B. S. Vicetto [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-15 17:48 [gentoo-commits] repo/gentoo:master commit in: www-apps/drupal/ Viorel Munteanu
2025-05-15 17:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2025-05-02 8:48 Viorel Munteanu
2024-04-12 6:39 Viorel Munteanu
2024-04-12 6:39 Viorel Munteanu
2024-04-09 6:36 Viorel Munteanu
2024-04-09 6:36 Viorel Munteanu
2023-09-21 13:01 Viorel Munteanu
2023-09-21 13:01 Viorel Munteanu
2023-09-21 13:01 Viorel Munteanu
2023-09-21 13:01 Viorel Munteanu
2023-06-25 11:17 Viorel Munteanu
2023-04-21 12:32 Viorel Munteanu
2023-04-21 12:32 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-04-19 18:28 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-16 6:09 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2023-03-11 11:05 Viorel Munteanu
2022-05-04 9:35 Alfredo Tupone
2022-05-03 7:39 Alfredo Tupone
2022-05-03 7:28 Alfredo Tupone
2022-02-10 6:41 Alfredo Tupone
2021-08-12 20:07 Jorge Manuel B. S. Vicetto
2021-08-12 20:06 Jorge Manuel B. S. Vicetto
2021-08-04 17:44 Jorge Manuel B. S. Vicetto
2021-05-29 15:13 Alfredo Tupone
2021-01-22 10:25 Jorge Manuel B. S. Vicetto
2021-01-11 21:07 Jorge Manuel B. S. Vicetto
2021-01-10 22:27 Sam James
2021-01-10 22:27 Sam James
2020-11-19 19:22 Jorge Manuel B. S. Vicetto
2020-11-19 19:15 Jorge Manuel B. S. Vicetto
2020-10-14 15:23 Jorge Manuel B. S. Vicetto
2020-09-17 16:25 Jorge Manuel B. S. Vicetto
2020-09-17 16:21 Jorge Manuel B. S. Vicetto
2020-09-07 16:22 Jorge Manuel B. S. Vicetto
2020-08-06 18:54 Jorge Manuel B. S. Vicetto
2020-08-05 14:35 Jorge Manuel B. S. Vicetto
2020-06-22 0:36 Jorge Manuel B. S. Vicetto
2020-06-04 13:12 Jorge Manuel B. S. Vicetto
2020-05-22 1:00 Jorge Manuel B. S. Vicetto
2020-05-22 0:57 Jorge Manuel B. S. Vicetto
2020-04-15 16:18 Jorge Manuel B. S. Vicetto
2020-03-24 13:21 Jorge Manuel B. S. Vicetto
2020-03-24 13:20 Jorge Manuel B. S. Vicetto
2020-03-06 19:43 Jorge Manuel B. S. Vicetto
2020-02-03 19:53 Jorge Manuel B. S. Vicetto
2019-12-19 13:54 Jorge Manuel B. S. Vicetto
2019-12-19 13:54 Jorge Manuel B. S. Vicetto
2019-12-05 16:42 Jorge Manuel B. S. Vicetto
2019-11-20 16:27 Jorge Manuel B. S. Vicetto
2019-11-20 16:20 Jorge Manuel B. S. Vicetto
2019-11-07 16:08 Jorge Manuel B. S. Vicetto
2019-11-07 15:56 Jorge Manuel B. S. Vicetto
2019-10-10 10:19 Jorge Manuel B. S. Vicetto
2019-09-12 14:32 Jorge Manuel B. S. Vicetto
2019-08-12 13:31 Jorge Manuel B. S. Vicetto
2019-08-12 13:31 Jorge Manuel B. S. Vicetto
2019-08-10 4:42 Matt Turner
2019-08-10 4:42 Matt Turner
2019-07-23 23:19 Jorge Manuel B. S. Vicetto
2019-07-08 13:58 Jorge Manuel B. S. Vicetto
2019-06-05 14:48 Jorge Manuel B. S. Vicetto
2019-05-09 2:34 Jorge Manuel B. S. Vicetto
2019-05-09 2:34 Jorge Manuel B. S. Vicetto
2019-04-22 2:12 Jorge Manuel B. S. Vicetto
2019-04-19 13:29 Alexey Shvetsov
2019-04-12 13:00 Jorge Manuel B. S. Vicetto
2019-03-22 19:59 Jorge Manuel B. S. Vicetto
2019-03-22 19:59 Jorge Manuel B. S. Vicetto
2019-02-20 21:27 Jorge Manuel B. S. Vicetto
2019-02-20 21:25 Jorge Manuel B. S. Vicetto
2019-02-11 19:18 Jorge Manuel B. S. Vicetto
2019-01-18 20:18 Jorge Manuel B. S. Vicetto
2019-01-18 20:15 Jorge Manuel B. S. Vicetto
2019-01-04 21:12 Jorge Manuel B. S. Vicetto
2018-12-06 23:07 Jorge Manuel B. S. Vicetto
2018-11-12 20:01 Jorge Manuel B. S. Vicetto
2018-11-12 3:38 Jorge Manuel B. S. Vicetto
2018-10-18 16:26 Jorge Manuel B. S. Vicetto
2018-09-12 12:16 Alexey Shvetsov
2018-09-12 12:16 Alexey Shvetsov
2018-09-06 11:56 Alexey Shvetsov
2018-08-02 13:42 Jorge Manuel B. S. Vicetto
2018-08-02 13:41 Jorge Manuel B. S. Vicetto
2018-07-25 19:34 Jorge Manuel B. S. Vicetto
2018-06-11 22:11 Alexey Shvetsov
2018-04-26 1:03 Jorge Manuel B. S. Vicetto
2018-04-20 23:50 Jorge Manuel B. S. Vicetto
2018-03-28 19:38 Jorge Manuel B. S. Vicetto
2018-02-24 15:28 Jorge Manuel B. S. Vicetto
2018-02-24 15:22 Jorge Manuel B. S. Vicetto
2017-11-06 19:02 Jorge Manuel B. S. Vicetto
2017-09-01 19:19 Jorge Manuel B. S. Vicetto
2017-06-22 9:39 Jorge Manuel B. S. Vicetto
2017-06-08 15:58 Jorge Manuel B. S. Vicetto
2017-05-07 20:58 Jorge Manuel B. S. Vicetto
2017-04-19 19:40 Jorge Manuel B. S. Vicetto
2017-04-07 13:34 Jorge Manuel B. S. Vicetto
2017-03-23 20:12 Jorge Manuel B. S. Vicetto
2017-03-16 19:16 Jorge Manuel B. S. Vicetto
2017-02-02 23:03 Jorge Manuel B. S. Vicetto
2017-01-06 14:24 Jorge Manuel B. S. Vicetto
2017-01-06 12:23 Michał Górny
2016-12-09 0:27 Jorge Manuel B. S. Vicetto
2016-11-18 11:20 Jorge Manuel B. S. Vicetto
2016-11-18 4:07 Jorge Manuel B. S. Vicetto
2016-11-18 4:07 Jorge Manuel B. S. Vicetto
2016-10-10 15:47 Jorge Manuel B. S. Vicetto
2016-09-25 3:40 Jorge Manuel B. S. Vicetto
2016-09-25 3:35 Jorge Manuel B. S. Vicetto
2016-07-19 12:24 Jorge Manuel B. S. Vicetto
2016-07-19 12:24 Jorge Manuel B. S. Vicetto
2016-07-14 22:07 Jorge Manuel B. S. Vicetto
2016-06-16 10:14 Jorge Manuel B. S. Vicetto
2016-06-15 23:08 Jorge Manuel B. S. Vicetto
2016-06-06 1:52 Jorge Manuel B. S. Vicetto
2016-05-23 0:00 Anthony G. Basile
2016-05-22 22:35 Jorge Manuel B. S. Vicetto
2016-04-13 19:02 Jorge Manuel B. S. Vicetto
2016-02-25 3:06 Jorge Manuel B. S. Vicetto
2016-02-08 18:25 Jorge Manuel B. S. Vicetto
2016-01-16 16:32 Jorge Manuel B. S. Vicetto
2015-12-05 18:31 Jorge Manuel B. S. Vicetto
2015-11-21 23:41 Jorge Manuel B. S. Vicetto
2015-10-22 0:27 Jorge Manuel B. S. Vicetto
2015-10-15 11:55 Jorge Manuel B. S. Vicetto
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=1559899203.43ea06fe985a14d9decea36b08e6f58703ffb9ba.jmbsvicetto@gentoo \
--to=jmbsvicetto@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