Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/drupal/
Date: Thu, 16 Mar 2023 06:09:47
Message-Id: 1678946779.f2e49215e93f1c41bb52b35ebd46dc6a4b8f931a.ceamac@gentoo
1 commit: f2e49215e93f1c41bb52b35ebd46dc6a4b8f931a
2 Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 16 06:06:19 2023 +0000
4 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 16 06:06:19 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e49215
7
8 www-apps/drupal: add 9.4.12
9
10 Security update.
11
12 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>
13
14 www-apps/drupal/Manifest | 1 +
15 www-apps/drupal/drupal-9.4.12.ebuild | 68 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 69 insertions(+)
17
18 diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
19 index 2f5971764199..9fb7d359aca7 100644
20 --- a/www-apps/drupal/Manifest
21 +++ b/www-apps/drupal/Manifest
22 @@ -1,4 +1,5 @@
23 DIST drupal-10.0.2.tar.gz 17411661 BLAKE2B c7a9a98f1e8c120486c1a6bd17986b3e99c1e51113969413eb557f657fa3415f65b819a70d08be7c543b6609cba2881b18fa69ce77fe8b3764d9a4a12f569e04 SHA512 19f3f2459c8d2d54647f43db614cd493cb6f068d107678bb6c36823407fe815db71b7919fe755f40fb10c3697afb07e20c93fe47098de88f9248f18cf901da80
24 DIST drupal-7.95.tar.gz 3380331 BLAKE2B 03b7434ef323cd8c26349ae11b65835a30dfb131f5fea36b6ec856d77a57756886fca79ad4f6ef033ab2716713993dcad331c96f99a5291e9083b8151652aa13 SHA512 7e013adc687ea263ff63eecee876367d5a2e4467a44fc4cc0d14a54f82d21b66069aa0ef7123370cdaf0d051a6c2fc870f359d2f2d657a59b41506e7dec8ad84
25 DIST drupal-9.4.10.tar.gz 21631038 BLAKE2B 635bca79c8ac0230205eb4eb11b4e790d49a3359c0fc1f535b936535b8541de71f0319806da221a9179b0b13c8f3d28ccf0f4d7c9088e459d9ff8274b3965b58 SHA512 befefe68ef0b6818ba9637fea2b007119483b431950cf0d81090d27b1e1672ab8c84be46ea1b083acf7dc4898bd4cfb294cd74a21cd5105cccef3d285c357739
26 +DIST drupal-9.4.12.tar.gz 21629697 BLAKE2B ffade207c552cbcdc02bfdee672a6f628bb74dbc1bf3e6f276482c838559a7fa195e1c919da6119bdd1edce3b2032ecfb2a9c6694e8894035b22640011d9d92a SHA512 a4e09dbdc6255a82a5948f30f458ed89a0e930703830023116627097f12c2e27c4b0c42feaec21c89db791976a5bd4d2c05d9c02a710384fe4978489ceb78954
27 DIST drupal-9.5.2.tar.gz 22552415 BLAKE2B f364faefa537e43a908ad7a4aab689643ef1ddf036881a4167b0681eeb0e8d0fa657037f059475b854f5e1965e670834bdc49cbd7bc8b5e4123ae9fa00423351 SHA512 a78637076db8034abb26e8c271db363ce3f20aa095f44b411ed2c3556bf102278a002ede68a386761d22004c65b9524ed473ac1a6c4e41ac6969b360179afde6
28
29 diff --git a/www-apps/drupal/drupal-9.4.12.ebuild b/www-apps/drupal/drupal-9.4.12.ebuild
30 new file mode 100644
31 index 000000000000..cfe37862af18
32 --- /dev/null
33 +++ b/www-apps/drupal/drupal-9.4.12.ebuild
34 @@ -0,0 +1,68 @@
35 +# Copyright 1999-2023 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +inherit webapp
41 +
42 +MY_PV=${PV:0:3}.0
43 +MY_P=${P/_/-}
44 +S="${WORKDIR}/${MY_P}"
45 +
46 +DESCRIPTION="PHP-based open-source platform and content management system"
47 +HOMEPAGE="https://www.drupal.org/"
48 +SRC_URI="https://ftp.drupal.org/files/projects/${MY_P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE="+mysql postgres sqlite +uploadprogress"
53 +
54 +RDEPEND="
55 + dev-lang/php[gd,hash(+),mysql?,pdo,postgres?,simplexml,sqlite?,xml]
56 + virtual/httpd-php
57 + uploadprogress? ( dev-php/pecl-uploadprogress )
58 +"
59 +
60 +need_httpd_cgi
61 +
62 +REQUIRED_USE="|| ( mysql postgres sqlite )"
63 +
64 +src_install() {
65 + webapp_src_preinst
66 +
67 + local docs="LICENSE.txt README.md core/MAINTAINERS.txt core/INSTALL.txt core/CHANGELOG.txt \
68 + core/INSTALL.mysql.txt core/INSTALL.pgsql.txt core/INSTALL.sqlite.txt core/UPDATE.txt "
69 +
70 + dodoc ${docs}
71 + rm ${docs} core/COPYRIGHT.txt core/LICENSE.txt || die
72 +
73 + cp sites/default/{default.settings.php,settings.php} || die
74 + insinto "${MY_HTDOCSDIR}"
75 + doins -r .
76 +
77 + dodir "${MY_HTDOCSDIR}"/files
78 + webapp_serverowned "${MY_HTDOCSDIR}"/files
79 +
80 + webapp_configfile "${MY_HTDOCSDIR}"/sites/default/settings.php
81 + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
82 +
83 + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
84 +
85 + webapp_src_install
86 +}
87 +
88 +pkg_postinst() {
89 + echo
90 + ewarn "SECURITY NOTICE"
91 + ewarn "If you plan on using SSL on your Drupal site, please consult the postinstall information:"
92 + ewarn "\t# webapp-config --show-postinst ${PN} ${PV}"
93 + echo
94 + ewarn "If this is a new install, unless you want anyone with network access to your server to be"
95 + ewarn "able to run the setup, you'll have to configure your web server to limit access to it."
96 + echo
97 + ewarn "If you're doing a new drupal-9 install, you'll have to copy /sites/default/default.services.yml"
98 + ewarn "to /sites/default/services.yml and grant it write permissions to your web server."
99 + ewarn "Just follow the instructions of the drupal setup and be sure to resolve any permissions issue"
100 + ewarn "reported by the setup."
101 + echo
102 +}