Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/
Date: Tue, 11 Dec 2018 22:29:20
Message-Id: 1544567345.a56eaf81f9da774825536b958e497fa751d38346.blueness@gentoo
1 commit: a56eaf81f9da774825536b958e497fa751d38346
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 11 22:28:42 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 22:29:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a56eaf81
7
8 www-apps/moodle: version bump to 3.6.1
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 www-apps/moodle/Manifest | 1 +
14 www-apps/moodle/moodle-3.6.1.ebuild | 123 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 124 insertions(+)
16
17 diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
18 index fa341a753c1..0f54d954082 100644
19 --- a/www-apps/moodle/Manifest
20 +++ b/www-apps/moodle/Manifest
21 @@ -2,3 +2,4 @@ DIST moodle-3.1.15.tgz 38055035 BLAKE2B d55f523fce2f7193330665132b4d7faf6a7a698c
22 DIST moodle-3.3.9.tgz 45123816 BLAKE2B 0e23668fb6ac536a1a87067fc9574424c33934402184ffc6f25f48f7e87c70fb0d9b25bb12b46320d54968ddb8b337471be7b5795369585ce4c488f93168f6d9 SHA512 6150a4c0f4a85ac508d2da9b35fd506eca614c3a44d582096fdecd113899a72481507ce85101505570e0e8237f7af744e3d7a8cf990cf8b250f5ac335ebae1de
23 DIST moodle-3.4.6.tgz 45961570 BLAKE2B 49a20412b386cc3f463dd3be58dc56f50821298d36109889b3eb092d39f4dfe477dfbbf1ea3f1b6ce8076b4d4dca21efc00e7d772b0ced395139d76e56759482 SHA512 2afa7facb2068c63d0a1bd42da40a1cb688a1bcdedc5287e59633bb085f96c65598396f03b99b35c9aa3769463dea316584ce3793978101989fc53f53140ff04
24 DIST moodle-3.5.3.tgz 46645219 BLAKE2B bd1aa2ae73f807c3b8a0e341893c7b004761e147fe42eac615153ae1ee7fa4bf9268e160a14ab1ac62dfe2c5e462d042cb30b725d6a28844e4749492b6a9b193 SHA512 130d1c30acb78452021f4fd5c0d29bfc4c938993e7d0cf3b2fdf13061fa993f9cebc7214f287e62ceb13bfd5999c12132a45fd4aec5efe8c25078dfe97bee861
25 +DIST moodle-3.6.1.tgz 47660920 BLAKE2B 3dba1adb2a2c9926a0efb1942df4239a020c2c2d661a6a2a6825acc70b6e7aab69afb4f0f297cd316fd5f693ab711cccea8bc5c68fa1b72288297b8d00791088 SHA512 79cf5127748e6511101b9f802165eefbe6dafbe89806e8616902765d14481af0b6ba06757be5fecd343bda7dde261c58018f940254549decc66452415a99ab9d
26
27 diff --git a/www-apps/moodle/moodle-3.6.1.ebuild b/www-apps/moodle/moodle-3.6.1.ebuild
28 new file mode 100644
29 index 00000000000..dea9710e1e6
30 --- /dev/null
31 +++ b/www-apps/moodle/moodle-3.6.1.ebuild
32 @@ -0,0 +1,123 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="6"
37 +
38 +inherit versionator webapp
39 +
40 +AVC=( $(get_version_components) )
41 +MY_BRANCH="stable${AVC[0]}${AVC[1]}"
42 +
43 +DESCRIPTION="The Moodle Course Management System"
44 +HOMEPAGE="https://moodle.org"
45 +SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz"
46 +S="${WORKDIR}/${PN}"
47 +
48 +LICENSE="GPL-2"
49 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
50 +#SLOT empty due to webapp
51 +
52 +DB_FLAGS="mysqli?,mssql?,postgres?"
53 +DB_TYPES=${DB_FLAGS//\?/}
54 +DB_TYPES=${DB_TYPES//,/ }
55 +
56 +AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
57 +AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
58 +AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
59 +
60 +PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
61 +PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
62 +PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
63 +
64 +IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
65 +REQUIRED_USE="|| ( ${DB_TYPES} )"
66 +
67 +# No forced dependency on
68 +# mssql? - lives on a windows server
69 +# mysql? ( virtual/mysql )
70 +# postgres? ( dev-db/postgresql-server-9* )
71 +# which may live on another server. These USE flags affect the configuration
72 +# file and the dependency on php. However other dbs are possible. See config.php
73 +# and the moodle documentation for other possibilities.
74 +DEPEND=""
75 +RDEPEND="
76 + >=dev-lang/php-7.0[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
77 + virtual/httpd-php
78 + virtual/cron"
79 +
80 +pkg_setup() {
81 + webapp_pkg_setup
82 +
83 + # How many dbs were selected? If one and only one, which one is it?
84 + MYDB=""
85 + DB_COUNT=0
86 + for db in ${DB_TYPES}; do
87 + if use ${db}; then
88 + MYDB=${db}
89 + DB_COUNT=$(($DB_COUNT+1))
90 + fi
91 + done
92 +
93 + # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
94 + #if [[ ${DB_COUNT} -eq 0 ]]; then
95 + # eerror
96 + # eerror "No database selected in your USE flags,"
97 + # eerror "You must select at least one."
98 + # eerror
99 + # die
100 + #fi
101 +
102 + if [[ ${DB_COUNT} -gt 1 ]]; then
103 + MYDB=""
104 + ewarn
105 + ewarn "Multiple databases selected in your USE flags,"
106 + ewarn "You will have to choose your database manually."
107 + ewarn
108 + fi
109 +}
110 +
111 +src_prepare() {
112 + rm COPYING.txt
113 + cp "${FILESDIR}"/config-r1.php config.php
114 +
115 + # Moodle expect pgsql, not postgres
116 + MYDB=${MYDB/postgres/pgsql}
117 +
118 + if [[ ${DB_COUNT} -eq 1 ]] ; then
119 + sed -i -e "s|mydb|${MYDB}|" config.php
120 + fi
121 +
122 + eapply_user
123 +}
124 +
125 +src_install() {
126 + webapp_src_preinst
127 +
128 + local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
129 + dodir ${MOODLEDATA}
130 + webapp_serverowned -R "${MOODLEDATA}"
131 +
132 + local MOODLEROOT="${MY_HTDOCSDIR}"
133 + insinto ${MOODLEROOT}
134 + doins -r *
135 +
136 + webapp_configfile "${MOODLEROOT}"/config.php
137 +
138 + if [[ ${DB_COUNT} -eq 1 ]]; then
139 + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
140 + else
141 + webapp_postinst_txt en "${FILESDIR}"/postinstall-nodb-en.txt
142 + fi
143 +
144 + webapp_src_install
145 +}
146 +
147 +pkg_postinst() {
148 + einfo
149 + einfo
150 + einfo "To see the post install instructions, do"
151 + einfo
152 + einfo " webapp-config --show-postinst ${PN} ${PVR}"
153 + einfo
154 + einfo
155 +}