[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2024-04-22 Thread Anthony G. Basile
commit: d949e46589855bdfdd35a6be9f5e502886db2a73
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Apr 22 19:58:02 2024 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr 22 19:58:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d949e465

www-apps/moodle: add 4.4

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-4.4.ebuild | 123 ++
 2 files changed, 124 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index acd87d8e83d8..32fb842836a5 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,3 @@
 DIST moodle-4.2.7.tgz 65414482 BLAKE2B 
987ade651e5b6b7c2cca89afb40f9c0bc4fc6f166e4c5b009b9a0fa509d1c464f8b6f6051274d304be7adcc877c21a43d78fe92eee3b73b763d64a36dfc88ca4
 SHA512 
8d7545a2c1a0b443698760b4c4341bd5ffb26c92f3409bea798e85a3ab99f1e1c4ca10b8c8f2f744483ff89af46ee9d4393379e6a32927fd254bf2ccb8b82836
 DIST moodle-4.3.4.tgz 66773789 BLAKE2B 
586653e30739d42583b7ce100c02b1c9e521551dc796567652b0f10bdf1ae94484250885220b97c74b225998c1c05b94bcd42a923c71460c0a7ee0ccbffbe6ce
 SHA512 
03eb49308a2da72920f43bcc4c161e8822acfd4667623548c51770b3b9a79cafdb265dde9fb6615a563b4e16a4ce0ada992ea7dbd682f845e216a57bbb88b95c
+DIST moodle-4.4.tgz 71137364 BLAKE2B 
32ddecccd2f745080a43056f2624137dec77392ca9c4c14e6fcc4abac6a3d98a58c7e4b064902cae7752a324d7ec6f690f321e052adc67b98320eb689f0b716b
 SHA512 
d64411867ab8ef4411ec7f39f4de1ae1d57591ce08b7ac4356025703c9161a69a3259ed6cafd4db55da0ab1f33747600a19567e5db47a8fb101efa1bc4f1a218

diff --git a/www-apps/moodle/moodle-4.4.ebuild 
b/www-apps/moodle/moodle-4.4.ebuild
new file mode 100644
index ..55200877a180
--- /dev/null
+++ b/www-apps/moodle/moodle-4.4.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+
+MY_BRANCH="stable$(ver_cut 1)0$(ver_cut 2)"
+SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,sodium,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   || (
+   
dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   
dev-lang/php:8.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   )
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
+   dodir ${MOODLEDATA}
+   webapp_serverowned -R "${MOODLEDATA}"
+
+   local MOODLEROOT="${MY_HTDOCSDIR}"
+   insinto ${MOODLEROOT}
+   doins -r *
+
+   webapp_configfile "${MOODLEROOT}"/config.php
+
+   if [[ ${DB_COUNT} -eq 1 ]]; then
+   webapp_postinst_txt en 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2024-04-22 Thread Anthony G. Basile
commit: 966520dd30ac52e64618f96df5d0287ebf68c283
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Apr 22 19:50:08 2024 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr 22 19:50:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=966520dd

www-apps/moodle: bumps to 4.2.7, 4.3.4

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 4 ++--
 www-apps/moodle/{moodle-4.2.6.ebuild => moodle-4.2.7.ebuild} | 0
 www-apps/moodle/{moodle-4.3.3.ebuild => moodle-4.3.4.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 3f391156c70b..acd87d8e83d8 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,2 @@
-DIST moodle-4.2.6.tgz 65466611 BLAKE2B 
60632adefc28cb1921cc2a76bcd8193e22f4e1483b76daebd5586fb486696cda8df02e2f85475969891df768c147096c1acd65e257ebd19552c0beb7433e033f
 SHA512 
49c125efd5f4c79092abac21cdb7f39e74eaac6610629e8658c7f7c22b0cdbaf3608a7963226aaf091c63a2fae74e1b80e2ee82f80f73f4dd7a8a604e0394ec9
-DIST moodle-4.3.3.tgz 66830748 BLAKE2B 
b9250146765e8b3a749a41c02ffc22a1442ebed839b3902153141274dc15ef204e4aefa3696b430e0ebc1f2cd1cef62262e67a2a96b88f53eb50c8bc3cf964fe
 SHA512 
19daf65a09a1d3fea214c8e817957939fe8e8056bb3356cbd028a04dd8c4b67b1f6c56f158d076a8c7cd3fe998bb9fcecd402d0884421b8587b8a92f196374b6
+DIST moodle-4.2.7.tgz 65414482 BLAKE2B 
987ade651e5b6b7c2cca89afb40f9c0bc4fc6f166e4c5b009b9a0fa509d1c464f8b6f6051274d304be7adcc877c21a43d78fe92eee3b73b763d64a36dfc88ca4
 SHA512 
8d7545a2c1a0b443698760b4c4341bd5ffb26c92f3409bea798e85a3ab99f1e1c4ca10b8c8f2f744483ff89af46ee9d4393379e6a32927fd254bf2ccb8b82836
+DIST moodle-4.3.4.tgz 66773789 BLAKE2B 
586653e30739d42583b7ce100c02b1c9e521551dc796567652b0f10bdf1ae94484250885220b97c74b225998c1c05b94bcd42a923c71460c0a7ee0ccbffbe6ce
 SHA512 
03eb49308a2da72920f43bcc4c161e8822acfd4667623548c51770b3b9a79cafdb265dde9fb6615a563b4e16a4ce0ada992ea7dbd682f845e216a57bbb88b95c

diff --git a/www-apps/moodle/moodle-4.2.6.ebuild 
b/www-apps/moodle/moodle-4.2.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.2.6.ebuild
rename to www-apps/moodle/moodle-4.2.7.ebuild

diff --git a/www-apps/moodle/moodle-4.3.3.ebuild 
b/www-apps/moodle/moodle-4.3.4.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.3.3.ebuild
rename to www-apps/moodle/moodle-4.3.4.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2024-02-26 Thread Anthony G. Basile
commit: 910c47b71a426b2265f09f658fe71df0d84a0bd0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Feb 26 14:25:55 2024 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb 26 14:26:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=910c47b7

www-apps/moodle: version bumps to 4.2.6 and 4.3.3

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 4 ++--
 www-apps/moodle/{moodle-4.2.5.ebuild => moodle-4.2.6.ebuild} | 2 +-
 www-apps/moodle/{moodle-4.3.2.ebuild => moodle-4.3.3.ebuild} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index e915735dc1d6..3f391156c70b 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,2 @@
-DIST moodle-4.2.5.tgz 65437122 BLAKE2B 
58aea73535fb8054400473388a86a85eec89313a084d45e21b53ebca49b13358c21123d3ebe730b8a62bc89a9c6b523068fbf4a3d48b6d4c5e8ee8d77f92e248
 SHA512 
12598280828f5d6e96dd0146561c0a44ca101433b9bb06de85535fbb0ddf8a3e4909e10bba13e05d77bdf91b92ded50050665b7a899e8d27ab21db304d5577bd
-DIST moodle-4.3.2.tgz 66796530 BLAKE2B 
644e54381f4c045df7a5219a3f24a760e06e78796398959bd34f30d21afcf28e65e0c7697e50cbd0cb0b3fb8cf97a10c73ad410828f7e53738d29696009fd756
 SHA512 
6ebac2f0441047fc44d67c7e5ee071911c6be28480cd6de5d07a103fbd41673f1603b0ff5b0595abab4f6ba3078743df3a0bc07e49b0b6145795618cfbde2d44
+DIST moodle-4.2.6.tgz 65466611 BLAKE2B 
60632adefc28cb1921cc2a76bcd8193e22f4e1483b76daebd5586fb486696cda8df02e2f85475969891df768c147096c1acd65e257ebd19552c0beb7433e033f
 SHA512 
49c125efd5f4c79092abac21cdb7f39e74eaac6610629e8658c7f7c22b0cdbaf3608a7963226aaf091c63a2fae74e1b80e2ee82f80f73f4dd7a8a604e0394ec9
+DIST moodle-4.3.3.tgz 66830748 BLAKE2B 
b9250146765e8b3a749a41c02ffc22a1442ebed839b3902153141274dc15ef204e4aefa3696b430e0ebc1f2cd1cef62262e67a2a96b88f53eb50c8bc3cf964fe
 SHA512 
19daf65a09a1d3fea214c8e817957939fe8e8056bb3356cbd028a04dd8c4b67b1f6c56f158d076a8c7cd3fe998bb9fcecd402d0884421b8587b8a92f196374b6

diff --git a/www-apps/moodle/moodle-4.2.5.ebuild 
b/www-apps/moodle/moodle-4.2.6.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-4.2.5.ebuild
rename to www-apps/moodle/moodle-4.2.6.ebuild
index 04ae73cd2ec3..dc4f3bbcbc1f 100644
--- a/www-apps/moodle/moodle-4.2.5.ebuild
+++ b/www-apps/moodle/moodle-4.2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-4.3.2.ebuild 
b/www-apps/moodle/moodle-4.3.3.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-4.3.2.ebuild
rename to www-apps/moodle/moodle-4.3.3.ebuild
index 04ae73cd2ec3..dc4f3bbcbc1f 100644
--- a/www-apps/moodle/moodle-4.3.2.ebuild
+++ b/www-apps/moodle/moodle-4.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-12-22 Thread Anthony G. Basile
commit: 60e68c2d85e0bee1970e60a8c5f9117e904ddfba
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Dec 22 17:42:30 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Dec 22 17:43:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e68c2d

www-apps/moodle: bump to 4.2.5, 4.3.2

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 4 ++--
 www-apps/moodle/{moodle-4.2.4.ebuild => moodle-4.2.5.ebuild} | 0
 www-apps/moodle/{moodle-4.3.1.ebuild => moodle-4.3.2.ebuild} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 29d6c42c6d2d..e915735dc1d6 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,2 @@
-DIST moodle-4.2.4.tgz 65439054 BLAKE2B 
6c7c2ed305139bf1d2bdaf7f60893a5019ea657be05918911aedaff0e6bcd8160726d38a5ac48aab776215fb0cb9d0d17bab26f50f076950a17f44f084b3a222
 SHA512 
b397b6a4dd9091feb9b11e6d8e8e168b22ffe3f0b1feb41a6bb456f52adc106ad135eae7f03159948b5ffaf2d70a4e5d6e58013653db488437ea4e2be59d68f3
-DIST moodle-4.3.1.tgz 66793158 BLAKE2B 
f05518186c05380e6cd99db6aa612287bd1b5fd31ad74dce152da799553b2cdd05bff7249be46b4bb6c8fa838b18f50a9dfe492bad21897e5633719987d7eff2
 SHA512 
6f33f946f9bb20fb75b75e9f715d29f8a0149751387931745d1894d671334911fcb5f61a9fdbc4fc33ade163518f5de9d49ade8420f9e1ffb3400df8c1eed646
+DIST moodle-4.2.5.tgz 65437122 BLAKE2B 
58aea73535fb8054400473388a86a85eec89313a084d45e21b53ebca49b13358c21123d3ebe730b8a62bc89a9c6b523068fbf4a3d48b6d4c5e8ee8d77f92e248
 SHA512 
12598280828f5d6e96dd0146561c0a44ca101433b9bb06de85535fbb0ddf8a3e4909e10bba13e05d77bdf91b92ded50050665b7a899e8d27ab21db304d5577bd
+DIST moodle-4.3.2.tgz 66796530 BLAKE2B 
644e54381f4c045df7a5219a3f24a760e06e78796398959bd34f30d21afcf28e65e0c7697e50cbd0cb0b3fb8cf97a10c73ad410828f7e53738d29696009fd756
 SHA512 
6ebac2f0441047fc44d67c7e5ee071911c6be28480cd6de5d07a103fbd41673f1603b0ff5b0595abab4f6ba3078743df3a0bc07e49b0b6145795618cfbde2d44

diff --git a/www-apps/moodle/moodle-4.2.4.ebuild 
b/www-apps/moodle/moodle-4.2.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.2.4.ebuild
rename to www-apps/moodle/moodle-4.2.5.ebuild

diff --git a/www-apps/moodle/moodle-4.3.1.ebuild 
b/www-apps/moodle/moodle-4.3.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.3.1.ebuild
rename to www-apps/moodle/moodle-4.3.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-12-12 Thread Anthony G. Basile
commit: 3a6bf52b46c5c5fe7e72a9e261c761a7649699b6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 12 19:59:26 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Dec 13 04:20:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a6bf52b

www-apps/moodle: bump to 4.2.4, 4.3.1

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest| 4 ++--
 www-apps/moodle/{moodle-4.2.3-r1.ebuild => moodle-4.2.4.ebuild} | 0
 www-apps/moodle/{moodle-4.3-r1.ebuild => moodle-4.3.1.ebuild}   | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 8395b2f11806..29d6c42c6d2d 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,2 @@
-DIST moodle-4.2.3.tgz 65362300 BLAKE2B 
953a010efe4b5b90cddb5538720c164a96554965ca67a386c48c908334fd8ca57c78a6923d9a2332056a1c1b5281b32bfd0203f77c7f42c87cc6674408663a7c
 SHA512 
43352b5f840f012aa3c460adeb1b68e5db5201102157c85449902edda9e95abd94e2aa526251a97e07af4d0e75b82eaa83bd3d6f26718095e10e3cc9956f22ce
-DIST moodle-4.3.tgz 66728529 BLAKE2B 
d4c2bfac6a03f58729a2662b97ff3a08d9153d0c42ea4955c340d2c2f864635622fbf3855e13dd012ac2602e4004d2e80527251477afa9176ea7d4bb83f9e48f
 SHA512 
606d6d9308004fed217a58a7986507f72d4de2e15e0a80ace39060e74baa6f85c1cb78184b8c57a2dac57f223f19a5084be7009085dfe70f32c10dc3dc56
+DIST moodle-4.2.4.tgz 65439054 BLAKE2B 
6c7c2ed305139bf1d2bdaf7f60893a5019ea657be05918911aedaff0e6bcd8160726d38a5ac48aab776215fb0cb9d0d17bab26f50f076950a17f44f084b3a222
 SHA512 
b397b6a4dd9091feb9b11e6d8e8e168b22ffe3f0b1feb41a6bb456f52adc106ad135eae7f03159948b5ffaf2d70a4e5d6e58013653db488437ea4e2be59d68f3
+DIST moodle-4.3.1.tgz 66793158 BLAKE2B 
f05518186c05380e6cd99db6aa612287bd1b5fd31ad74dce152da799553b2cdd05bff7249be46b4bb6c8fa838b18f50a9dfe492bad21897e5633719987d7eff2
 SHA512 
6f33f946f9bb20fb75b75e9f715d29f8a0149751387931745d1894d671334911fcb5f61a9fdbc4fc33ade163518f5de9d49ade8420f9e1ffb3400df8c1eed646

diff --git a/www-apps/moodle/moodle-4.2.3-r1.ebuild 
b/www-apps/moodle/moodle-4.2.4.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.2.3-r1.ebuild
rename to www-apps/moodle/moodle-4.2.4.ebuild

diff --git a/www-apps/moodle/moodle-4.3-r1.ebuild 
b/www-apps/moodle/moodle-4.3.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.3-r1.ebuild
rename to www-apps/moodle/moodle-4.3.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-12-08 Thread Arthur Zamarin
commit: 53237684cb22b707547e4a72f0b9bbaf398c1959
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  8 19:58:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  8 20:00:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53237684

www-apps/moodle: unkeyword non mainstream arches

Signed-off-by: Arthur Zamarin  gentoo.org>

 www-apps/moodle/moodle-4.2.3-r1.ebuild | 2 +-
 www-apps/moodle/moodle-4.3-r1.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/moodle/moodle-4.2.3-r1.ebuild 
b/www-apps/moodle/moodle-4.2.3-r1.ebuild
index 96e58da8e115..04ae73cd2ec3 100644
--- a/www-apps/moodle/moodle-4.2.3-r1.ebuild
+++ b/www-apps/moodle/moodle-4.2.3-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"

diff --git a/www-apps/moodle/moodle-4.3-r1.ebuild 
b/www-apps/moodle/moodle-4.3-r1.ebuild
index 96e58da8e115..04ae73cd2ec3 100644
--- a/www-apps/moodle/moodle-4.3-r1.ebuild
+++ b/www-apps/moodle/moodle-4.3-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-10-16 Thread Anthony G. Basile
commit: 794a5e58f623a968a09439083aec4b1530546d1d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Oct 16 14:26:35 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct 16 14:28:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=794a5e58

www-apps/moodle: Depend on either php 8.1 or 8.2

Closes: https://bugs.gentoo.org/915583

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/{moodle-4.2.3.ebuild => moodle-4.2.3-r1.ebuild} | 5 -
 www-apps/moodle/{moodle-4.3.ebuild => moodle-4.3-r1.ebuild} | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/www-apps/moodle/moodle-4.2.3.ebuild 
b/www-apps/moodle/moodle-4.2.3-r1.ebuild
similarity index 94%
rename from www-apps/moodle/moodle-4.2.3.ebuild
rename to www-apps/moodle/moodle-4.2.3-r1.ebuild
index a92c23129f71..96e58da8e115 100644
--- a/www-apps/moodle/moodle-4.2.3.ebuild
+++ b/www-apps/moodle/moodle-4.2.3-r1.ebuild
@@ -39,7 +39,10 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   || (
+   
dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   
dev-lang/php:8.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   )
virtual/httpd-php
virtual/cron"
 

diff --git a/www-apps/moodle/moodle-4.3.ebuild 
b/www-apps/moodle/moodle-4.3-r1.ebuild
similarity index 94%
rename from www-apps/moodle/moodle-4.3.ebuild
rename to www-apps/moodle/moodle-4.3-r1.ebuild
index a92c23129f71..96e58da8e115 100644
--- a/www-apps/moodle/moodle-4.3.ebuild
+++ b/www-apps/moodle/moodle-4.3-r1.ebuild
@@ -39,7 +39,10 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   || (
+   
dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   
dev-lang/php:8.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   )
virtual/httpd-php
virtual/cron"
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-10-10 Thread Anthony G. Basile
commit: 4b3b8a29908f153805df73d6f2c643cd2fe76d03
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Oct 10 13:24:07 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Oct 10 13:24:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3b8a29

www-apps/moodle: add 4.3

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-4.3.ebuild | 120 ++
 2 files changed, 121 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 45fd1486cd68..8395b2f11806 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1 +1,2 @@
 DIST moodle-4.2.3.tgz 65362300 BLAKE2B 
953a010efe4b5b90cddb5538720c164a96554965ca67a386c48c908334fd8ca57c78a6923d9a2332056a1c1b5281b32bfd0203f77c7f42c87cc6674408663a7c
 SHA512 
43352b5f840f012aa3c460adeb1b68e5db5201102157c85449902edda9e95abd94e2aa526251a97e07af4d0e75b82eaa83bd3d6f26718095e10e3cc9956f22ce
+DIST moodle-4.3.tgz 66728529 BLAKE2B 
d4c2bfac6a03f58729a2662b97ff3a08d9153d0c42ea4955c340d2c2f864635622fbf3855e13dd012ac2602e4004d2e80527251477afa9176ea7d4bb83f9e48f
 SHA512 
606d6d9308004fed217a58a7986507f72d4de2e15e0a80ace39060e74baa6f85c1cb78184b8c57a2dac57f223f19a5084be7009085dfe70f32c10dc3dc56

diff --git a/www-apps/moodle/moodle-4.3.ebuild 
b/www-apps/moodle/moodle-4.3.ebuild
new file mode 100644
index ..a92c23129f71
--- /dev/null
+++ b/www-apps/moodle/moodle-4.3.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+
+MY_BRANCH="stable$(ver_cut 1)0$(ver_cut 2)"
+SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   dev-lang/php:8.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
+   dodir ${MOODLEDATA}
+   webapp_serverowned -R "${MOODLEDATA}"
+
+   local MOODLEROOT="${MY_HTDOCSDIR}"
+   insinto ${MOODLEROOT}
+   doins -r *
+
+   webapp_configfile "${MOODLEROOT}"/config.php
+
+   if [[ ${DB_COUNT} -eq 1 ]]; then
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+   else
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-nodb-en.txt
+   fi
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   einfo
+   einfo
+   einfo "To see the post install instructions, do"
+   einfo
+   einfo "webapp-config --show-postinst ${PN} ${PVR}"
+   einfo
+   einfo
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-10-10 Thread Anthony G. Basile
commit: 4cb2763d07a8b8759f686a457d0c13cad2b1c326
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Oct 10 13:15:28 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Oct 10 13:15:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb2763d

www-apps/moodle: add 4.2.3, drop 4.2.2

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-4.2.2.ebuild => moodle-4.2.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 012e01eaffb5..45fd1486cd68 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1 +1 @@
-DIST moodle-4.2.2.tgz 65324589 BLAKE2B 
d11a64482dc9f2ac2acf995883fa1fe3c5b9f611e49324957c5857a4be5deb32fbf78880f12e653816ada4ebf629d3f5587567448b466a475763cd92b0e4d6c9
 SHA512 
b0302a12b90249dd61159cfa552cbf87b7fc7288c5a4c0a1cda657c07e1e988b7c569b2e5c8ce88a5517ac97fd52b20e4c5a1cb37cfd6e94a91edb8d26e51ecd
+DIST moodle-4.2.3.tgz 65362300 BLAKE2B 
953a010efe4b5b90cddb5538720c164a96554965ca67a386c48c908334fd8ca57c78a6923d9a2332056a1c1b5281b32bfd0203f77c7f42c87cc6674408663a7c
 SHA512 
43352b5f840f012aa3c460adeb1b68e5db5201102157c85449902edda9e95abd94e2aa526251a97e07af4d0e75b82eaa83bd3d6f26718095e10e3cc9956f22ce

diff --git a/www-apps/moodle/moodle-4.2.2.ebuild 
b/www-apps/moodle/moodle-4.2.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.2.2.ebuild
rename to www-apps/moodle/moodle-4.2.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-10-10 Thread Anthony G. Basile
commit: 9dd25efa9a6f090f3aeb174f89afb11db60c5f54
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Oct 10 13:13:25 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Oct 10 13:13:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd25efa

www-apps/moodle: drop 3.11.16, 4.0.10, 4.1.5

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   3 -
 www-apps/moodle/moodle-3.11.16.ebuild | 120 -
 www-apps/moodle/moodle-4.0.10.ebuild  | 121 --
 www-apps/moodle/moodle-4.1.5.ebuild   | 120 -
 4 files changed, 364 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index cc16e5d7aa77..012e01eaffb5 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1 @@
-DIST moodle-3.11.16.tgz 60509432 BLAKE2B 
2a48ca1b1fe6e998f472815eac58364a0b4fb0649c4bec0ea2963d4dcf696d515882a567ffb6ba071548a74f8aa21499ec1c1122e93a7dc0be119e63e809
 SHA512 
b0021826169dcea40b3bd4bac1b13506671b8925d7e2de64137089a7f0cea4e076dba5685864309991b80b0882a0fdb4db58eab0bb20e0243e551a3418500111
-DIST moodle-4.0.10.tgz 62193443 BLAKE2B 
268993e3f1ac7de23a8b4c897e340edf603f92ba2fd1dbc9e33f07b8984e51e9054a870e252a1c0bc112f0644399ed019969291622797d363c147cebcc735db9
 SHA512 
b8d9b2b8f326e1460f85f60b0c659ac8e15e26670a0f9eda86453fd7b3d5c25cc1eca4b27f53bfa0ef3a613fabf70d4b97ad64d75509ec9762e6c751b2aa34f6
-DIST moodle-4.1.5.tgz 64870562 BLAKE2B 
162aac932a826378daed6fca40d74c41cc0e1f7bd5732bffba14d10999f5a60074b62d8b3961705504ed6d5bc821d77eb818a320d3a32b3261be587f4ad1b176
 SHA512 
c8860c4988099a5c425ed16bc27439f4ff471ec21b2de606417d46ec8669939e274b8b5ad6db47a4c5864ee31d660c3c6b7b3770a3897d3119cf6578474c82e1
 DIST moodle-4.2.2.tgz 65324589 BLAKE2B 
d11a64482dc9f2ac2acf995883fa1fe3c5b9f611e49324957c5857a4be5deb32fbf78880f12e653816ada4ebf629d3f5587567448b466a475763cd92b0e4d6c9
 SHA512 
b0302a12b90249dd61159cfa552cbf87b7fc7288c5a4c0a1cda657c07e1e988b7c569b2e5c8ce88a5517ac97fd52b20e4c5a1cb37cfd6e94a91edb8d26e51ecd

diff --git a/www-apps/moodle/moodle-3.11.16.ebuild 
b/www-apps/moodle/moodle-3.11.16.ebuild
deleted file mode 100644
index cafeedef2f5b..
--- a/www-apps/moodle/moodle-3.11.16.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# which may live on another server.  These USE flags affect the configuration
-# file and the dependency on php.  However other dbs are possible.  See 
config.php
-# and the moodle documentation for other possibilities.
-DEPEND=""
-RDEPEND="
-   dev-lang/php:8.0[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
-   virtual/httpd-php
-   virtual/cron"
-
-pkg_setup() {
-   webapp_pkg_setup
-
-   # How many dbs were selected? If one and only one, which one is it?
-   MYDB=""
-   DB_COUNT=0
-   for db in ${DB_TYPES}; do
-   if use ${db}; then
-   MYDB=${db}
-   DB_COUNT=$(($DB_COUNT+1))
-   fi
-   done
-
-   if [[ ${DB_COUNT} -eq 0 ]]; then
-   eerror
-   eerror "No database selected in your USE flags,"
-   eerror "You must select at least one."
-   eerror
-   die
-   fi
-
-   if [[ ${DB_COUNT} -gt 1 ]]; then
-   MYDB=""
-   ewarn
-   ewarn "Multiple databases selected in your USE flags,"
-   ewarn "You will have to choose your database manually."
-   ewarn
-   fi
-}
-
-src_prepare() {
-   rm COPYING.txt
-   cp "${FILESDIR}"/config-r1.php config.php
-
-   # Moodle expect pgsql, not postgres
-   MYDB=${MYDB/postgres/pgsql}
-
-   if [[ ${DB_COUNT} -eq 1 ]] ; then
-   sed -i -e "s|mydb|${MYDB}|" config.php
-   fi
-
-   eapply_user
-}
-

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-08-14 Thread Anthony G. Basile
commit: 43864555e2ea6175dda89c422382d93faa932c6f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Aug 14 15:10:50 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Aug 14 15:34:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43864555

www-apps/moodle: 3.11.16, 4.0.10, 4.1.5, 4.2.2

Closes: https://bugs.gentoo.org/887739
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 8 
 www-apps/moodle/{moodle-3.11.15.ebuild => moodle-3.11.16.ebuild} | 6 +++---
 www-apps/moodle/{moodle-4.0.9.ebuild => moodle-4.0.10.ebuild}| 4 ++--
 www-apps/moodle/{moodle-4.2.1.ebuild => moodle-4.1.5.ebuild} | 4 ++--
 www-apps/moodle/{moodle-4.1.4.ebuild => moodle-4.2.2.ebuild} | 4 ++--
 5 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 70b394ab1038..cc16e5d7aa77 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.11.15.tgz 60470865 BLAKE2B 
426d59a1746764e3a61765914a4812db066a9bf6521587139e5e47da6c7007cf5b2374e6e2816f72e9d25ec3de44521947cccbb30469eb55a10aa66ba1b0c92c
 SHA512 
e2b9b6563520f679066fbaead614fd9f8e66fc9b2b983bfe224f1e0b11a6973e3b4d783ea4af31ce095e5192deb7a62550d18bf7ee1e4218b58328a97fd027d6
-DIST moodle-4.0.9.tgz 62185523 BLAKE2B 
92b9ffb5507b65da0e5fc11bb868eaf1d0c99d790866be6e57278d139a51dfc8a5701b40242d0c909c0808c9b9c9e18fa8794f903f7f0e210a9b6e002c21cae9
 SHA512 
016a221bcb20781f8f6e897b2c342af73b79570b056765a7d78fa2c8a93ab35821e4edecc3823cd5ed34dfe81936bd17392f94cbd91c3ea2eee273e43b1b018e
-DIST moodle-4.1.4.tgz 64817301 BLAKE2B 
f9f629afaec55cdc0e345263e210613747b402cbed90f07bce235fad232640ac03b21dad99eee7401ea2c3e6aab50f7a33a78b7ace693643bf81e74c94a01a5b
 SHA512 
84747b725a82f993819864d3dae608d6a2075a6fcd903b3eec1653cb80fbfad7fe3be356088c8b6d41179dac28e24c96af8de04d592b1f9483ecb3355e375722
-DIST moodle-4.2.1.tgz 65290894 BLAKE2B 
cf1f8ff01e5938990eca27b3bc0392526be40cf0b905ce9713c8b020a349ca126e590719e1ec153a0ad4b0387c9573811582e11d320c3f9d4d2b95ec5a99afb8
 SHA512 
bf960540c8ffac082970498379fe449b201b408335fb41dbcca7da645c060164e174c83549522ab35b23d2265c6ab4db810a20a637978c41a82a3b024b593712
+DIST moodle-3.11.16.tgz 60509432 BLAKE2B 
2a48ca1b1fe6e998f472815eac58364a0b4fb0649c4bec0ea2963d4dcf696d515882a567ffb6ba071548a74f8aa21499ec1c1122e93a7dc0be119e63e809
 SHA512 
b0021826169dcea40b3bd4bac1b13506671b8925d7e2de64137089a7f0cea4e076dba5685864309991b80b0882a0fdb4db58eab0bb20e0243e551a3418500111
+DIST moodle-4.0.10.tgz 62193443 BLAKE2B 
268993e3f1ac7de23a8b4c897e340edf603f92ba2fd1dbc9e33f07b8984e51e9054a870e252a1c0bc112f0644399ed019969291622797d363c147cebcc735db9
 SHA512 
b8d9b2b8f326e1460f85f60b0c659ac8e15e26670a0f9eda86453fd7b3d5c25cc1eca4b27f53bfa0ef3a613fabf70d4b97ad64d75509ec9762e6c751b2aa34f6
+DIST moodle-4.1.5.tgz 64870562 BLAKE2B 
162aac932a826378daed6fca40d74c41cc0e1f7bd5732bffba14d10999f5a60074b62d8b3961705504ed6d5bc821d77eb818a320d3a32b3261be587f4ad1b176
 SHA512 
c8860c4988099a5c425ed16bc27439f4ff471ec21b2de606417d46ec8669939e274b8b5ad6db47a4c5864ee31d660c3c6b7b3770a3897d3119cf6578474c82e1
+DIST moodle-4.2.2.tgz 65324589 BLAKE2B 
d11a64482dc9f2ac2acf995883fa1fe3c5b9f611e49324957c5857a4be5deb32fbf78880f12e653816ada4ebf629d3f5587567448b466a475763cd92b0e4d6c9
 SHA512 
b0302a12b90249dd61159cfa552cbf87b7fc7288c5a4c0a1cda657c07e1e988b7c569b2e5c8ce88a5517ac97fd52b20e4c5a1cb37cfd6e94a91edb8d26e51ecd

diff --git a/www-apps/moodle/moodle-3.11.15.ebuild 
b/www-apps/moodle/moodle-3.11.16.ebuild
similarity index 93%
rename from www-apps/moodle/moodle-3.11.15.ebuild
rename to www-apps/moodle/moodle-3.11.16.ebuild
index 20e7fd262412..cafeedef2f5b 100644
--- a/www-apps/moodle/moodle-3.11.15.ebuild
+++ b/www-apps/moodle/moodle-3.11.16.ebuild
@@ -9,7 +9,7 @@ MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
 
 DESCRIPTION="The Moodle Course Management System"
 HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
@@ -25,7 +25,7 @@ AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
 PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 
 IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
@@ -39,7 +39,7 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   dev-lang/php:8.0[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
virtual/httpd-php
virtual/cron"
 

diff --git a/www-apps/moodle/moodle-4.0.9.ebuild 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-06-12 Thread Anthony G. Basile
commit: a456847250aa855d65ea28591197c38a40ce12ca
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jun 12 15:29:37 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jun 12 15:29:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4568472

www-apps/moodle: bump to 3.11.15, 4.0.9, 4.1.4, 4.2.1

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 7 ---
 www-apps/moodle/{moodle-3.11.14.ebuild => moodle-3.11.15.ebuild} | 0
 www-apps/moodle/{moodle-4.0.8.ebuild => moodle-4.0.9.ebuild} | 0
 www-apps/moodle/{moodle-4.1.3.ebuild => moodle-4.1.4.ebuild} | 0
 www-apps/moodle/{moodle-4.1.3.ebuild => moodle-4.2.1.ebuild} | 0
 5 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 2e04cbb3afdc..70b394ab1038 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
-DIST moodle-3.11.14.tgz 60478380 BLAKE2B 
6269137c677718c195b80d9ce1bfac950530ca6f643a815acbdc9526e074f831bfe9f10f85ceb8978d42975be44e0598f76cf248ea9f186ea354dd5d733de00b
 SHA512 
66ce864acc58150c22e53ea41094d4c360211e3e9c9968e2791422fd2ecdbc30a6dee52839af53480b510ebab4f5ce02af2c7d9280c60df7155c8b9ed161465f
-DIST moodle-4.0.8.tgz 62157002 BLAKE2B 
d8f3c7f7f788dc4936d51c6e1743ff16fc2f88cb314105415948321dc8630cd32c5d691d9883e0110bb7107b63c183b005c04ae56ac8491bbcc372ad2372b2c2
 SHA512 
f7f7db93739838f91293fb7942743b80f7c354b71873daf45e218cf8aab2ebb7828ae1d8bc3f4396ffd0622b58131e255b71109e1c28e9bb1c320af849f18586
-DIST moodle-4.1.3.tgz 64785314 BLAKE2B 
8e8695a9d45430e2b1a3d5465853294a40fa8ceaa2cabe875f8fb442035955c61abffbe516a804e5fa3e626dfb0a4f2f23f68ed096fe8677c03e9c86f0cee148
 SHA512 
efdb6717bc8c57a950ddb0e617c3e08b81b6748cfcd77422ddf30b10a93d27d35237e5baa747e44276d7611dbb5ec7f5d0a0eabeacd2ba4043c9f8a92cabebe3
+DIST moodle-3.11.15.tgz 60470865 BLAKE2B 
426d59a1746764e3a61765914a4812db066a9bf6521587139e5e47da6c7007cf5b2374e6e2816f72e9d25ec3de44521947cccbb30469eb55a10aa66ba1b0c92c
 SHA512 
e2b9b6563520f679066fbaead614fd9f8e66fc9b2b983bfe224f1e0b11a6973e3b4d783ea4af31ce095e5192deb7a62550d18bf7ee1e4218b58328a97fd027d6
+DIST moodle-4.0.9.tgz 62185523 BLAKE2B 
92b9ffb5507b65da0e5fc11bb868eaf1d0c99d790866be6e57278d139a51dfc8a5701b40242d0c909c0808c9b9c9e18fa8794f903f7f0e210a9b6e002c21cae9
 SHA512 
016a221bcb20781f8f6e897b2c342af73b79570b056765a7d78fa2c8a93ab35821e4edecc3823cd5ed34dfe81936bd17392f94cbd91c3ea2eee273e43b1b018e
+DIST moodle-4.1.4.tgz 64817301 BLAKE2B 
f9f629afaec55cdc0e345263e210613747b402cbed90f07bce235fad232640ac03b21dad99eee7401ea2c3e6aab50f7a33a78b7ace693643bf81e74c94a01a5b
 SHA512 
84747b725a82f993819864d3dae608d6a2075a6fcd903b3eec1653cb80fbfad7fe3be356088c8b6d41179dac28e24c96af8de04d592b1f9483ecb3355e375722
+DIST moodle-4.2.1.tgz 65290894 BLAKE2B 
cf1f8ff01e5938990eca27b3bc0392526be40cf0b905ce9713c8b020a349ca126e590719e1ec153a0ad4b0387c9573811582e11d320c3f9d4d2b95ec5a99afb8
 SHA512 
bf960540c8ffac082970498379fe449b201b408335fb41dbcca7da645c060164e174c83549522ab35b23d2265c6ab4db810a20a637978c41a82a3b024b593712

diff --git a/www-apps/moodle/moodle-3.11.14.ebuild 
b/www-apps/moodle/moodle-3.11.15.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.14.ebuild
rename to www-apps/moodle/moodle-3.11.15.ebuild

diff --git a/www-apps/moodle/moodle-4.0.8.ebuild 
b/www-apps/moodle/moodle-4.0.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.0.8.ebuild
rename to www-apps/moodle/moodle-4.0.9.ebuild

diff --git a/www-apps/moodle/moodle-4.1.3.ebuild 
b/www-apps/moodle/moodle-4.1.4.ebuild
similarity index 100%
copy from www-apps/moodle/moodle-4.1.3.ebuild
copy to www-apps/moodle/moodle-4.1.4.ebuild

diff --git a/www-apps/moodle/moodle-4.1.3.ebuild 
b/www-apps/moodle/moodle-4.2.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.1.3.ebuild
rename to www-apps/moodle/moodle-4.2.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-04-26 Thread Anthony G. Basile
commit: 1f17294add816cae7fea0f1528b3e7c995f6c162
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Apr 26 19:51:41 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Apr 26 19:52:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f17294a

www-apps/moodle: version bumps to 3.11.13, 4.0.8, 4.1.3

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.11.13.ebuild => moodle-3.11.14.ebuild} | 0
 www-apps/moodle/{moodle-4.0.7.ebuild => moodle-4.0.8.ebuild} | 0
 www-apps/moodle/{moodle-4.1.2.ebuild => moodle-4.1.3.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 28ae02b5e064..2e04cbb3afdc 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.11.13.tgz 60462198 BLAKE2B 
451a5be95581800a8ce4398f7662d26d9e5d342928f795b2dd455421672b68b2e45ac153380d32444810ec58baabad69edb92b90b1ed7f1377584b62b2514fdb
 SHA512 
41a6f1cf3fd070d91116d85366183842719b9778c06490ecce2d25ac8c595837bc11fe56d65b0240dd7e266546de35838691a7a7442dbe8cac8d2e783637
-DIST moodle-4.0.7.tgz 62152679 BLAKE2B 
0a8b009739e3e374ff7509031735b6b7f9348f444989829d254a1d4e3ac67e1de0468cce8f3ea15c803ad579589ad6f007fd3a28939f08533e22ac7378d6b608
 SHA512 
96a6568cfb47059d08eab263b7d1eeb8af3fb658d9b7d8f971af7edb58f90841a32f2b059fe4a827d8c8e334f90169469c19646e30b32c66bd7d3ef9198e0281
-DIST moodle-4.1.2.tgz 64821129 BLAKE2B 
de85bcbc50edfe32fd3184ef7deb1a9845184ed06d2d5af4d987c767d90a0e96bf772ffa9ddd402f19b65de296bef2c890cd6fb2ac34b7618055fa938cd422d4
 SHA512 
282fb25a1bdf169eaf3590b65df8a9cc9428f75874867653f5467cb56e163d11130100ea9cf8e5f9cd8f39a26eb6a41764c797d72da774beba850d668829fe6c
+DIST moodle-3.11.14.tgz 60478380 BLAKE2B 
6269137c677718c195b80d9ce1bfac950530ca6f643a815acbdc9526e074f831bfe9f10f85ceb8978d42975be44e0598f76cf248ea9f186ea354dd5d733de00b
 SHA512 
66ce864acc58150c22e53ea41094d4c360211e3e9c9968e2791422fd2ecdbc30a6dee52839af53480b510ebab4f5ce02af2c7d9280c60df7155c8b9ed161465f
+DIST moodle-4.0.8.tgz 62157002 BLAKE2B 
d8f3c7f7f788dc4936d51c6e1743ff16fc2f88cb314105415948321dc8630cd32c5d691d9883e0110bb7107b63c183b005c04ae56ac8491bbcc372ad2372b2c2
 SHA512 
f7f7db93739838f91293fb7942743b80f7c354b71873daf45e218cf8aab2ebb7828ae1d8bc3f4396ffd0622b58131e255b71109e1c28e9bb1c320af849f18586
+DIST moodle-4.1.3.tgz 64785314 BLAKE2B 
8e8695a9d45430e2b1a3d5465853294a40fa8ceaa2cabe875f8fb442035955c61abffbe516a804e5fa3e626dfb0a4f2f23f68ed096fe8677c03e9c86f0cee148
 SHA512 
efdb6717bc8c57a950ddb0e617c3e08b81b6748cfcd77422ddf30b10a93d27d35237e5baa747e44276d7611dbb5ec7f5d0a0eabeacd2ba4043c9f8a92cabebe3

diff --git a/www-apps/moodle/moodle-3.11.13.ebuild 
b/www-apps/moodle/moodle-3.11.14.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.13.ebuild
rename to www-apps/moodle/moodle-3.11.14.ebuild

diff --git a/www-apps/moodle/moodle-4.0.7.ebuild 
b/www-apps/moodle/moodle-4.0.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.0.7.ebuild
rename to www-apps/moodle/moodle-4.0.8.ebuild

diff --git a/www-apps/moodle/moodle-4.1.2.ebuild 
b/www-apps/moodle/moodle-4.1.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.1.2.ebuild
rename to www-apps/moodle/moodle-4.1.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-03-13 Thread Anthony G. Basile
commit: 68ba321cf3e26d00685b449687f89fcaab7d328c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 13 15:15:54 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 13 15:17:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ba321c

www-apps/moodle: version bumps to 3.11.13, 4.0.7, 4.1.2

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.11.12.ebuild => moodle-3.11.13.ebuild} | 0
 www-apps/moodle/{moodle-4.0.6.ebuild => moodle-4.0.7.ebuild} | 0
 www-apps/moodle/{moodle-4.1.1.ebuild => moodle-4.1.2.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index b358ff229a6e..28ae02b5e064 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.11.12.tgz 60456820 BLAKE2B 
702a3352e64a5f1b1e0713474f8b5297410dbc5e57aa8902471f7d4f8c7fbae0503fc4addc55b89345858fa25492305048c401eec77ab2ebdd773ed3d878496d
 SHA512 
92d299f798956d05cb82f05e930d3ec21685b12a58e0105a8bfb7ac996c10b18870b8dd17ebefb6cc9518d360d02976e1de6f303d15630d886df7aac46d05708
-DIST moodle-4.0.6.tgz 62119193 BLAKE2B 
5ba5d48fc741f9c51cf5621c9143614b5eb50d5f0ae79b36bf320a83d90214779d915485211d00041cc96b92a72d5a133313f087d78c38120c8b948fd5236a58
 SHA512 
d6454913ac53a7505abed81b1db8389513218065502e3a5625d2b58cdd534e97603a190d58e7c1fc9b11dae833d81025dd8ca12ae483879c9f22e2a01e531447
-DIST moodle-4.1.1.tgz 64758192 BLAKE2B 
2632c1524208001030f9baa92f2c487d7bf3feb205ee26ce8360ddd9e1b67424f110095eb82441ad6175115d71b80a3147c06abcc2be476236410cc3982896e9
 SHA512 
a636ac66da040bd90cd7da6d40f76454b78b625b583eec105204e574b54711d7709821abe83d5fc85738737ec21b418e4ba0847b1de1937a7ebf3a990dbf7e17
+DIST moodle-3.11.13.tgz 60462198 BLAKE2B 
451a5be95581800a8ce4398f7662d26d9e5d342928f795b2dd455421672b68b2e45ac153380d32444810ec58baabad69edb92b90b1ed7f1377584b62b2514fdb
 SHA512 
41a6f1cf3fd070d91116d85366183842719b9778c06490ecce2d25ac8c595837bc11fe56d65b0240dd7e266546de35838691a7a7442dbe8cac8d2e783637
+DIST moodle-4.0.7.tgz 62152679 BLAKE2B 
0a8b009739e3e374ff7509031735b6b7f9348f444989829d254a1d4e3ac67e1de0468cce8f3ea15c803ad579589ad6f007fd3a28939f08533e22ac7378d6b608
 SHA512 
96a6568cfb47059d08eab263b7d1eeb8af3fb658d9b7d8f971af7edb58f90841a32f2b059fe4a827d8c8e334f90169469c19646e30b32c66bd7d3ef9198e0281
+DIST moodle-4.1.2.tgz 64821129 BLAKE2B 
de85bcbc50edfe32fd3184ef7deb1a9845184ed06d2d5af4d987c767d90a0e96bf772ffa9ddd402f19b65de296bef2c890cd6fb2ac34b7618055fa938cd422d4
 SHA512 
282fb25a1bdf169eaf3590b65df8a9cc9428f75874867653f5467cb56e163d11130100ea9cf8e5f9cd8f39a26eb6a41764c797d72da774beba850d668829fe6c

diff --git a/www-apps/moodle/moodle-3.11.12.ebuild 
b/www-apps/moodle/moodle-3.11.13.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.12.ebuild
rename to www-apps/moodle/moodle-3.11.13.ebuild

diff --git a/www-apps/moodle/moodle-4.0.6.ebuild 
b/www-apps/moodle/moodle-4.0.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.0.6.ebuild
rename to www-apps/moodle/moodle-4.0.7.ebuild

diff --git a/www-apps/moodle/moodle-4.1.1.ebuild 
b/www-apps/moodle/moodle-4.1.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.1.1.ebuild
rename to www-apps/moodle/moodle-4.1.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-01-30 Thread Anthony G. Basile
commit: d628dfb1c4e1dc31d20fafd67b10754749928947
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 30 16:32:19 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 30 16:32:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d628dfb1

www-apps/moodle: add 4.1.1

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest|   1 +
 www-apps/moodle/moodle-4.1.1.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 5ad57bb323e5..b358ff229a6e 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,3 @@
 DIST moodle-3.11.12.tgz 60456820 BLAKE2B 
702a3352e64a5f1b1e0713474f8b5297410dbc5e57aa8902471f7d4f8c7fbae0503fc4addc55b89345858fa25492305048c401eec77ab2ebdd773ed3d878496d
 SHA512 
92d299f798956d05cb82f05e930d3ec21685b12a58e0105a8bfb7ac996c10b18870b8dd17ebefb6cc9518d360d02976e1de6f303d15630d886df7aac46d05708
 DIST moodle-4.0.6.tgz 62119193 BLAKE2B 
5ba5d48fc741f9c51cf5621c9143614b5eb50d5f0ae79b36bf320a83d90214779d915485211d00041cc96b92a72d5a133313f087d78c38120c8b948fd5236a58
 SHA512 
d6454913ac53a7505abed81b1db8389513218065502e3a5625d2b58cdd534e97603a190d58e7c1fc9b11dae833d81025dd8ca12ae483879c9f22e2a01e531447
+DIST moodle-4.1.1.tgz 64758192 BLAKE2B 
2632c1524208001030f9baa92f2c487d7bf3feb205ee26ce8360ddd9e1b67424f110095eb82441ad6175115d71b80a3147c06abcc2be476236410cc3982896e9
 SHA512 
a636ac66da040bd90cd7da6d40f76454b78b625b583eec105204e574b54711d7709821abe83d5fc85738737ec21b418e4ba0847b1de1937a7ebf3a990dbf7e17

diff --git a/www-apps/moodle/moodle-4.1.1.ebuild 
b/www-apps/moodle/moodle-4.1.1.ebuild
new file mode 100644
index ..0557b7cafcb2
--- /dev/null
+++ b/www-apps/moodle/moodle-4.1.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+
+MY_BRANCH="stable$(ver_cut 1)0$(ver_cut 2)"
+SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
+   dodir ${MOODLEDATA}
+   webapp_serverowned -R "${MOODLEDATA}"
+
+   local MOODLEROOT="${MY_HTDOCSDIR}"
+   insinto ${MOODLEROOT}
+   doins -r *
+
+   webapp_configfile "${MOODLEROOT}"/config.php
+
+   if [[ ${DB_COUNT} -eq 1 ]]; then
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+   else
+   webapp_postinst_txt en 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-01-30 Thread Anthony G. Basile
commit: 67555c056e7f018804d658d41d783a59c6313e42
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 30 14:04:58 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 30 14:04:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67555c05

www-apps/moodle: bump to 3.11.12, 4.0.6

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 4 ++--
 www-apps/moodle/{moodle-3.11.10.ebuild => moodle-3.11.12.ebuild} | 2 +-
 www-apps/moodle/{moodle-4.0.4.ebuild => moodle-4.0.6.ebuild} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 401051f514bb..5ad57bb323e5 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,2 @@
-DIST moodle-3.11.10.tgz 60320974 BLAKE2B 
32de17a625742bc33e75d662c550682a45099b7af1e86411eecc0d8a745dbfeef2361eca3cea2d048e21dd75af40e9143534ab09db24162089f2ad404b4b54a4
 SHA512 
10c1e450dee96a1261b25882238381930297aa4e4f9a993e3932908ed2356d65facb5e06500dbd98c83a4022514c0ad1ad6305911241412985758fa29b5dd7a8
-DIST moodle-4.0.4.tgz 61899291 BLAKE2B 
82c18a8c89e7eb09a942f236640f49c414310c138d7cf2a9951c9759bea67f943f53257cefd5d693ec58a6af1e8eb6ae57a864d7772ea35a7592111d7be67cb0
 SHA512 
4284c05946dd07e43dbc7c584d7b3a69f62cfebf3cf6b2d049c6dea72ce184aaa0b4e6efb49817c8967ac8ff9dbce0ab2cf5fb2e96033d4368ed617ee258ffd8
+DIST moodle-3.11.12.tgz 60456820 BLAKE2B 
702a3352e64a5f1b1e0713474f8b5297410dbc5e57aa8902471f7d4f8c7fbae0503fc4addc55b89345858fa25492305048c401eec77ab2ebdd773ed3d878496d
 SHA512 
92d299f798956d05cb82f05e930d3ec21685b12a58e0105a8bfb7ac996c10b18870b8dd17ebefb6cc9518d360d02976e1de6f303d15630d886df7aac46d05708
+DIST moodle-4.0.6.tgz 62119193 BLAKE2B 
5ba5d48fc741f9c51cf5621c9143614b5eb50d5f0ae79b36bf320a83d90214779d915485211d00041cc96b92a72d5a133313f087d78c38120c8b948fd5236a58
 SHA512 
d6454913ac53a7505abed81b1db8389513218065502e3a5625d2b58cdd534e97603a190d58e7c1fc9b11dae833d81025dd8ca12ae483879c9f22e2a01e531447

diff --git a/www-apps/moodle/moodle-3.11.10.ebuild 
b/www-apps/moodle/moodle-3.11.12.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.11.10.ebuild
rename to www-apps/moodle/moodle-3.11.12.ebuild
index 6663660f3cdc..20e7fd262412 100644
--- a/www-apps/moodle/moodle-3.11.10.ebuild
+++ b/www-apps/moodle/moodle-3.11.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-4.0.4.ebuild 
b/www-apps/moodle/moodle-4.0.6.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-4.0.4.ebuild
rename to www-apps/moodle/moodle-4.0.6.ebuild
index 5ab1c6f25ece..84bcff745360 100644
--- a/www-apps/moodle/moodle-4.0.4.ebuild
+++ b/www-apps/moodle/moodle-4.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2023-01-30 Thread Anthony G. Basile
commit: cfdd47749fcfed9d3fd5b20ebc9f00c975303cee
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 30 13:31:13 2023 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 30 13:32:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdd4774

www-apps/moodle: drop 3.9.17

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest |   1 -
 www-apps/moodle/moodle-3.9.17.ebuild | 120 ---
 2 files changed, 121 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 1abc7bf5aacf..401051f514bb 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,2 @@
 DIST moodle-3.11.10.tgz 60320974 BLAKE2B 
32de17a625742bc33e75d662c550682a45099b7af1e86411eecc0d8a745dbfeef2361eca3cea2d048e21dd75af40e9143534ab09db24162089f2ad404b4b54a4
 SHA512 
10c1e450dee96a1261b25882238381930297aa4e4f9a993e3932908ed2356d65facb5e06500dbd98c83a4022514c0ad1ad6305911241412985758fa29b5dd7a8
-DIST moodle-3.9.17.tgz 56753985 BLAKE2B 
695ba04f2d2158c3528e0ffdbe09b6c7237a8a79d65a4bf673d6d677d18c8731a1034c403e1f2315922d3b4090645dcfc6df4b857a1e8352d89037e9497df4c2
 SHA512 
42f23bc97e7e78668a046b11a72b346d1188d92340ade0cb55ea6a391d8174f443d2b89d646c67a778b9dff33dcac8cf5b2b0a3dead84bc6cdecdaa3bdc83143
 DIST moodle-4.0.4.tgz 61899291 BLAKE2B 
82c18a8c89e7eb09a942f236640f49c414310c138d7cf2a9951c9759bea67f943f53257cefd5d693ec58a6af1e8eb6ae57a864d7772ea35a7592111d7be67cb0
 SHA512 
4284c05946dd07e43dbc7c584d7b3a69f62cfebf3cf6b2d049c6dea72ce184aaa0b4e6efb49817c8967ac8ff9dbce0ab2cf5fb2e96033d4368ed617ee258ffd8

diff --git a/www-apps/moodle/moodle-3.9.17.ebuild 
b/www-apps/moodle/moodle-3.9.17.ebuild
deleted file mode 100644
index 6663660f3cdc..
--- a/www-apps/moodle/moodle-3.9.17.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# which may live on another server.  These USE flags affect the configuration
-# file and the dependency on php.  However other dbs are possible.  See 
config.php
-# and the moodle documentation for other possibilities.
-DEPEND=""
-RDEPEND="
-   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
-   virtual/httpd-php
-   virtual/cron"
-
-pkg_setup() {
-   webapp_pkg_setup
-
-   # How many dbs were selected? If one and only one, which one is it?
-   MYDB=""
-   DB_COUNT=0
-   for db in ${DB_TYPES}; do
-   if use ${db}; then
-   MYDB=${db}
-   DB_COUNT=$(($DB_COUNT+1))
-   fi
-   done
-
-   if [[ ${DB_COUNT} -eq 0 ]]; then
-   eerror
-   eerror "No database selected in your USE flags,"
-   eerror "You must select at least one."
-   eerror
-   die
-   fi
-
-   if [[ ${DB_COUNT} -gt 1 ]]; then
-   MYDB=""
-   ewarn
-   ewarn "Multiple databases selected in your USE flags,"
-   ewarn "You will have to choose your database manually."
-   ewarn
-   fi
-}
-
-src_prepare() {
-   rm COPYING.txt
-   cp "${FILESDIR}"/config-r1.php config.php
-
-   # Moodle expect pgsql, not postgres
-   MYDB=${MYDB/postgres/pgsql}
-
-   if [[ ${DB_COUNT} -eq 1 ]] ; then
-   sed -i -e "s|mydb|${MYDB}|" config.php
-   fi
-
-   eapply_user
-}
-
-src_install() {
-   webapp_src_preinst
-
-   local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
-   dodir ${MOODLEDATA}
-   webapp_serverowned -R "${MOODLEDATA}"
-
-   local MOODLEROOT="${MY_HTDOCSDIR}"
-   insinto ${MOODLEROOT}
-   doins -r *
-
-   webapp_configfile "${MOODLEROOT}"/config.php
-
-   if [[ ${DB_COUNT} -eq 1 ]]; then
-   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-   else
-   webapp_postinst_txt en 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-09-14 Thread Anthony G. Basile
commit: 61772832f3a2bef04f8cb6bf5c1745c0c65cbc4e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Sep 15 00:20:49 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Sep 15 00:22:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61772832

www-apps/moodle: version bumps to 3.9.17, 3.11.10, 4.0.4

Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest| 6 +++---
 www-apps/moodle/{moodle-3.11.9.ebuild => moodle-3.11.10.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.9.16.ebuild => moodle-3.9.17.ebuild}  | 2 +-
 www-apps/moodle/{moodle-4.0.3.ebuild => moodle-4.0.4.ebuild}| 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 11e92efda365..1abc7bf5aacf 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.11.9.tgz 60315325 BLAKE2B 
c3ab1fef4b83e584fab62104063ea89d7ee44662bd694debb35c5b100678e015fd09e7a20e16681a4fc3d9b535c07dc2421dcac0cd42503f576ba5ff65b2a641
 SHA512 
fc20d5428767f742e2ac8b2fa1f187518caca3c402c7ef14cabe6272cb3fa0bf3d17ec898120f58b0127676e13b73487117cca5bf22a97522793417bebf31f1a
-DIST moodle-3.9.16.tgz 56754668 BLAKE2B 
63a0ec7d7225fbb7875be8590123c95da98661f05a6a8757c6e441596c148deeea39898c8ec16ce889a1c427ae3d9ec53b222bce7c364cdc04c2c286ef278de1
 SHA512 
0470f773fd36308ce9134e674d21c4e024764f41cb0daae230a565b9b1d783c7074b382f60a27ed75b36964cba7928806a1acd18ad0fdf215284a01142f71a4e
-DIST moodle-4.0.3.tgz 61902060 BLAKE2B 
860dbbb097a44c17c9e2c9df629ecd8ca8db97e9f858e1598a9fca8a7c928b1a7465eaf788ae086f940bab6f0858c9bee0ec2c453dfece5ceafc788cab972b28
 SHA512 
108d2d3b7a7a3b5ac0fa9cccbcc28b2356be7cdfab7d43a361545904eba0897a6687758b517269fe75b37bc34334ce285fc0d761ecfc0293830c4a2f197265ef
+DIST moodle-3.11.10.tgz 60320974 BLAKE2B 
32de17a625742bc33e75d662c550682a45099b7af1e86411eecc0d8a745dbfeef2361eca3cea2d048e21dd75af40e9143534ab09db24162089f2ad404b4b54a4
 SHA512 
10c1e450dee96a1261b25882238381930297aa4e4f9a993e3932908ed2356d65facb5e06500dbd98c83a4022514c0ad1ad6305911241412985758fa29b5dd7a8
+DIST moodle-3.9.17.tgz 56753985 BLAKE2B 
695ba04f2d2158c3528e0ffdbe09b6c7237a8a79d65a4bf673d6d677d18c8731a1034c403e1f2315922d3b4090645dcfc6df4b857a1e8352d89037e9497df4c2
 SHA512 
42f23bc97e7e78668a046b11a72b346d1188d92340ade0cb55ea6a391d8174f443d2b89d646c67a778b9dff33dcac8cf5b2b0a3dead84bc6cdecdaa3bdc83143
+DIST moodle-4.0.4.tgz 61899291 BLAKE2B 
82c18a8c89e7eb09a942f236640f49c414310c138d7cf2a9951c9759bea67f943f53257cefd5d693ec58a6af1e8eb6ae57a864d7772ea35a7592111d7be67cb0
 SHA512 
4284c05946dd07e43dbc7c584d7b3a69f62cfebf3cf6b2d049c6dea72ce184aaa0b4e6efb49817c8967ac8ff9dbce0ab2cf5fb2e96033d4368ed617ee258ffd8

diff --git a/www-apps/moodle/moodle-3.11.9.ebuild 
b/www-apps/moodle/moodle-3.11.10.ebuild
similarity index 97%
rename from www-apps/moodle/moodle-3.11.9.ebuild
rename to www-apps/moodle/moodle-3.11.10.ebuild
index 36f762e3e63b..6663660f3cdc 100644
--- a/www-apps/moodle/moodle-3.11.9.ebuild
+++ b/www-apps/moodle/moodle-3.11.10.ebuild
@@ -39,7 +39,7 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   >=dev-lang/php-7.3[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
virtual/httpd-php
virtual/cron"
 

diff --git a/www-apps/moodle/moodle-3.9.16.ebuild 
b/www-apps/moodle/moodle-3.9.17.ebuild
similarity index 97%
rename from www-apps/moodle/moodle-3.9.16.ebuild
rename to www-apps/moodle/moodle-3.9.17.ebuild
index 7dd5a9861c83..6663660f3cdc 100644
--- a/www-apps/moodle/moodle-3.9.16.ebuild
+++ b/www-apps/moodle/moodle-3.9.17.ebuild
@@ -39,7 +39,7 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   >=dev-lang/php-7.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
virtual/httpd-php
virtual/cron"
 

diff --git a/www-apps/moodle/moodle-4.0.3.ebuild 
b/www-apps/moodle/moodle-4.0.4.ebuild
similarity index 97%
rename from www-apps/moodle/moodle-4.0.3.ebuild
rename to www-apps/moodle/moodle-4.0.4.ebuild
index db15d5ab03ce..5ab1c6f25ece 100644
--- a/www-apps/moodle/moodle-4.0.3.ebuild
+++ b/www-apps/moodle/moodle-4.0.4.ebuild
@@ -40,7 +40,7 @@ IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   >=dev-lang/php-7.3[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   dev-lang/php:7.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
virtual/httpd-php
virtual/cron"
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-08-22 Thread Sam James
commit: 23f85c07a8c8a253132c861bff96d4fd0d2019d0
Author: Sam James  gentoo  org>
AuthorDate: Tue Aug 23 01:16:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Aug 23 01:16:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f85c07

www-apps/moodle: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 www-apps/moodle/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/www-apps/moodle/metadata.xml b/www-apps/moodle/metadata.xml
index 54a254035e86..50ddb9ce55d6 100644
--- a/www-apps/moodle/metadata.xml
+++ b/www-apps/moodle/metadata.xml
@@ -10,4 +10,7 @@
Gentoo Webapps


+   
+   moodle/moodle
+   
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-08-22 Thread Anthony G. Basile
commit: 93ab003dbbf7ad020c621f54a8751063a1317f7d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Aug 22 16:40:31 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Aug 22 16:40:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ab003d

www-apps/moodle: version bumps 3.9.16, 3.11.9, 4.0.3

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   7 +-
 .../{moodle-3.11.8.ebuild => moodle-3.11.9.ebuild} |   0
 .../{moodle-3.9.15.ebuild => moodle-3.9.16.ebuild} |   0
 www-apps/moodle/moodle-4.0.2.ebuild| 121 -
 ...{moodle-4.0.2-r1.ebuild => moodle-4.0.3.ebuild} |   0
 5 files changed, 3 insertions(+), 125 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 94408feab15a..11e92efda365 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,3 @@
-DIST moodle-3.11.8.tgz 60299874 BLAKE2B 
315e22a3080b90cb946074c2c53a97ddfdb13f942a41e21d8f21e8520fa7442e85ec4485b5230dbdd1e2b8a8bc69371280c32f36d5819abe4e600eed18bb0ade
 SHA512 
b866eb08d2744ec39eed3d1cd11b98b459785a72dabb2f5069fdea3a333146646bddea5dbb7765ee67d604501253371e8a02b38a7aa5b76dd1750aa8dc4f30b2
-DIST moodle-3.9.15.tgz 56746257 BLAKE2B 
f912749d568ea20a432ca9312e4e689cd38462b6737377af01655fc7fe13b7345f34eb1651c70d6584675089694f78c66de0523dd3fcfa26228c1b5eedaafb8a
 SHA512 
fc61f82455faa1d6fee5f3e99574c1d69c9e967e8f85dcbc06a53db4b3d57d56af37c1c4f90338d081e76e40a938902cce8787f9e14c959a1088d2b8936fd74c
-DIST moodle-4.0.2.tgz 61878566 BLAKE2B 
6711f1a9d41b797bafd2ee7e5ceb0851bdec3c817c26af5c70cb030c7df65975bfec13306b995fe73431e77924e90cea59a64d6709f2f8f6d33e2dfbc9110f10
 SHA512 
f485c8b609a47de26406df5d19441da0b7762759b4b59eb06855a80495c6617f19f60d758541dba71c92a89df77f68db6e2026ee284bda8104fbfd1331eaf2a0
-DIST moodle-4.0.tgz 61778671 BLAKE2B 
426b0977d9c78055465fd752ea20a29c0f9c715cc513d3cb377f74e58cd3b3be01cafe93e2ba77222f097f2f13594ff645b5150d31b50493556b899587798400
 SHA512 
a104cfcc3616cb5d97382cf387ef13d89ea73e7b0a2f71f0bbd8cabc1df5828476091f0ab0a2e3f5962f4c8bb9d3019e3f226ec808fad670c5777cc87bd3d70c
+DIST moodle-3.11.9.tgz 60315325 BLAKE2B 
c3ab1fef4b83e584fab62104063ea89d7ee44662bd694debb35c5b100678e015fd09e7a20e16681a4fc3d9b535c07dc2421dcac0cd42503f576ba5ff65b2a641
 SHA512 
fc20d5428767f742e2ac8b2fa1f187518caca3c402c7ef14cabe6272cb3fa0bf3d17ec898120f58b0127676e13b73487117cca5bf22a97522793417bebf31f1a
+DIST moodle-3.9.16.tgz 56754668 BLAKE2B 
63a0ec7d7225fbb7875be8590123c95da98661f05a6a8757c6e441596c148deeea39898c8ec16ce889a1c427ae3d9ec53b222bce7c364cdc04c2c286ef278de1
 SHA512 
0470f773fd36308ce9134e674d21c4e024764f41cb0daae230a565b9b1d783c7074b382f60a27ed75b36964cba7928806a1acd18ad0fdf215284a01142f71a4e
+DIST moodle-4.0.3.tgz 61902060 BLAKE2B 
860dbbb097a44c17c9e2c9df629ecd8ca8db97e9f858e1598a9fca8a7c928b1a7465eaf788ae086f940bab6f0858c9bee0ec2c453dfece5ceafc788cab972b28
 SHA512 
108d2d3b7a7a3b5ac0fa9cccbcc28b2356be7cdfab7d43a361545904eba0897a6687758b517269fe75b37bc34334ce285fc0d761ecfc0293830c4a2f197265ef

diff --git a/www-apps/moodle/moodle-3.11.8.ebuild 
b/www-apps/moodle/moodle-3.11.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.8.ebuild
rename to www-apps/moodle/moodle-3.11.9.ebuild

diff --git a/www-apps/moodle/moodle-3.9.15.ebuild 
b/www-apps/moodle/moodle-3.9.16.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.15.ebuild
rename to www-apps/moodle/moodle-3.9.16.ebuild

diff --git a/www-apps/moodle/moodle-4.0.2.ebuild 
b/www-apps/moodle/moodle-4.0.2.ebuild
deleted file mode 100644
index 7712f6dc98aa..
--- a/www-apps/moodle/moodle-4.0.2.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-
-#MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-#SRC_URI="https://download.moodle.org/downlaod.php/direct/${MY_BRANCH}/${P}.tgz;
-SRC_URI="https://download.moodle.org/download.php/direct/stable400/moodle-4.0.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-07-14 Thread Sam James
commit: 5a4e089eb718040ca8110e9e7c9c8b45c97b4ca3
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 14 00:39:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 14 00:40:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a4e089e

www-apps/moodle: fix downloaded version

Closes: https://bugs.gentoo.org/857873
Signed-off-by: Sam James  gentoo.org>

 www-apps/moodle/Manifest   |   1 +
 www-apps/moodle/moodle-4.0.2-r1.ebuild | 121 +
 2 files changed, 122 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 707534601b9a..94408feab15a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
 DIST moodle-3.11.8.tgz 60299874 BLAKE2B 
315e22a3080b90cb946074c2c53a97ddfdb13f942a41e21d8f21e8520fa7442e85ec4485b5230dbdd1e2b8a8bc69371280c32f36d5819abe4e600eed18bb0ade
 SHA512 
b866eb08d2744ec39eed3d1cd11b98b459785a72dabb2f5069fdea3a333146646bddea5dbb7765ee67d604501253371e8a02b38a7aa5b76dd1750aa8dc4f30b2
 DIST moodle-3.9.15.tgz 56746257 BLAKE2B 
f912749d568ea20a432ca9312e4e689cd38462b6737377af01655fc7fe13b7345f34eb1651c70d6584675089694f78c66de0523dd3fcfa26228c1b5eedaafb8a
 SHA512 
fc61f82455faa1d6fee5f3e99574c1d69c9e967e8f85dcbc06a53db4b3d57d56af37c1c4f90338d081e76e40a938902cce8787f9e14c959a1088d2b8936fd74c
+DIST moodle-4.0.2.tgz 61878566 BLAKE2B 
6711f1a9d41b797bafd2ee7e5ceb0851bdec3c817c26af5c70cb030c7df65975bfec13306b995fe73431e77924e90cea59a64d6709f2f8f6d33e2dfbc9110f10
 SHA512 
f485c8b609a47de26406df5d19441da0b7762759b4b59eb06855a80495c6617f19f60d758541dba71c92a89df77f68db6e2026ee284bda8104fbfd1331eaf2a0
 DIST moodle-4.0.tgz 61778671 BLAKE2B 
426b0977d9c78055465fd752ea20a29c0f9c715cc513d3cb377f74e58cd3b3be01cafe93e2ba77222f097f2f13594ff645b5150d31b50493556b899587798400
 SHA512 
a104cfcc3616cb5d97382cf387ef13d89ea73e7b0a2f71f0bbd8cabc1df5828476091f0ab0a2e3f5962f4c8bb9d3019e3f226ec808fad670c5777cc87bd3d70c

diff --git a/www-apps/moodle/moodle-4.0.2-r1.ebuild 
b/www-apps/moodle/moodle-4.0.2-r1.ebuild
new file mode 100644
index ..db15d5ab03ce
--- /dev/null
+++ b/www-apps/moodle/moodle-4.0.2-r1.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)0"
+#SRC_URI="https://download.moodle.org/download.php/direct/stable400/moodle-4.0.tgz;
+SRC_URI="https://download.moodle.org/download.php/direct/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.3[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-07-11 Thread Anthony G. Basile
commit: be4d723e6193483f2c4e648c6af8bd17dca95cb7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jul 11 14:38:16 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jul 11 14:38:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4d723e

www-apps/moodle: version bump 4.0.2, 3.11.8, 3.9.15

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   5 +-
 .../{moodle-3.11.7.ebuild => moodle-3.11.8.ebuild} |   0
 www-apps/moodle/moodle-3.9.14.ebuild   | 120 -
 ...{moodle-3.10.11.ebuild => moodle-3.9.15.ebuild} |   0
 .../{moodle-4.0.1.ebuild => moodle-4.0.2.ebuild}   |   0
 5 files changed, 2 insertions(+), 123 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 63eb3d1a5d76..707534601b9a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,3 @@
-DIST moodle-3.10.11.tgz 58342694 BLAKE2B 
732231f2787ffc05ca48205a631b950fd37571203b603fc34799f5063f56b95836dfe5781524dfe00b28059b0cc2559231f093d13c826cce8ebb91065867a7a8
 SHA512 
85f029e983f38cad08446ce5d59ed8d173de0a2556ea4a56359022e0b775e8ffc615ffb34dc5feef3abd5449e6d828e094c4472c529b021f49996bd373913151
-DIST moodle-3.11.7.tgz 60219306 BLAKE2B 
716e4dae672bd4f143db7fda0a9e21ee0d98719a67253a281808bf3365e8330329ab05020509860768341e11df49bbe1edaff35fe91e201f4993739e5a0bd302
 SHA512 
891581fc10e9c1715de44ba273872fdf30335cdc9fb354dbe3cd9821a6665cc0d02af94e406afde466dd3a1632d5e8543efffd741e5109186af6b2c5480cf523
-DIST moodle-3.9.14.tgz 56736058 BLAKE2B 
7a1759edf2fa322d871cc0e05b45809c0307708fc34c46ed3fbeb6c80d4fd77b37482454a1660593be9ec229a883d062ada0f814d94d1afb9cfdde94489cf884
 SHA512 
07cd5c8ac734abe3ec550cc4a0eb77276230bf1b5430c828a95699e07cccd2d81c0ee6c7f47aa52f3439a3184fc81e86579b9ab06de4e8900287ad499a2fa6eb
+DIST moodle-3.11.8.tgz 60299874 BLAKE2B 
315e22a3080b90cb946074c2c53a97ddfdb13f942a41e21d8f21e8520fa7442e85ec4485b5230dbdd1e2b8a8bc69371280c32f36d5819abe4e600eed18bb0ade
 SHA512 
b866eb08d2744ec39eed3d1cd11b98b459785a72dabb2f5069fdea3a333146646bddea5dbb7765ee67d604501253371e8a02b38a7aa5b76dd1750aa8dc4f30b2
+DIST moodle-3.9.15.tgz 56746257 BLAKE2B 
f912749d568ea20a432ca9312e4e689cd38462b6737377af01655fc7fe13b7345f34eb1651c70d6584675089694f78c66de0523dd3fcfa26228c1b5eedaafb8a
 SHA512 
fc61f82455faa1d6fee5f3e99574c1d69c9e967e8f85dcbc06a53db4b3d57d56af37c1c4f90338d081e76e40a938902cce8787f9e14c959a1088d2b8936fd74c
 DIST moodle-4.0.tgz 61778671 BLAKE2B 
426b0977d9c78055465fd752ea20a29c0f9c715cc513d3cb377f74e58cd3b3be01cafe93e2ba77222f097f2f13594ff645b5150d31b50493556b899587798400
 SHA512 
a104cfcc3616cb5d97382cf387ef13d89ea73e7b0a2f71f0bbd8cabc1df5828476091f0ab0a2e3f5962f4c8bb9d3019e3f226ec808fad670c5777cc87bd3d70c

diff --git a/www-apps/moodle/moodle-3.11.7.ebuild 
b/www-apps/moodle/moodle-3.11.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.7.ebuild
rename to www-apps/moodle/moodle-3.11.8.ebuild

diff --git a/www-apps/moodle/moodle-3.9.14.ebuild 
b/www-apps/moodle/moodle-3.9.14.ebuild
deleted file mode 100644
index 7dd5a9861c83..
--- a/www-apps/moodle/moodle-3.9.14.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# which may live on another server.  These USE flags affect the configuration
-# file and the dependency on php.  However other dbs are possible.  See 
config.php
-# and the moodle documentation for other possibilities.
-DEPEND=""
-RDEPEND="
-   >=dev-lang/php-7.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
-   virtual/httpd-php
-   virtual/cron"
-
-pkg_setup() {
-   webapp_pkg_setup
-
-   # How many dbs were selected? If one and only one, which one is it?
-   MYDB=""
-   DB_COUNT=0
-   for db in ${DB_TYPES}; do
-   if use ${db}; then
-   

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-05-09 Thread Anthony G. Basile
commit: 8af2a9696036918e4380ac854311e4667006c9f7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon May  9 14:17:08 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon May  9 14:17:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af2a969

www-apps/moodle: version bump to 3.9.13, 3.10.10, 3.11.6, 4.0.1

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.10.10.ebuild => moodle-3.10.11.ebuild} | 0
 www-apps/moodle/{moodle-3.11.6.ebuild => moodle-3.11.7.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.13.ebuild => moodle-3.9.14.ebuild}   | 0
 www-apps/moodle/{moodle-4.0.ebuild => moodle-4.0.1.ebuild}   | 0
 5 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 80c61362c5c0..63eb3d1a5d76 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.10.10.tgz 58340957 BLAKE2B 
1bcdd93802657729ac83f0eb7c9d25901ed71e0ba50940f3739875735d9fe4b4575c13680ea7b3acd1f578a6267813a011404f0cbbc2d93d0c9d79cf0c4beafc
 SHA512 
fd5d2902a85a3e41cfa2eae1673e783aa55c78690a184664d554f5079a99ea7cf699a7b2c6f398daea7effa56c46533a5d475a25e805e9ae61b1cee0f0663fdb
-DIST moodle-3.11.6.tgz 60192360 BLAKE2B 
a9761a1056325ed952ed446ba35ddf7a09be2faec297609253424cd340fb89c7aa99caa5474a22d230e49321963f489539e4ec764983ebbe352cbd3c7b9c742f
 SHA512 
1ceed02ace4bb506e2d3a2565af37956f9b89024478a32010699efde602220dde598938343566b018feb0d779182cdea4199db63b3671b0a15d4336646ef57f3
-DIST moodle-3.9.13.tgz 56738890 BLAKE2B 
3e894c30a480dc74d6ef332052a545be885f93057025a43065ccbc86d81ad3cc7d7f339a98189d3833b28ba13432fb3a30c6335d1d87d4056fc841f4ce11c8e2
 SHA512 
824572f01b185e0e722524620b08e623fb5827e972f7a3adc2ec6b4c023675f03ff46a0973e418aa6ff3d7c3efd8acccbb866750e760ef2499c3352f3b9dad21
+DIST moodle-3.10.11.tgz 58342694 BLAKE2B 
732231f2787ffc05ca48205a631b950fd37571203b603fc34799f5063f56b95836dfe5781524dfe00b28059b0cc2559231f093d13c826cce8ebb91065867a7a8
 SHA512 
85f029e983f38cad08446ce5d59ed8d173de0a2556ea4a56359022e0b775e8ffc615ffb34dc5feef3abd5449e6d828e094c4472c529b021f49996bd373913151
+DIST moodle-3.11.7.tgz 60219306 BLAKE2B 
716e4dae672bd4f143db7fda0a9e21ee0d98719a67253a281808bf3365e8330329ab05020509860768341e11df49bbe1edaff35fe91e201f4993739e5a0bd302
 SHA512 
891581fc10e9c1715de44ba273872fdf30335cdc9fb354dbe3cd9821a6665cc0d02af94e406afde466dd3a1632d5e8543efffd741e5109186af6b2c5480cf523
+DIST moodle-3.9.14.tgz 56736058 BLAKE2B 
7a1759edf2fa322d871cc0e05b45809c0307708fc34c46ed3fbeb6c80d4fd77b37482454a1660593be9ec229a883d062ada0f814d94d1afb9cfdde94489cf884
 SHA512 
07cd5c8ac734abe3ec550cc4a0eb77276230bf1b5430c828a95699e07cccd2d81c0ee6c7f47aa52f3439a3184fc81e86579b9ab06de4e8900287ad499a2fa6eb
 DIST moodle-4.0.tgz 61778671 BLAKE2B 
426b0977d9c78055465fd752ea20a29c0f9c715cc513d3cb377f74e58cd3b3be01cafe93e2ba77222f097f2f13594ff645b5150d31b50493556b899587798400
 SHA512 
a104cfcc3616cb5d97382cf387ef13d89ea73e7b0a2f71f0bbd8cabc1df5828476091f0ab0a2e3f5962f4c8bb9d3019e3f226ec808fad670c5777cc87bd3d70c

diff --git a/www-apps/moodle/moodle-3.10.10.ebuild 
b/www-apps/moodle/moodle-3.10.11.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.10.ebuild
rename to www-apps/moodle/moodle-3.10.11.ebuild

diff --git a/www-apps/moodle/moodle-3.11.6.ebuild 
b/www-apps/moodle/moodle-3.11.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.6.ebuild
rename to www-apps/moodle/moodle-3.11.7.ebuild

diff --git a/www-apps/moodle/moodle-3.9.13.ebuild 
b/www-apps/moodle/moodle-3.9.14.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.13.ebuild
rename to www-apps/moodle/moodle-3.9.14.ebuild

diff --git a/www-apps/moodle/moodle-4.0.ebuild 
b/www-apps/moodle/moodle-4.0.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-4.0.ebuild
rename to www-apps/moodle/moodle-4.0.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-04-25 Thread Anthony G. Basile
commit: 3b928fd98c6600c8ecd1e137f89c96a3bc5fc50b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Apr 25 17:23:56 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr 25 17:24:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b928fd9

www-apps/moodle: version bump to 4.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-4.0.ebuild | 121 ++
 2 files changed, 122 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index aa74df0ca836..80c61362c5c0 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
 DIST moodle-3.10.10.tgz 58340957 BLAKE2B 
1bcdd93802657729ac83f0eb7c9d25901ed71e0ba50940f3739875735d9fe4b4575c13680ea7b3acd1f578a6267813a011404f0cbbc2d93d0c9d79cf0c4beafc
 SHA512 
fd5d2902a85a3e41cfa2eae1673e783aa55c78690a184664d554f5079a99ea7cf699a7b2c6f398daea7effa56c46533a5d475a25e805e9ae61b1cee0f0663fdb
 DIST moodle-3.11.6.tgz 60192360 BLAKE2B 
a9761a1056325ed952ed446ba35ddf7a09be2faec297609253424cd340fb89c7aa99caa5474a22d230e49321963f489539e4ec764983ebbe352cbd3c7b9c742f
 SHA512 
1ceed02ace4bb506e2d3a2565af37956f9b89024478a32010699efde602220dde598938343566b018feb0d779182cdea4199db63b3671b0a15d4336646ef57f3
 DIST moodle-3.9.13.tgz 56738890 BLAKE2B 
3e894c30a480dc74d6ef332052a545be885f93057025a43065ccbc86d81ad3cc7d7f339a98189d3833b28ba13432fb3a30c6335d1d87d4056fc841f4ce11c8e2
 SHA512 
824572f01b185e0e722524620b08e623fb5827e972f7a3adc2ec6b4c023675f03ff46a0973e418aa6ff3d7c3efd8acccbb866750e760ef2499c3352f3b9dad21
+DIST moodle-4.0.tgz 61778671 BLAKE2B 
426b0977d9c78055465fd752ea20a29c0f9c715cc513d3cb377f74e58cd3b3be01cafe93e2ba77222f097f2f13594ff645b5150d31b50493556b899587798400
 SHA512 
a104cfcc3616cb5d97382cf387ef13d89ea73e7b0a2f71f0bbd8cabc1df5828476091f0ab0a2e3f5962f4c8bb9d3019e3f226ec808fad670c5777cc87bd3d70c

diff --git a/www-apps/moodle/moodle-4.0.ebuild 
b/www-apps/moodle/moodle-4.0.ebuild
new file mode 100644
index ..7712f6dc98aa
--- /dev/null
+++ b/www-apps/moodle/moodle-4.0.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+
+#MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
+#SRC_URI="https://download.moodle.org/downlaod.php/direct/${MY_BRANCH}/${P}.tgz;
+SRC_URI="https://download.moodle.org/download.php/direct/stable400/moodle-4.0.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.3[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-03-14 Thread Anthony G. Basile
commit: 2feeeb2d45305b48995ec4dc218c016013b8dea0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Mar 14 15:30:52 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Mar 14 15:30:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2feeeb2d

www-apps/moodle: version bump to 3.9.13, 3.10.10, 3.11.6

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest| 6 +++---
 www-apps/moodle/{moodle-3.10.9.ebuild => moodle-3.10.10.ebuild} | 0
 www-apps/moodle/{moodle-3.11.5.ebuild => moodle-3.11.6.ebuild}  | 0
 www-apps/moodle/{moodle-3.9.12.ebuild => moodle-3.9.13.ebuild}  | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 156a648f001d..aa74df0ca836 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.9.tgz 58815682 BLAKE2B 
b3437c30e03c8476f10135bf9f352ec330374d7488089ae31e78f6f0ee7f9737e908045313203a2f14700f5010ca0292dff3cf159e9d3aecbcd4789faa48bc47
 SHA512 
a977686d251bc3123536010904e3f240a749b39e4c1efb8dfb0e278f66ad4fabcc1a301c22effea8af43d90ae3f63c1a3a5251bf76fb85481044c909d336681b
-DIST moodle-3.11.5.tgz 60662763 BLAKE2B 
9de10476797ce95ca1d102519344e8d33e27b2f48699b5a34eda64d24144dfce5e27e1d647ee8e5596eb5e5406cd80d85acd522fcad99095c4fbb41d909035c3
 SHA512 
9ebc4d2995e305ffbb4eea167fc70f7843c4a3ed20e1f3689ac6e2c518ec3ac691f7db28353021e4fb134c91dad1bcfc9863c84edb7ddd5156a656ee607f91f8
-DIST moodle-3.9.12.tgz 57194827 BLAKE2B 
6660e4a2a0c458f98eceffbd0698105318bba33020b481c7af6f7585cfa5be35acd6dbf5ff42126b6e453024addfc3d0ecc24dacd3446ff640f72d64ffdc3462
 SHA512 
5263961e85acb3f198a486371e72a05aef5010b0d903411defc6bf7482cea7be5c7debc506d8c413694956b99ad4c622623a03a3ca3a3d37e2d453165c12961e
+DIST moodle-3.10.10.tgz 58340957 BLAKE2B 
1bcdd93802657729ac83f0eb7c9d25901ed71e0ba50940f3739875735d9fe4b4575c13680ea7b3acd1f578a6267813a011404f0cbbc2d93d0c9d79cf0c4beafc
 SHA512 
fd5d2902a85a3e41cfa2eae1673e783aa55c78690a184664d554f5079a99ea7cf699a7b2c6f398daea7effa56c46533a5d475a25e805e9ae61b1cee0f0663fdb
+DIST moodle-3.11.6.tgz 60192360 BLAKE2B 
a9761a1056325ed952ed446ba35ddf7a09be2faec297609253424cd340fb89c7aa99caa5474a22d230e49321963f489539e4ec764983ebbe352cbd3c7b9c742f
 SHA512 
1ceed02ace4bb506e2d3a2565af37956f9b89024478a32010699efde602220dde598938343566b018feb0d779182cdea4199db63b3671b0a15d4336646ef57f3
+DIST moodle-3.9.13.tgz 56738890 BLAKE2B 
3e894c30a480dc74d6ef332052a545be885f93057025a43065ccbc86d81ad3cc7d7f339a98189d3833b28ba13432fb3a30c6335d1d87d4056fc841f4ce11c8e2
 SHA512 
824572f01b185e0e722524620b08e623fb5827e972f7a3adc2ec6b4c023675f03ff46a0973e418aa6ff3d7c3efd8acccbb866750e760ef2499c3352f3b9dad21

diff --git a/www-apps/moodle/moodle-3.10.9.ebuild 
b/www-apps/moodle/moodle-3.10.10.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.9.ebuild
rename to www-apps/moodle/moodle-3.10.10.ebuild

diff --git a/www-apps/moodle/moodle-3.11.5.ebuild 
b/www-apps/moodle/moodle-3.11.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.5.ebuild
rename to www-apps/moodle/moodle-3.11.6.ebuild

diff --git a/www-apps/moodle/moodle-3.9.12.ebuild 
b/www-apps/moodle/moodle-3.9.13.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.12.ebuild
rename to www-apps/moodle/moodle-3.9.13.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2022-01-19 Thread Anthony G. Basile
commit: 695841c91db028649f2cdcd1a6ce56df4be565ca
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jan 19 18:10:52 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jan 19 18:10:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=695841c9

www-apps/moodle: version bumps to 3.9.12, 3.10.9, 3.11.5

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 6 +++---
 www-apps/moodle/{moodle-3.10.8.ebuild => moodle-3.10.9.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.11.4.ebuild => moodle-3.11.5.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.9.11.ebuild => moodle-3.9.12.ebuild} | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index e3472e5e37a5..156a648f001d 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.8.tgz 58786027 BLAKE2B 
dd1a52b8341bb98717caf83dbf20a9bcd88bb4c9cd624c6612d964491fd0f4a234440038ba8d006846badbba951d780337106805b8f969949367695d61de4042
 SHA512 
9b672fd556ed8ad6a986209e50428e849e5801558f81612bb1255ea5cd391c8d864de7576c1d1464b2dac45386af92959a3729e7d9535656da7bc07ada69dcb2
-DIST moodle-3.11.4.tgz 60619233 BLAKE2B 
14e3145fd80bc81e8236db1e3fc26b1d4dd1e2a2f35cd82468b3f82dca79c975c3ea79fe28c094ad20e38e26e832b96f477e59ebc28980ed06655bd253f949ff
 SHA512 
4962fb3af81a2850361a5945620c926d897ab4794c689f15dd5c0a8502e4fe6d32900b5eaee9803bf3c20a3ba68e3638933dff2b83410d9926fda2aa653ffb38
-DIST moodle-3.9.11.tgz 57180281 BLAKE2B 
d26bbe1e3d2b71ec271236abdc3892c002578557058d6d11bd901d36c55a4bccdfb09f39f7e3b432ecdcfe80ea2095569991defffa1ae32177e7382762ace63a
 SHA512 
9de5d325c51fb1b2246ce25e0c76dbe23eb9f666eb5b4dcf3f88bcac97fc503883ac24a3c79ea466d67e6c2b2dac7886358bfb186bd9fb7e36fdabc12d162e38
+DIST moodle-3.10.9.tgz 58815682 BLAKE2B 
b3437c30e03c8476f10135bf9f352ec330374d7488089ae31e78f6f0ee7f9737e908045313203a2f14700f5010ca0292dff3cf159e9d3aecbcd4789faa48bc47
 SHA512 
a977686d251bc3123536010904e3f240a749b39e4c1efb8dfb0e278f66ad4fabcc1a301c22effea8af43d90ae3f63c1a3a5251bf76fb85481044c909d336681b
+DIST moodle-3.11.5.tgz 60662763 BLAKE2B 
9de10476797ce95ca1d102519344e8d33e27b2f48699b5a34eda64d24144dfce5e27e1d647ee8e5596eb5e5406cd80d85acd522fcad99095c4fbb41d909035c3
 SHA512 
9ebc4d2995e305ffbb4eea167fc70f7843c4a3ed20e1f3689ac6e2c518ec3ac691f7db28353021e4fb134c91dad1bcfc9863c84edb7ddd5156a656ee607f91f8
+DIST moodle-3.9.12.tgz 57194827 BLAKE2B 
6660e4a2a0c458f98eceffbd0698105318bba33020b481c7af6f7585cfa5be35acd6dbf5ff42126b6e453024addfc3d0ecc24dacd3446ff640f72d64ffdc3462
 SHA512 
5263961e85acb3f198a486371e72a05aef5010b0d903411defc6bf7482cea7be5c7debc506d8c413694956b99ad4c622623a03a3ca3a3d37e2d453165c12961e

diff --git a/www-apps/moodle/moodle-3.10.8.ebuild 
b/www-apps/moodle/moodle-3.10.9.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.10.8.ebuild
rename to www-apps/moodle/moodle-3.10.9.ebuild
index c6650ea73158..7dd5a9861c83 100644
--- a/www-apps/moodle/moodle-3.10.8.ebuild
+++ b/www-apps/moodle/moodle-3.10.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.11.4.ebuild 
b/www-apps/moodle/moodle-3.11.5.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.11.4.ebuild
rename to www-apps/moodle/moodle-3.11.5.ebuild
index ec940d7eb7b7..36f762e3e63b 100644
--- a/www-apps/moodle/moodle-3.11.4.ebuild
+++ b/www-apps/moodle/moodle-3.11.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.9.11.ebuild 
b/www-apps/moodle/moodle-3.9.12.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.9.11.ebuild
rename to www-apps/moodle/moodle-3.9.12.ebuild
index c6650ea73158..7dd5a9861c83 100644
--- a/www-apps/moodle/moodle-3.9.11.ebuild
+++ b/www-apps/moodle/moodle-3.9.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-11-08 Thread Anthony G. Basile
commit: cd5ca1ddf9dfc4bc88c878f800177d1d7651c528
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov  8 21:45:41 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov  8 21:46:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5ca1dd

www-apps/moodle: version bump to 3.9.11, 3.10.8, 3.11.4

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 6 +++---
 www-apps/moodle/{moodle-3.10.7.ebuild => moodle-3.10.8.ebuild} | 0
 www-apps/moodle/{moodle-3.11.3.ebuild => moodle-3.11.4.ebuild} | 0
 www-apps/moodle/{moodle-3.9.10.ebuild => moodle-3.9.11.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 42d88f9cc51..e3472e5e37a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.7.tgz 57597827 BLAKE2B 
282d061a6579e368ca9cdf6520ef6321982264be5d6221bf801d27cdbdf3c54385bdecb10fab09f0c6db74d4bb6a0cb38676f14f96aef0c25af9924f26d8595d
 SHA512 
2cdaa2fd292c1203940b95944bff145b3ec6710a29e6bf48aa27bf38e8b08b765b44ab90c360048f4aa9b8bef1e7c058bf18fdee49698bf59ebd75d774ef1df1
-DIST moodle-3.11.3.tgz 59424884 BLAKE2B 
693ace523c47472d098fe4a153a904ea3334f60a2fd219b8e25b8bcf92d7be6e9032dd4b2d657f5eda434ff5d5731c337a6e41119977a7b728ab9207e837a692
 SHA512 
e8387b639bdde1ecc59c26145a2ccd1cd814981f5ddf3d5687e1ba9a79740243aa486529ab164d6d058f1b93663217ae84a2f6a5e530352785142283a78bd612
-DIST moodle-3.9.10.tgz 57175684 BLAKE2B 
953f125982a77a10f631b71aaa7da9a069b5128d697bd31138eb17aac7e8dee3501e4874b398e55b2cf5cfcb67d5412122e268be7e9ed7d7670632c5225d7c5c
 SHA512 
6adab9664acbd4539e20378e2f961db430431d2cf61ca14c65cf0155617cb0071224e8dec6a753ffbdebcf59c2724d26c104ab37cde9dcab8401f2b84846a24a
+DIST moodle-3.10.8.tgz 58786027 BLAKE2B 
dd1a52b8341bb98717caf83dbf20a9bcd88bb4c9cd624c6612d964491fd0f4a234440038ba8d006846badbba951d780337106805b8f969949367695d61de4042
 SHA512 
9b672fd556ed8ad6a986209e50428e849e5801558f81612bb1255ea5cd391c8d864de7576c1d1464b2dac45386af92959a3729e7d9535656da7bc07ada69dcb2
+DIST moodle-3.11.4.tgz 60619233 BLAKE2B 
14e3145fd80bc81e8236db1e3fc26b1d4dd1e2a2f35cd82468b3f82dca79c975c3ea79fe28c094ad20e38e26e832b96f477e59ebc28980ed06655bd253f949ff
 SHA512 
4962fb3af81a2850361a5945620c926d897ab4794c689f15dd5c0a8502e4fe6d32900b5eaee9803bf3c20a3ba68e3638933dff2b83410d9926fda2aa653ffb38
+DIST moodle-3.9.11.tgz 57180281 BLAKE2B 
d26bbe1e3d2b71ec271236abdc3892c002578557058d6d11bd901d36c55a4bccdfb09f39f7e3b432ecdcfe80ea2095569991defffa1ae32177e7382762ace63a
 SHA512 
9de5d325c51fb1b2246ce25e0c76dbe23eb9f666eb5b4dcf3f88bcac97fc503883ac24a3c79ea466d67e6c2b2dac7886358bfb186bd9fb7e36fdabc12d162e38

diff --git a/www-apps/moodle/moodle-3.10.7.ebuild 
b/www-apps/moodle/moodle-3.10.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.7.ebuild
rename to www-apps/moodle/moodle-3.10.8.ebuild

diff --git a/www-apps/moodle/moodle-3.11.3.ebuild 
b/www-apps/moodle/moodle-3.11.4.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.3.ebuild
rename to www-apps/moodle/moodle-3.11.4.ebuild

diff --git a/www-apps/moodle/moodle-3.9.10.ebuild 
b/www-apps/moodle/moodle-3.9.11.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.10.ebuild
rename to www-apps/moodle/moodle-3.9.11.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-09-13 Thread Anthony G. Basile
commit: 5fdaae7a838b626a495c588ab7198b86e2d9572c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Sep 13 14:49:10 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Sep 13 14:49:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fdaae7a

www-apps/moodle: version bumps to 3.11.3, 3.10.7, 3.9.10

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 6 +++---
 www-apps/moodle/{moodle-3.10.6.ebuild => moodle-3.10.7.ebuild} | 0
 www-apps/moodle/{moodle-3.11.2.ebuild => moodle-3.11.3.ebuild} | 0
 www-apps/moodle/{moodle-3.9.9.ebuild => moodle-3.9.10.ebuild}  | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 438679c599e..42d88f9cc51 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.6.tgz 57576901 BLAKE2B 
d5f6885b24d7b701df7989b64eb93472d128bf4275697c371c928f9cca75ab205f3bd265afa3386e4dd8f17099e4c3145263a7b044a2752b87eaef2fd2e3a805
 SHA512 
bdc84e08d7a84357a2478431fa78ba0572bb3b612be96a2824df29beec43d792699dfd55abda093598adbf37d31384fd0dfd48cc6ff9f9e3038f448a684bf54d
-DIST moodle-3.11.2.tgz 59407095 BLAKE2B 
46e40f00aaf6d87381eb642ddd52ba40524a9894f5cfc094f1dcdfed07f5351d1c442fe4ed0fd514123aed8bc5d8f4aa356d58df8a008a6eabb518d900d3c313
 SHA512 
ba37f2ded778e974e5a1950fad9f224b557cde7800a06f8039bff460aaec201dd5a6d24359e46c49f382e54d88192b4ab1d834c3c27a15a0b55984d4ed007f18
-DIST moodle-3.9.9.tgz 57163605 BLAKE2B 
4d0402530c3003a0241e1c527b3cebb5062e8ff2c187ce28b49b0d4f83b374a266d6c274d906393c757f3cfd7005abf6d829896c469481d1b5a446e63c30ae5b
 SHA512 
beb12a9084da46125ec114536a06523d62104714eb1a5b1a4b7c7f251d4ec2d6e0707f7335170ff9c31ef70497132c9d0bf509929d69550a605ce90c1faed9e9
+DIST moodle-3.10.7.tgz 57597827 BLAKE2B 
282d061a6579e368ca9cdf6520ef6321982264be5d6221bf801d27cdbdf3c54385bdecb10fab09f0c6db74d4bb6a0cb38676f14f96aef0c25af9924f26d8595d
 SHA512 
2cdaa2fd292c1203940b95944bff145b3ec6710a29e6bf48aa27bf38e8b08b765b44ab90c360048f4aa9b8bef1e7c058bf18fdee49698bf59ebd75d774ef1df1
+DIST moodle-3.11.3.tgz 59424884 BLAKE2B 
693ace523c47472d098fe4a153a904ea3334f60a2fd219b8e25b8bcf92d7be6e9032dd4b2d657f5eda434ff5d5731c337a6e41119977a7b728ab9207e837a692
 SHA512 
e8387b639bdde1ecc59c26145a2ccd1cd814981f5ddf3d5687e1ba9a79740243aa486529ab164d6d058f1b93663217ae84a2f6a5e530352785142283a78bd612
+DIST moodle-3.9.10.tgz 57175684 BLAKE2B 
953f125982a77a10f631b71aaa7da9a069b5128d697bd31138eb17aac7e8dee3501e4874b398e55b2cf5cfcb67d5412122e268be7e9ed7d7670632c5225d7c5c
 SHA512 
6adab9664acbd4539e20378e2f961db430431d2cf61ca14c65cf0155617cb0071224e8dec6a753ffbdebcf59c2724d26c104ab37cde9dcab8401f2b84846a24a

diff --git a/www-apps/moodle/moodle-3.10.6.ebuild 
b/www-apps/moodle/moodle-3.10.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.6.ebuild
rename to www-apps/moodle/moodle-3.10.7.ebuild

diff --git a/www-apps/moodle/moodle-3.11.2.ebuild 
b/www-apps/moodle/moodle-3.11.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.2.ebuild
rename to www-apps/moodle/moodle-3.11.3.ebuild

diff --git a/www-apps/moodle/moodle-3.9.9.ebuild 
b/www-apps/moodle/moodle-3.9.10.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.9.ebuild
rename to www-apps/moodle/moodle-3.9.10.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-08-04 Thread Anthony G. Basile
commit: 0cfd0935453a12c2c3c2b0ffe6c408998e1f5d93
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Aug  4 10:18:22 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  4 10:20:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cfd0935

www-apps/moodle: bump to 3.9.9, 3.10.6, 3.11.2

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 6 +++---
 www-apps/moodle/{moodle-3.10.5.ebuild => moodle-3.10.6.ebuild} | 0
 www-apps/moodle/{moodle-3.11.1.ebuild => moodle-3.11.2.ebuild} | 0
 www-apps/moodle/{moodle-3.9.8.ebuild => moodle-3.9.9.ebuild}   | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 4dca299850c..438679c599e 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.5.tgz 57567486 BLAKE2B 
677370969ef906ce49a16751a67dc6ba5464a6cd29c609517c235288a5a145177ae357e4fce633e59cba9dcfb243e83115d1705fef65f2c7c3b080771c6925ac
 SHA512 
b46f238f4216e3cf0fc332b7e1605641425f6a6d26534c481a2613f4315b319b7403adc3575f68a78d218a6f6ebe4cdf8d89408f29fbfa7e841fca11929ca036
-DIST moodle-3.11.1.tgz 59388965 BLAKE2B 
8298debbf0cec61d45f232a7aee038b8abd6f0e191b29d2be45db7beeac97f536729fdeae409cb1079e0ed4d42f966ace4a5fdabcf3490ff2c57a5c541f72d96
 SHA512 
92cc1cbd40951647fa93c557b7bc944ab7574c8a010cc87bbdb027bce201d2553496926013d28e28a1ef6f0fa580dc60b67c11a9cc1662edc19211ae566ad0ac
-DIST moodle-3.9.8.tgz 57152387 BLAKE2B 
410b4e6e540bb7f3147e8da73a4b737b5d0d92e4c48fa0653cb56374521177d2d3407c0310b808e49a7c686e6f6c64402f4fd9f780b40478008f0453c321cb61
 SHA512 
f0adad79f2bf96db1f103d2662545c8d136fda4c49ab56b8204a34d71102b0bf07b064b1ba49fbdeac021a43c8a29a78c3fbcf70be3757a48385cc13c092c2f5
+DIST moodle-3.10.6.tgz 57576901 BLAKE2B 
d5f6885b24d7b701df7989b64eb93472d128bf4275697c371c928f9cca75ab205f3bd265afa3386e4dd8f17099e4c3145263a7b044a2752b87eaef2fd2e3a805
 SHA512 
bdc84e08d7a84357a2478431fa78ba0572bb3b612be96a2824df29beec43d792699dfd55abda093598adbf37d31384fd0dfd48cc6ff9f9e3038f448a684bf54d
+DIST moodle-3.11.2.tgz 59407095 BLAKE2B 
46e40f00aaf6d87381eb642ddd52ba40524a9894f5cfc094f1dcdfed07f5351d1c442fe4ed0fd514123aed8bc5d8f4aa356d58df8a008a6eabb518d900d3c313
 SHA512 
ba37f2ded778e974e5a1950fad9f224b557cde7800a06f8039bff460aaec201dd5a6d24359e46c49f382e54d88192b4ab1d834c3c27a15a0b55984d4ed007f18
+DIST moodle-3.9.9.tgz 57163605 BLAKE2B 
4d0402530c3003a0241e1c527b3cebb5062e8ff2c187ce28b49b0d4f83b374a266d6c274d906393c757f3cfd7005abf6d829896c469481d1b5a446e63c30ae5b
 SHA512 
beb12a9084da46125ec114536a06523d62104714eb1a5b1a4b7c7f251d4ec2d6e0707f7335170ff9c31ef70497132c9d0bf509929d69550a605ce90c1faed9e9

diff --git a/www-apps/moodle/moodle-3.10.5.ebuild 
b/www-apps/moodle/moodle-3.10.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.5.ebuild
rename to www-apps/moodle/moodle-3.10.6.ebuild

diff --git a/www-apps/moodle/moodle-3.11.1.ebuild 
b/www-apps/moodle/moodle-3.11.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.1.ebuild
rename to www-apps/moodle/moodle-3.11.2.ebuild

diff --git a/www-apps/moodle/moodle-3.9.8.ebuild 
b/www-apps/moodle/moodle-3.9.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.8.ebuild
rename to www-apps/moodle/moodle-3.9.9.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-07-21 Thread Anthony G. Basile
commit: c810e0b7fc3f7abe090192ca21d46f5fedae0aa9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Jul 21 08:57:11 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jul 21 14:16:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c810e0b7

www-apps/moodle: version bump to 3.9.8, 3.10.5, 3.11.1

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest| 6 +++---
 www-apps/moodle/{moodle-3.10.4.ebuild => moodle-3.10.5.ebuild}  | 0
 www-apps/moodle/{moodle-3.11-r1.ebuild => moodle-3.11.1.ebuild} | 0
 www-apps/moodle/{moodle-3.9.7.ebuild => moodle-3.9.8.ebuild}| 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 63e6b7863ec..4dca299850c 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.10.4.tgz 57525833 BLAKE2B 
c95ec10571d6841059f59f311e7d003b7b5d1b54f08c76bb90edc4efa9abda96b826064e80d5ec86bbdb9299148d8b261bd6183b49d47e69a586165e759da962
 SHA512 
c524f1940f9b0631f3cd53d1a8f1c43ac05e98e9293ffac649603b9665f3ac78db96152d23b3f8350ebd9ab6264bd544fbf69c164f93d9374a2f0f81af075660
-DIST moodle-3.11.tgz 59365522 BLAKE2B 
f9a2f77dd851efd740b924e51de6b882955101834ca4201bf2fd243ddd8dbe403d1054dcebb5c3022e941fe9f7d119b285d6e955cdb871288cb3b0e40eb9de07
 SHA512 
69509d57990bf9cca7a262b78f6beb0d90d89e5d93018fd306f662d32303dd39cc0a14b2eee0d58e8f420766cf0acbeeaf6e1f7d43de6b99d0999747b438ee5a
-DIST moodle-3.9.7.tgz 57157463 BLAKE2B 
359d93fdfe62e1470fd7036d2c1d778ce7643c90e70e48a70033bf341833616b8909e6b36d54ddd8f63d38239bfffb709b6fdb50800440c9fc86329132e54f6f
 SHA512 
71caf4408237ae59a5c70be7cbcc245580ed8eb382f03fb4d5284d946f1190fc48aa6562486fa9538c374b760fd05a0bdb95cac5ae182e7787d2e379e51caad6
+DIST moodle-3.10.5.tgz 57567486 BLAKE2B 
677370969ef906ce49a16751a67dc6ba5464a6cd29c609517c235288a5a145177ae357e4fce633e59cba9dcfb243e83115d1705fef65f2c7c3b080771c6925ac
 SHA512 
b46f238f4216e3cf0fc332b7e1605641425f6a6d26534c481a2613f4315b319b7403adc3575f68a78d218a6f6ebe4cdf8d89408f29fbfa7e841fca11929ca036
+DIST moodle-3.11.1.tgz 59388965 BLAKE2B 
8298debbf0cec61d45f232a7aee038b8abd6f0e191b29d2be45db7beeac97f536729fdeae409cb1079e0ed4d42f966ace4a5fdabcf3490ff2c57a5c541f72d96
 SHA512 
92cc1cbd40951647fa93c557b7bc944ab7574c8a010cc87bbdb027bce201d2553496926013d28e28a1ef6f0fa580dc60b67c11a9cc1662edc19211ae566ad0ac
+DIST moodle-3.9.8.tgz 57152387 BLAKE2B 
410b4e6e540bb7f3147e8da73a4b737b5d0d92e4c48fa0653cb56374521177d2d3407c0310b808e49a7c686e6f6c64402f4fd9f780b40478008f0453c321cb61
 SHA512 
f0adad79f2bf96db1f103d2662545c8d136fda4c49ab56b8204a34d71102b0bf07b064b1ba49fbdeac021a43c8a29a78c3fbcf70be3757a48385cc13c092c2f5

diff --git a/www-apps/moodle/moodle-3.10.4.ebuild 
b/www-apps/moodle/moodle-3.10.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.4.ebuild
rename to www-apps/moodle/moodle-3.10.5.ebuild

diff --git a/www-apps/moodle/moodle-3.11-r1.ebuild 
b/www-apps/moodle/moodle-3.11.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11-r1.ebuild
rename to www-apps/moodle/moodle-3.11.1.ebuild

diff --git a/www-apps/moodle/moodle-3.9.7.ebuild 
b/www-apps/moodle/moodle-3.9.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.7.ebuild
rename to www-apps/moodle/moodle-3.9.8.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-06-24 Thread Anthony G. Basile
commit: ec794c2b300d8fb3a1269820dc9b4f3442bfd7ce
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 24 21:14:23 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 24 21:14:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec794c2b

www-apps/moodle: bump to 3.9.7 and 3.10.4, drop older

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   6 +-
 ...oodle-3.10.3-r1.ebuild => moodle-3.10.4.ebuild} |   0
 www-apps/moodle/moodle-3.5.18-r1.ebuild| 120 -
 www-apps/moodle/moodle-3.8.9-r1.ebuild | 120 -
 ...{moodle-3.9.6-r1.ebuild => moodle-3.9.7.ebuild} |   0
 5 files changed, 2 insertions(+), 244 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 2d14e2de188..63e6b7863ec 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,3 @@
-DIST moodle-3.10.3.tgz 57483053 BLAKE2B 
a5129f45c4fdf101df7c96885a8c5cec7cad797a545d5a3fae621f5868cafcf3e9f1cdf06f16e689ccfe0e2bcab6fabd65a5fd45ef178f313176ca5e23350cd9
 SHA512 
934d42b6fc29c2c9ebcddf788c3e983c3bade77f5d2dbb28a612b17d263a67fd08c0f2a5983bbc1a87054d965cabc3c7257a940febec73f1df72bc7e586cd321
+DIST moodle-3.10.4.tgz 57525833 BLAKE2B 
c95ec10571d6841059f59f311e7d003b7b5d1b54f08c76bb90edc4efa9abda96b826064e80d5ec86bbdb9299148d8b261bd6183b49d47e69a586165e759da962
 SHA512 
c524f1940f9b0631f3cd53d1a8f1c43ac05e98e9293ffac649603b9665f3ac78db96152d23b3f8350ebd9ab6264bd544fbf69c164f93d9374a2f0f81af075660
 DIST moodle-3.11.tgz 59365522 BLAKE2B 
f9a2f77dd851efd740b924e51de6b882955101834ca4201bf2fd243ddd8dbe403d1054dcebb5c3022e941fe9f7d119b285d6e955cdb871288cb3b0e40eb9de07
 SHA512 
69509d57990bf9cca7a262b78f6beb0d90d89e5d93018fd306f662d32303dd39cc0a14b2eee0d58e8f420766cf0acbeeaf6e1f7d43de6b99d0999747b438ee5a
-DIST moodle-3.5.18.tgz 46812954 BLAKE2B 
fc13835e9d40236b2d572f344870999cd9ea60d11a043428acacc34362fbf114c2253083a6165dc800bca9c5cbb9cefeb4f7f76111a880348bf7b0988cdda8c7
 SHA512 
8336ba4dd638410e0697e1ee0c9715f166d934ae1325079e5b14e6e7959e32426103bb1af1e1e80ced3764e5c49ccea254de590f729762e417b21dab3f1b849c
-DIST moodle-3.8.9.tgz 53320016 BLAKE2B 
5c0c54f5a57eea97c591d75088fe89e8e12df1e233f99c7025fb4e3720a27aa8133ccd25b25876faf2335497827ca748579607dbb2d52c01043fd59854f6dba4
 SHA512 
ec0bc22d82ae2afb69d491df75011568dba771cc2cbab988dbfe9bc1c4daa6d5e947ca8b9d71acabecd9c57d25202d79321abf1cdda6908ad32511db6c107289
-DIST moodle-3.9.6.tgz 57105713 BLAKE2B 
26b5334eda2fac641020459b8471db692f7202acc62b72e11a43fdb3893dadcf2150af7c82659c408ab9ee4660b766498c2c3005f8b43ed980ecefd60263e581
 SHA512 
0c66070f9cf422a6ed11ac6ff067aba294bc7f4d4b5a17f729c4e4fbb060b59ee232a4a87996557afaa7c6646bfcc3c14736ff4cb18b20a8a31386cc40a61d7f
+DIST moodle-3.9.7.tgz 57157463 BLAKE2B 
359d93fdfe62e1470fd7036d2c1d778ce7643c90e70e48a70033bf341833616b8909e6b36d54ddd8f63d38239bfffb709b6fdb50800440c9fc86329132e54f6f
 SHA512 
71caf4408237ae59a5c70be7cbcc245580ed8eb382f03fb4d5284d946f1190fc48aa6562486fa9538c374b760fd05a0bdb95cac5ae182e7787d2e379e51caad6

diff --git a/www-apps/moodle/moodle-3.10.3-r1.ebuild 
b/www-apps/moodle/moodle-3.10.4.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.3-r1.ebuild
rename to www-apps/moodle/moodle-3.10.4.ebuild

diff --git a/www-apps/moodle/moodle-3.5.18-r1.ebuild 
b/www-apps/moodle/moodle-3.5.18-r1.ebuild
deleted file mode 100644
index 0e98b0c6fc9..000
--- a/www-apps/moodle/moodle-3.5.18-r1.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# which may live on another server.  These USE flags affect the configuration
-# file and the dependency on php.  However other dbs are possible.  See 
config.php
-# and the moodle documentation for other possibilities.
-DEPEND=""
-RDEPEND="
-   

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-06-17 Thread Thomas Deutschmann
commit: d9cfce06c4731a7f8550587297fb441c2c8ea0f2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jun 17 22:15:22 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jun 17 22:18:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9cfce06

www-apps/moodle: rev bump for commit 610283df7

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-apps/moodle/{moodle-3.10.3.ebuild => moodle-3.10.3-r1.ebuild} | 0
 www-apps/moodle/{moodle-3.11.ebuild => moodle-3.11-r1.ebuild} | 0
 www-apps/moodle/{moodle-3.5.18.ebuild => moodle-3.5.18-r1.ebuild} | 0
 www-apps/moodle/{moodle-3.8.9.ebuild => moodle-3.8.9-r1.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.6.ebuild => moodle-3.9.6-r1.ebuild}   | 0
 5 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/www-apps/moodle/moodle-3.10.3.ebuild 
b/www-apps/moodle/moodle-3.10.3-r1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.3.ebuild
rename to www-apps/moodle/moodle-3.10.3-r1.ebuild

diff --git a/www-apps/moodle/moodle-3.11.ebuild 
b/www-apps/moodle/moodle-3.11-r1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.11.ebuild
rename to www-apps/moodle/moodle-3.11-r1.ebuild

diff --git a/www-apps/moodle/moodle-3.5.18.ebuild 
b/www-apps/moodle/moodle-3.5.18-r1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.18.ebuild
rename to www-apps/moodle/moodle-3.5.18-r1.ebuild

diff --git a/www-apps/moodle/moodle-3.8.9.ebuild 
b/www-apps/moodle/moodle-3.8.9-r1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.9.ebuild
rename to www-apps/moodle/moodle-3.8.9-r1.ebuild

diff --git a/www-apps/moodle/moodle-3.9.6.ebuild 
b/www-apps/moodle/moodle-3.9.6-r1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.6.ebuild
rename to www-apps/moodle/moodle-3.9.6-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-06-17 Thread Thomas Deutschmann
commit: 610283df734f5a876d30f1cd7668ce907b62230f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Jun 17 20:27:50 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Jun 17 20:32:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=610283df

www-apps/moodle: Fix MissingUseDepDefault for dev-lang/php[json]

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-apps/moodle/moodle-3.10.3.ebuild | 2 +-
 www-apps/moodle/moodle-3.11.ebuild   | 2 +-
 www-apps/moodle/moodle-3.5.18.ebuild | 2 +-
 www-apps/moodle/moodle-3.8.9.ebuild  | 2 +-
 www-apps/moodle/moodle-3.9.6.ebuild  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/www-apps/moodle/moodle-3.10.3.ebuild 
b/www-apps/moodle/moodle-3.10.3.ebuild
index 35d47aa5db4..c6650ea7315 100644
--- a/www-apps/moodle/moodle-3.10.3.ebuild
+++ b/www-apps/moodle/moodle-3.10.3.ebuild
@@ -24,7 +24,7 @@ AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
 AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
 PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 

diff --git a/www-apps/moodle/moodle-3.11.ebuild 
b/www-apps/moodle/moodle-3.11.ebuild
index cf74bb2c1bd..ec940d7eb7b 100644
--- a/www-apps/moodle/moodle-3.11.ebuild
+++ b/www-apps/moodle/moodle-3.11.ebuild
@@ -24,7 +24,7 @@ AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
 AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
 PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 

diff --git a/www-apps/moodle/moodle-3.5.18.ebuild 
b/www-apps/moodle/moodle-3.5.18.ebuild
index 5b538bc3be8..0e98b0c6fc9 100644
--- a/www-apps/moodle/moodle-3.5.18.ebuild
+++ b/www-apps/moodle/moodle-3.5.18.ebuild
@@ -24,7 +24,7 @@ AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
 AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
 PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 

diff --git a/www-apps/moodle/moodle-3.8.9.ebuild 
b/www-apps/moodle/moodle-3.8.9.ebuild
index 407eecf4f7f..8b7fe571d39 100644
--- a/www-apps/moodle/moodle-3.8.9.ebuild
+++ b/www-apps/moodle/moodle-3.8.9.ebuild
@@ -24,7 +24,7 @@ AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
 AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
 PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 

diff --git a/www-apps/moodle/moodle-3.9.6.ebuild 
b/www-apps/moodle/moodle-3.9.6.ebuild
index 35d47aa5db4..c6650ea7315 100644
--- a/www-apps/moodle/moodle-3.9.6.ebuild
+++ b/www-apps/moodle/moodle-3.9.6.ebuild
@@ -24,7 +24,7 @@ AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
 AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
 AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
 
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json(+),session,simplexml,xml,zip"
 PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-05-23 Thread Anthony G. Basile
commit: 9afbbef89d431b8373a95021042b386554be313d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 23 07:43:41 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 23 07:43:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9afbbef8

www-apps/moodle: add version 3.11

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   1 +
 www-apps/moodle/moodle-3.11.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 03ea2c6f137..2d14e2de188 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,5 @@
 DIST moodle-3.10.3.tgz 57483053 BLAKE2B 
a5129f45c4fdf101df7c96885a8c5cec7cad797a545d5a3fae621f5868cafcf3e9f1cdf06f16e689ccfe0e2bcab6fabd65a5fd45ef178f313176ca5e23350cd9
 SHA512 
934d42b6fc29c2c9ebcddf788c3e983c3bade77f5d2dbb28a612b17d263a67fd08c0f2a5983bbc1a87054d965cabc3c7257a940febec73f1df72bc7e586cd321
+DIST moodle-3.11.tgz 59365522 BLAKE2B 
f9a2f77dd851efd740b924e51de6b882955101834ca4201bf2fd243ddd8dbe403d1054dcebb5c3022e941fe9f7d119b285d6e955cdb871288cb3b0e40eb9de07
 SHA512 
69509d57990bf9cca7a262b78f6beb0d90d89e5d93018fd306f662d32303dd39cc0a14b2eee0d58e8f420766cf0acbeeaf6e1f7d43de6b99d0999747b438ee5a
 DIST moodle-3.5.18.tgz 46812954 BLAKE2B 
fc13835e9d40236b2d572f344870999cd9ea60d11a043428acacc34362fbf114c2253083a6165dc800bca9c5cbb9cefeb4f7f76111a880348bf7b0988cdda8c7
 SHA512 
8336ba4dd638410e0697e1ee0c9715f166d934ae1325079e5b14e6e7959e32426103bb1af1e1e80ced3764e5c49ccea254de590f729762e417b21dab3f1b849c
 DIST moodle-3.8.9.tgz 53320016 BLAKE2B 
5c0c54f5a57eea97c591d75088fe89e8e12df1e233f99c7025fb4e3720a27aa8133ccd25b25876faf2335497827ca748579607dbb2d52c01043fd59854f6dba4
 SHA512 
ec0bc22d82ae2afb69d491df75011568dba771cc2cbab988dbfe9bc1c4daa6d5e947ca8b9d71acabecd9c57d25202d79321abf1cdda6908ad32511db6c107289
 DIST moodle-3.9.6.tgz 57105713 BLAKE2B 
26b5334eda2fac641020459b8471db692f7202acc62b72e11a43fdb3893dadcf2150af7c82659c408ab9ee4660b766498c2c3005f8b43ed980ecefd60263e581
 SHA512 
0c66070f9cf422a6ed11ac6ff067aba294bc7f4d4b5a17f729c4e4fbb060b59ee232a4a87996557afaa7c6646bfcc3c14736ff4cb18b20a8a31386cc40a61d7f

diff --git a/www-apps/moodle/moodle-3.11.ebuild 
b/www-apps/moodle/moodle-3.11.ebuild
new file mode 100644
index 000..cf74bb2c1bd
--- /dev/null
+++ b/www-apps/moodle/moodle-3.11.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.3[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-05-14 Thread Anthony G. Basile
commit: 9c56302174a41ed09235a77740ab0fafbbd82ad7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri May 14 14:13:50 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri May 14 14:14:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c563021

www-apps/moodle:  version bumps to 3.5.18, 3.8.9, 3.9.6, 3.10.3

Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.10.2.ebuild => moodle-3.10.3.ebuild} | 0
 www-apps/moodle/{moodle-3.5.17.ebuild => moodle-3.5.18.ebuild} | 0
 www-apps/moodle/{moodle-3.8.8.ebuild => moodle-3.8.9.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.5.ebuild => moodle-3.9.6.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 002ba318d87..03ea2c6f137 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.10.2.tgz 57476423 BLAKE2B 
b842e9ff4b6d2442624cba29bc74b981f57cfb4469d1a60af3a36709c060e682b20bdba7637062b68d57ee2c281b7c90156af3d8f11e6c12b0cde71e2af35c94
 SHA512 
18b0361eca660235396641ec5126555948439f5064090bc6fd2792ce45462b26d1bf347acfad397b7e219ddf059d95d054c308ca234bf4c25706471ea127926a
-DIST moodle-3.5.17.tgz 46811874 BLAKE2B 
2dca8da3647f55afe09686d22bb3cd6a2c39153a060435056167561a9d6c4febcbae99f0c539ea14dca6b239856f3c0271bbafa049aee90395f8deb03d055407
 SHA512 
dffdf8bd2585ed9aede9e5c018df4ceecbdcbcabb3e5c0953c10b622b71e676bda9abc6295aa53d7fade96c115b24eb473020b5727698fcee3e2c823b1db28cf
-DIST moodle-3.8.8.tgz 53315860 BLAKE2B 
f0b9f652f8c699fae1fa86ecc89c2719618ae09a007946fec17031a8bba865d45a05249a88dcfec2a01f27b572d59db80297b06bc65a6ecc02484680da3a0825
 SHA512 
07ee64a3845822329154f343a40d60027509860854b2b3e19d6488b1ca79e8f95d721a2e7f6f284d5764d2b049dba56812144b2ea46581189a91a8271746c3dd
-DIST moodle-3.9.5.tgz 57104678 BLAKE2B 
418e857bf0363d1cfac8dbc573b755d419a5e95b1a66d2ab86a159434116b42537366feffa6b8b73089373292be2d94c5995d92e84d43762196ea2dcd4eda846
 SHA512 
80a91e701df894481b36ea46d60127333d786f4b5e64309f73a8d00d82e62783288ef9e86b5dfbdd4f43afd12fe9e659bab93af8c265b67ea37d504104b05a38
+DIST moodle-3.10.3.tgz 57483053 BLAKE2B 
a5129f45c4fdf101df7c96885a8c5cec7cad797a545d5a3fae621f5868cafcf3e9f1cdf06f16e689ccfe0e2bcab6fabd65a5fd45ef178f313176ca5e23350cd9
 SHA512 
934d42b6fc29c2c9ebcddf788c3e983c3bade77f5d2dbb28a612b17d263a67fd08c0f2a5983bbc1a87054d965cabc3c7257a940febec73f1df72bc7e586cd321
+DIST moodle-3.5.18.tgz 46812954 BLAKE2B 
fc13835e9d40236b2d572f344870999cd9ea60d11a043428acacc34362fbf114c2253083a6165dc800bca9c5cbb9cefeb4f7f76111a880348bf7b0988cdda8c7
 SHA512 
8336ba4dd638410e0697e1ee0c9715f166d934ae1325079e5b14e6e7959e32426103bb1af1e1e80ced3764e5c49ccea254de590f729762e417b21dab3f1b849c
+DIST moodle-3.8.9.tgz 53320016 BLAKE2B 
5c0c54f5a57eea97c591d75088fe89e8e12df1e233f99c7025fb4e3720a27aa8133ccd25b25876faf2335497827ca748579607dbb2d52c01043fd59854f6dba4
 SHA512 
ec0bc22d82ae2afb69d491df75011568dba771cc2cbab988dbfe9bc1c4daa6d5e947ca8b9d71acabecd9c57d25202d79321abf1cdda6908ad32511db6c107289
+DIST moodle-3.9.6.tgz 57105713 BLAKE2B 
26b5334eda2fac641020459b8471db692f7202acc62b72e11a43fdb3893dadcf2150af7c82659c408ab9ee4660b766498c2c3005f8b43ed980ecefd60263e581
 SHA512 
0c66070f9cf422a6ed11ac6ff067aba294bc7f4d4b5a17f729c4e4fbb060b59ee232a4a87996557afaa7c6646bfcc3c14736ff4cb18b20a8a31386cc40a61d7f

diff --git a/www-apps/moodle/moodle-3.10.2.ebuild 
b/www-apps/moodle/moodle-3.10.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.2.ebuild
rename to www-apps/moodle/moodle-3.10.3.ebuild

diff --git a/www-apps/moodle/moodle-3.5.17.ebuild 
b/www-apps/moodle/moodle-3.5.18.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.17.ebuild
rename to www-apps/moodle/moodle-3.5.18.ebuild

diff --git a/www-apps/moodle/moodle-3.8.8.ebuild 
b/www-apps/moodle/moodle-3.8.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.8.ebuild
rename to www-apps/moodle/moodle-3.8.9.ebuild

diff --git a/www-apps/moodle/moodle-3.9.5.ebuild 
b/www-apps/moodle/moodle-3.9.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.5.ebuild
rename to www-apps/moodle/moodle-3.9.6.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-03-10 Thread Anthony G. Basile
commit: e58e486603a97efa77b8ef49833cba2874251a85
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Mar 10 21:36:09 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Mar 10 21:36:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e58e4866

www-apps/moodle: version bumps to 3.5.17, 3.8.8, 3.9.5, 3.10.2

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.10.1.ebuild => moodle-3.10.2.ebuild} | 0
 www-apps/moodle/{moodle-3.5.16.ebuild => moodle-3.5.17.ebuild} | 0
 www-apps/moodle/{moodle-3.8.7.ebuild => moodle-3.8.8.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.4.ebuild => moodle-3.9.5.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 28e16377d74..002ba318d87 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.10.1.tgz 57464025 BLAKE2B 
55a7f1ba24fa516cdb5f67a936797a5e9450ddd279bd3ea67a3fe4b321019dddae57f928a816374282dd9c08e78281b4835879a1ff5843e1997f61cede1ed05f
 SHA512 
3460857b5e0d524849d30d3d883fc35624cb2afe52184e85cb63477b7b17b8737338b91f6f8b5cd263fa1a3666288c85f8f3b10fcab3669cb5b1e68f6d8e5399
-DIST moodle-3.5.16.tgz 46790181 BLAKE2B 
921026617cc435f481ef5533908ca2a809fc63c57365d3cc114acb51ea246ea035d37c63fc64b8cfc25b29250ac2a3e92cbb5c838dce53b6e62971901c73de19
 SHA512 
ae9b2689a232c48a6d682627271e83460d6d95154f58dd8d1e27a58faec49c1089680378d943b1b45c3ebfa8e1f6cd1b879108b0c79bd9f49aab44e9520690c6
-DIST moodle-3.8.7.tgz 53309020 BLAKE2B 
6be85529dd7cd69631b1f2de0873ffb00bb1d50b8165d2198b3ee08a2ffbd34b4e9f3f2b97e956166ffc3617e7c234051c8f43e81838b1470caa7f6b9b2b91c6
 SHA512 
28cd050bcec988cf235776be8058f1f153a76e7720dd47db16f6c243dc4b542eac230a73e5fa86ca62dea056e9e6a1af71e4b485a7ccc6198b19670900871527
-DIST moodle-3.9.4.tgz 57068491 BLAKE2B 
9a7f3c1d5eae206b063e1dc5d471a34f378f8dd5b3f227cd87b2fc2a9c6b7429fab5d803a09a1fe312cbd936b37696aaf4b92ce8cd06b675ad7c891ff03fd518
 SHA512 
1a5069005aed3f0e1b5620d6c091cb8e9ad9003f95ae9d66055eb52e892feaf54b150942baecdc27a8d2884a349e3b882e16b187a2188e03aca0146abbc75a7a
+DIST moodle-3.10.2.tgz 57476423 BLAKE2B 
b842e9ff4b6d2442624cba29bc74b981f57cfb4469d1a60af3a36709c060e682b20bdba7637062b68d57ee2c281b7c90156af3d8f11e6c12b0cde71e2af35c94
 SHA512 
18b0361eca660235396641ec5126555948439f5064090bc6fd2792ce45462b26d1bf347acfad397b7e219ddf059d95d054c308ca234bf4c25706471ea127926a
+DIST moodle-3.5.17.tgz 46811874 BLAKE2B 
2dca8da3647f55afe09686d22bb3cd6a2c39153a060435056167561a9d6c4febcbae99f0c539ea14dca6b239856f3c0271bbafa049aee90395f8deb03d055407
 SHA512 
dffdf8bd2585ed9aede9e5c018df4ceecbdcbcabb3e5c0953c10b622b71e676bda9abc6295aa53d7fade96c115b24eb473020b5727698fcee3e2c823b1db28cf
+DIST moodle-3.8.8.tgz 53315860 BLAKE2B 
f0b9f652f8c699fae1fa86ecc89c2719618ae09a007946fec17031a8bba865d45a05249a88dcfec2a01f27b572d59db80297b06bc65a6ecc02484680da3a0825
 SHA512 
07ee64a3845822329154f343a40d60027509860854b2b3e19d6488b1ca79e8f95d721a2e7f6f284d5764d2b049dba56812144b2ea46581189a91a8271746c3dd
+DIST moodle-3.9.5.tgz 57104678 BLAKE2B 
418e857bf0363d1cfac8dbc573b755d419a5e95b1a66d2ab86a159434116b42537366feffa6b8b73089373292be2d94c5995d92e84d43762196ea2dcd4eda846
 SHA512 
80a91e701df894481b36ea46d60127333d786f4b5e64309f73a8d00d82e62783288ef9e86b5dfbdd4f43afd12fe9e659bab93af8c265b67ea37d504104b05a38

diff --git a/www-apps/moodle/moodle-3.10.1.ebuild 
b/www-apps/moodle/moodle-3.10.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.10.1.ebuild
rename to www-apps/moodle/moodle-3.10.2.ebuild

diff --git a/www-apps/moodle/moodle-3.5.16.ebuild 
b/www-apps/moodle/moodle-3.5.17.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.16.ebuild
rename to www-apps/moodle/moodle-3.5.17.ebuild

diff --git a/www-apps/moodle/moodle-3.8.7.ebuild 
b/www-apps/moodle/moodle-3.8.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.7.ebuild
rename to www-apps/moodle/moodle-3.8.8.ebuild

diff --git a/www-apps/moodle/moodle-3.9.4.ebuild 
b/www-apps/moodle/moodle-3.9.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.4.ebuild
rename to www-apps/moodle/moodle-3.9.5.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-01-25 Thread Anthony G. Basile
commit: d7f5b5ff146f43acd20edccfb0147162485a4946
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 25 21:03:23 2021 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 25 21:03:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7f5b5ff

www-apps/moodle: version bump to 3.10.1, 3.9.4, 3.8.7, 3.5.16

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-3.9.3.ebuild => moodle-3.10.1.ebuild}  |   2 +-
 .../{moodle-3.5.15.ebuild => moodle-3.5.16.ebuild} |   2 +-
 www-apps/moodle/moodle-3.7.9.ebuild| 120 -
 .../{moodle-3.8.6.ebuild => moodle-3.8.7.ebuild}   |   2 +-
 .../{moodle-3.10.ebuild => moodle-3.9.4.ebuild}|   2 +-
 6 files changed, 8 insertions(+), 129 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index f2323453549..28e16377d74 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-3.10.tgz 57423153 BLAKE2B 
fe59ef50e28a0170ff7a158d0ab52d93e30e4739a6af61cc2c3f6c93e763c459ebef8e6bda138af2ac2c6000d7ed6ea718821c01d2417b7c55d9c1faaeff2afa
 SHA512 
f0a55c5ed3636943a5193cadc3755cfd509619b1f85c003dffa6387c131f0579c02b40e825932b313d649d5e1e557f8e63569b5b51dada59f8aed5eac0474500
-DIST moodle-3.5.15.tgz 46781368 BLAKE2B 
5d47fc9526122314a490ef9728e8b1c8fddc233539de406d8077d59e7c14c6920d887fc074c94f9f5ffe6d66df68a325d03ab652cf1b39dc4870e64a7a638de1
 SHA512 
283f2f059181c3ba79799cb0b474bf9c5b876c528f1779b72b86a4b4087bfa73afc875dca5f454d527d5b3f0bfb3cc59531b59830f60e426bd9ef7bc65302698
-DIST moodle-3.7.9.tgz 45879636 BLAKE2B 
d07f080ed7333c575a04c813c0ffe4fce26ded2f1df267fdf5a1c5b9b787859d9d0c8d688dc435dd51f9850335528edb15a07b5a37200acca097f15c522e94df
 SHA512 
22452ea2b497aeedba6be739f573c8ca1d4dec3aca401f1ce6aac3fa96411f94fc72aeef895a5c35b97112fb6dd1d836b421fa26740a3dcb6936ae88d4267b9f
-DIST moodle-3.8.6.tgz 53308269 BLAKE2B 
20e722bbcd1f4575fa4450b6d7cefd1d882322776975f47940f49300f6c6a4bb9b80dae9e936207c5168a8847ae5d77e535d722aed07b68c1c29bad472cc6b74
 SHA512 
c3e63d6872fc476391747af03f25f0153a51dcc8a8a81d0330bd368d8bef9703dac700bf975a1891e701faed28227dd4d26a5d61255ca4b5bb349f91db66f20e
-DIST moodle-3.9.3.tgz 57048773 BLAKE2B 
21721718ae19c42c61ad4f0d971887e4bf545b88126ab12570d3a9b54e33821b0a99708adcbed78d49ed324d8525a2410db8988b614f76513b61067cb9e4ecc2
 SHA512 
830e81f28e54c8ebbb4528fe113c1b1b345bb47c80abc725b6afd8111d92315d5af4c82e4241d235bdd22a1b9324b1e63cc3a66bdfa352a768c4604adbec4bdc
+DIST moodle-3.10.1.tgz 57464025 BLAKE2B 
55a7f1ba24fa516cdb5f67a936797a5e9450ddd279bd3ea67a3fe4b321019dddae57f928a816374282dd9c08e78281b4835879a1ff5843e1997f61cede1ed05f
 SHA512 
3460857b5e0d524849d30d3d883fc35624cb2afe52184e85cb63477b7b17b8737338b91f6f8b5cd263fa1a3666288c85f8f3b10fcab3669cb5b1e68f6d8e5399
+DIST moodle-3.5.16.tgz 46790181 BLAKE2B 
921026617cc435f481ef5533908ca2a809fc63c57365d3cc114acb51ea246ea035d37c63fc64b8cfc25b29250ac2a3e92cbb5c838dce53b6e62971901c73de19
 SHA512 
ae9b2689a232c48a6d682627271e83460d6d95154f58dd8d1e27a58faec49c1089680378d943b1b45c3ebfa8e1f6cd1b879108b0c79bd9f49aab44e9520690c6
+DIST moodle-3.8.7.tgz 53309020 BLAKE2B 
6be85529dd7cd69631b1f2de0873ffb00bb1d50b8165d2198b3ee08a2ffbd34b4e9f3f2b97e956166ffc3617e7c234051c8f43e81838b1470caa7f6b9b2b91c6
 SHA512 
28cd050bcec988cf235776be8058f1f153a76e7720dd47db16f6c243dc4b542eac230a73e5fa86ca62dea056e9e6a1af71e4b485a7ccc6198b19670900871527
+DIST moodle-3.9.4.tgz 57068491 BLAKE2B 
9a7f3c1d5eae206b063e1dc5d471a34f378f8dd5b3f227cd87b2fc2a9c6b7429fab5d803a09a1fe312cbd936b37696aaf4b92ce8cd06b675ad7c891ff03fd518
 SHA512 
1a5069005aed3f0e1b5620d6c091cb8e9ad9003f95ae9d66055eb52e892feaf54b150942baecdc27a8d2884a349e3b882e16b187a2188e03aca0146abbc75a7a

diff --git a/www-apps/moodle/moodle-3.9.3.ebuild 
b/www-apps/moodle/moodle-3.10.1.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.9.3.ebuild
rename to www-apps/moodle/moodle-3.10.1.ebuild
index 1012b291cbc..35d47aa5db4 100644
--- a/www-apps/moodle/moodle-3.9.3.ebuild
+++ b/www-apps/moodle/moodle-3.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.5.15.ebuild 
b/www-apps/moodle/moodle-3.5.16.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.5.15.ebuild
rename to www-apps/moodle/moodle-3.5.16.ebuild
index 8b94917f96c..5b538bc3be8 100644
--- a/www-apps/moodle/moodle-3.5.15.ebuild
+++ b/www-apps/moodle/moodle-3.5.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.7.9.ebuild 
b/www-apps/moodle/moodle-3.7.9.ebuild
deleted file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-01-10 Thread Sam James
commit: 22e2749cc5d26aee83d4c1dfb57a3d0218c9bb75
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 22:09:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 22:27:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e2749c

www-apps/moodle: mark ALLARCHES

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 www-apps/moodle/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/www-apps/moodle/metadata.xml b/www-apps/moodle/metadata.xml
index 8e06e631306..0ec83170c07 100644
--- a/www-apps/moodle/metadata.xml
+++ b/www-apps/moodle/metadata.xml
@@ -9,4 +9,5 @@
web-a...@gentoo.org
Gentoo Webapps

+   
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2021-01-10 Thread Sam James
commit: 294c876aa979632c7f355cbfba8f69af33d33e51
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 10 22:09:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 10 22:27:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=294c876a

www-apps/moodle: fix metadata indentation

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James  gentoo.org>

 www-apps/moodle/metadata.xml | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/www-apps/moodle/metadata.xml b/www-apps/moodle/metadata.xml
index b42479a73f3..8e06e631306 100644
--- a/www-apps/moodle/metadata.xml
+++ b/www-apps/moodle/metadata.xml
@@ -1,12 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   bluen...@gentoo.org
-   Anthony G. Basile
-
-
-   web-a...@gentoo.org
-   Gentoo Webapps
-
+   
+   bluen...@gentoo.org
+   Anthony G. Basile
+   
+   
+   web-a...@gentoo.org
+   Gentoo Webapps
+   
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-11-09 Thread Anthony G. Basile
commit: 6f61cbd56f971ec66c91079040be0cd8774fa011
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov  9 17:20:46 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov  9 17:20:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f61cbd5

www-apps/moodle: version bumps to 3.5.15, 3.7.9, 3.8.6, 3.9.3, 3.10

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 9 +
 www-apps/moodle/{moodle-3.9.2.ebuild => moodle-3.10.ebuild}| 0
 www-apps/moodle/{moodle-3.5.14.ebuild => moodle-3.5.15.ebuild} | 0
 www-apps/moodle/{moodle-3.7.8.ebuild => moodle-3.7.9.ebuild}   | 0
 www-apps/moodle/{moodle-3.8.5.ebuild => moodle-3.8.6.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.2.ebuild => moodle-3.9.3.ebuild}   | 0
 6 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 0ee6b4cd2ba..f2323453549 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,5 @@
-DIST moodle-3.5.14.tgz 46781703 BLAKE2B 
3f6931c93507c33ed96d19a02a4b221ebe88b1c7d71d8c4780784c5683c8753600fecf2e9c71f9b9dbdcdfa5163acff8c116a161d6f0812547caf00f5860
 SHA512 
669dd2a5477a81f1a3af35ec25162e9c900220c21c070b509ed8d33ece9dc0ced23050058d90901dbaeed53904ea0c512733ff040d6b710b71d0d478c9df
-DIST moodle-3.7.8.tgz 45869720 BLAKE2B 
3f7f7fb45aa8f3fee53905f812166a99f8781e571cdd325c96c084e40141c3170949a32f865cbb6de628c8f10df9bb78c81a1151804b0da79d93fe70b19ed79d
 SHA512 
4790ddf7d5775d5051e31655aa244de7eb2df6e0248d667ec14e08ebe190323bfffdf41a3aff8171bc4229925a32a7400471c2d89fdd1344751f285b2a00c588
-DIST moodle-3.8.5.tgz 53282545 BLAKE2B 
8402f5fc7a7a2e5e4d890ac6853d7bb87550cce4fcc502cab9ab404111987f9048662da9be79d6afb8089c0dc8bd300e938a46612cf69304ea37b39dedc4309d
 SHA512 
fa2ccb2aa00a19911f290ed8df87af7a8439807cecf054a5cf87e9c860ace05ed2c484be091ce44cdb558c36631a0f03a87d7101c015a209e3ebbd5c70217e62
-DIST moodle-3.9.2.tgz 57013075 BLAKE2B 
465244f19c5574170c7bc830e5380ed76e59ba7f322f72847594797196af391a49167f9e5fc8341dea086af00fab8f41f857c93497d54b8b25fe7fc90b2f24ed
 SHA512 
76b6753d806bd771f5531a8adc669e36a00b71d41e3fee3eb165cd74a44de8ed027d57fbdaea67f0d9c88fdf14aac9e3367d39416845da68ccf7cebecb70bc5a
+DIST moodle-3.10.tgz 57423153 BLAKE2B 
fe59ef50e28a0170ff7a158d0ab52d93e30e4739a6af61cc2c3f6c93e763c459ebef8e6bda138af2ac2c6000d7ed6ea718821c01d2417b7c55d9c1faaeff2afa
 SHA512 
f0a55c5ed3636943a5193cadc3755cfd509619b1f85c003dffa6387c131f0579c02b40e825932b313d649d5e1e557f8e63569b5b51dada59f8aed5eac0474500
+DIST moodle-3.5.15.tgz 46781368 BLAKE2B 
5d47fc9526122314a490ef9728e8b1c8fddc233539de406d8077d59e7c14c6920d887fc074c94f9f5ffe6d66df68a325d03ab652cf1b39dc4870e64a7a638de1
 SHA512 
283f2f059181c3ba79799cb0b474bf9c5b876c528f1779b72b86a4b4087bfa73afc875dca5f454d527d5b3f0bfb3cc59531b59830f60e426bd9ef7bc65302698
+DIST moodle-3.7.9.tgz 45879636 BLAKE2B 
d07f080ed7333c575a04c813c0ffe4fce26ded2f1df267fdf5a1c5b9b787859d9d0c8d688dc435dd51f9850335528edb15a07b5a37200acca097f15c522e94df
 SHA512 
22452ea2b497aeedba6be739f573c8ca1d4dec3aca401f1ce6aac3fa96411f94fc72aeef895a5c35b97112fb6dd1d836b421fa26740a3dcb6936ae88d4267b9f
+DIST moodle-3.8.6.tgz 53308269 BLAKE2B 
20e722bbcd1f4575fa4450b6d7cefd1d882322776975f47940f49300f6c6a4bb9b80dae9e936207c5168a8847ae5d77e535d722aed07b68c1c29bad472cc6b74
 SHA512 
c3e63d6872fc476391747af03f25f0153a51dcc8a8a81d0330bd368d8bef9703dac700bf975a1891e701faed28227dd4d26a5d61255ca4b5bb349f91db66f20e
+DIST moodle-3.9.3.tgz 57048773 BLAKE2B 
21721718ae19c42c61ad4f0d971887e4bf545b88126ab12570d3a9b54e33821b0a99708adcbed78d49ed324d8525a2410db8988b614f76513b61067cb9e4ecc2
 SHA512 
830e81f28e54c8ebbb4528fe113c1b1b345bb47c80abc725b6afd8111d92315d5af4c82e4241d235bdd22a1b9324b1e63cc3a66bdfa352a768c4604adbec4bdc

diff --git a/www-apps/moodle/moodle-3.9.2.ebuild 
b/www-apps/moodle/moodle-3.10.ebuild
similarity index 100%
copy from www-apps/moodle/moodle-3.9.2.ebuild
copy to www-apps/moodle/moodle-3.10.ebuild

diff --git a/www-apps/moodle/moodle-3.5.14.ebuild 
b/www-apps/moodle/moodle-3.5.15.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.14.ebuild
rename to www-apps/moodle/moodle-3.5.15.ebuild

diff --git a/www-apps/moodle/moodle-3.7.8.ebuild 
b/www-apps/moodle/moodle-3.7.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.8.ebuild
rename to www-apps/moodle/moodle-3.7.9.ebuild

diff --git a/www-apps/moodle/moodle-3.8.5.ebuild 
b/www-apps/moodle/moodle-3.8.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.5.ebuild
rename to www-apps/moodle/moodle-3.8.6.ebuild

diff --git a/www-apps/moodle/moodle-3.9.2.ebuild 
b/www-apps/moodle/moodle-3.9.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.2.ebuild
rename to www-apps/moodle/moodle-3.9.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-09-12 Thread Anthony G. Basile
commit: 837331ffb33cf5fc3a30f914f9d3a68167d394cc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Sep 12 15:11:19 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Sep 12 15:11:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=837331ff

www-apps/moodle: version bumps to 3.5.14, 3.7.8, 3.8.5, 3.9.2

Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.5.13.ebuild => moodle-3.5.14.ebuild} | 0
 www-apps/moodle/{moodle-3.7.7.ebuild => moodle-3.7.8.ebuild}   | 0
 www-apps/moodle/{moodle-3.8.4.ebuild => moodle-3.8.5.ebuild}   | 0
 www-apps/moodle/{moodle-3.9.1.ebuild => moodle-3.9.2.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 49afca8716e..0ee6b4cd2ba 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.5.13.tgz 46770141 BLAKE2B 
4e09eb7252b416d9649d698ab231ee0a13b9381b21cb62c04d59c246ce6c7014dfbe05df638fd5b4b01906e30f5fc0a3f8b2d9d4caef19e14865231320d9f65f
 SHA512 
39988c64e86f055368373119d89cdce81308872f885918f57c96bfe76c4eb1a80407ce23d9e95404d1026a1db56794e7a8324354eb3abf614b2e8b20226fec66
-DIST moodle-3.7.7.tgz 45868976 BLAKE2B 
060030e7c728f430a3062a3e033bf956fb90ea9b9ec8a43475497db06a4fad756becedc713126d3dff8410c47d83093c6d0a53dfaef5bd8a5ebb5ca7e0fa37da
 SHA512 
5ed1b267f322681fe5895a127566ea0047afdc5799a4de084bfe752a387b4f61bbb7a105d714de2ef37f11762ed57783a1b8958c52231b02817a8205de8fb825
-DIST moodle-3.8.4.tgz 53237580 BLAKE2B 
e8538edda772bd092d0374676ddb99aca46c35148a8e7704ed25c5e4c641d3618674c354241bedc0a3a06c40e0e4f4ac3e5af20b8b6003df385f17469b6f2de5
 SHA512 
efcca1091b4ece1eb216955dc407894a31bccad276944caede8392cbfc2b29cc6bf37006e2e3c4ad6267bc24c3307c50da27f49c07496b14ab1790b7ce287191
-DIST moodle-3.9.1.tgz 56964609 BLAKE2B 
576477c2b818d27f9e57cca730e2ad127b00b92729421304e3a6b7ff097ab65a2b6f94f760b233df7f8e9a89786b7f71e0f9aab3fa533362a2f1893b792d2509
 SHA512 
cdb07d92ca56c0a64810a881b8206111885fad9e1d1fb86649ae1bd85f2cb8670362f973447ff2a69a5420d5a56a5184beeb7d6b835c6b8624823f143380e6c2
+DIST moodle-3.5.14.tgz 46781703 BLAKE2B 
3f6931c93507c33ed96d19a02a4b221ebe88b1c7d71d8c4780784c5683c8753600fecf2e9c71f9b9dbdcdfa5163acff8c116a161d6f0812547caf00f5860
 SHA512 
669dd2a5477a81f1a3af35ec25162e9c900220c21c070b509ed8d33ece9dc0ced23050058d90901dbaeed53904ea0c512733ff040d6b710b71d0d478c9df
+DIST moodle-3.7.8.tgz 45869720 BLAKE2B 
3f7f7fb45aa8f3fee53905f812166a99f8781e571cdd325c96c084e40141c3170949a32f865cbb6de628c8f10df9bb78c81a1151804b0da79d93fe70b19ed79d
 SHA512 
4790ddf7d5775d5051e31655aa244de7eb2df6e0248d667ec14e08ebe190323bfffdf41a3aff8171bc4229925a32a7400471c2d89fdd1344751f285b2a00c588
+DIST moodle-3.8.5.tgz 53282545 BLAKE2B 
8402f5fc7a7a2e5e4d890ac6853d7bb87550cce4fcc502cab9ab404111987f9048662da9be79d6afb8089c0dc8bd300e938a46612cf69304ea37b39dedc4309d
 SHA512 
fa2ccb2aa00a19911f290ed8df87af7a8439807cecf054a5cf87e9c860ace05ed2c484be091ce44cdb558c36631a0f03a87d7101c015a209e3ebbd5c70217e62
+DIST moodle-3.9.2.tgz 57013075 BLAKE2B 
465244f19c5574170c7bc830e5380ed76e59ba7f322f72847594797196af391a49167f9e5fc8341dea086af00fab8f41f857c93497d54b8b25fe7fc90b2f24ed
 SHA512 
76b6753d806bd771f5531a8adc669e36a00b71d41e3fee3eb165cd74a44de8ed027d57fbdaea67f0d9c88fdf14aac9e3367d39416845da68ccf7cebecb70bc5a

diff --git a/www-apps/moodle/moodle-3.5.13.ebuild 
b/www-apps/moodle/moodle-3.5.14.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.13.ebuild
rename to www-apps/moodle/moodle-3.5.14.ebuild

diff --git a/www-apps/moodle/moodle-3.7.7.ebuild 
b/www-apps/moodle/moodle-3.7.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.7.ebuild
rename to www-apps/moodle/moodle-3.7.8.ebuild

diff --git a/www-apps/moodle/moodle-3.8.4.ebuild 
b/www-apps/moodle/moodle-3.8.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.4.ebuild
rename to www-apps/moodle/moodle-3.8.5.ebuild

diff --git a/www-apps/moodle/moodle-3.9.1.ebuild 
b/www-apps/moodle/moodle-3.9.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.9.1.ebuild
rename to www-apps/moodle/moodle-3.9.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-07-13 Thread Anthony G. Basile
commit: c187d4400a50e98b2d2ffcada8ef7a4128d1bdc6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jul 13 16:48:11 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jul 13 16:48:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c187d440

www-apps/moodle: version bumps to 3.5.13, 3.7.7, 3.8.4, 3.9.1

Also drop 3.6.10.

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-3.5.12.ebuild => moodle-3.5.13.ebuild} |   0
 www-apps/moodle/moodle-3.6.10.ebuild   | 120 -
 .../{moodle-3.7.6.ebuild => moodle-3.7.7.ebuild}   |   0
 .../{moodle-3.8.3.ebuild => moodle-3.8.4.ebuild}   |   0
 .../{moodle-3.9.ebuild => moodle-3.9.1.ebuild} |   0
 6 files changed, 4 insertions(+), 125 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index fc1fdc75580..49afca8716e 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-3.5.12.tgz 46771916 BLAKE2B 
cb22c3a1548d2e01b309375ef3e422faa1a1603cf0205318fc18553e6ad92842c9d38db51fa4739f0b7ba969ce535d91d6c7bc79af954da61bd628cab15701ff
 SHA512 
22c47324a259b98fc28a5f7b8061952b46bd628f2d41f7c9a0952c5d31517584b580284218743da841a8bf17ceb03ad87e1a31495bbcff7cdaac563ac2ef56de
-DIST moodle-3.6.10.tgz 47830177 BLAKE2B 
f28ce1b32cc4cec2eb256a9a3ad37f224e637e5e4720af4914dff80eec07cdfe738546545e9fc3db7a88517b0c10fc16a942515b3aa011d4d7588fbc2c26fffe
 SHA512 
1ac374b1805f3a2be253279384f81c11d717eb6d9598c42490254912fe3720cba22c31525f3435785d270eda5a4340c79db43070973ebac3059549a322cfdbce
-DIST moodle-3.7.6.tgz 45867618 BLAKE2B 
901a0d953e1a3329c817c032610ad797a34458fa9716ab9dcb51775faebdd30593596694ed72cbb0b0a45bb1969a373f4792edce3aa530b3aeeb3cb551a3
 SHA512 
eaf8eeed256e9a942a5003f24bdd56ec3378d02fd33a4807b06fe2df083c5fe343014bda19d49791d20d038dbc3bc2a86e20a2e2f9fc25b45b3c00d8728c6ff1
-DIST moodle-3.8.3.tgz 53221103 BLAKE2B 
7bf36c7affbe71eab027954e6690eb45137a49bad136511efe90f843de00d31b94071cac37a8ddc3f22565df960454047b42f5839ef58177b18d2737317b9c84
 SHA512 
d68f99717e7283f95a050d39879bffec8fe210f83d970fd5b14655be6546bf0848b75fd44bca3376b1bb7aba274c05a58b0b01d430cfbffebc02355c4a2b3759
-DIST moodle-3.9.tgz 56958303 BLAKE2B 
81b4a2adab014d9e67d2a400592db56777dcecf7b16f7495f941472a8a49af74acd732d4198f2821910a1771995c85d998e1fe58ba4d6db7fc3dd4e1892cda41
 SHA512 
693a77fdd66ecfa9e1418e01c543d575aa8468b267de0a1dcfb6df369adc5b73223c959e57947cb56fafa94d269fbd36fd652ddf0b84ed8d5397702501a86e01
+DIST moodle-3.5.13.tgz 46770141 BLAKE2B 
4e09eb7252b416d9649d698ab231ee0a13b9381b21cb62c04d59c246ce6c7014dfbe05df638fd5b4b01906e30f5fc0a3f8b2d9d4caef19e14865231320d9f65f
 SHA512 
39988c64e86f055368373119d89cdce81308872f885918f57c96bfe76c4eb1a80407ce23d9e95404d1026a1db56794e7a8324354eb3abf614b2e8b20226fec66
+DIST moodle-3.7.7.tgz 45868976 BLAKE2B 
060030e7c728f430a3062a3e033bf956fb90ea9b9ec8a43475497db06a4fad756becedc713126d3dff8410c47d83093c6d0a53dfaef5bd8a5ebb5ca7e0fa37da
 SHA512 
5ed1b267f322681fe5895a127566ea0047afdc5799a4de084bfe752a387b4f61bbb7a105d714de2ef37f11762ed57783a1b8958c52231b02817a8205de8fb825
+DIST moodle-3.8.4.tgz 53237580 BLAKE2B 
e8538edda772bd092d0374676ddb99aca46c35148a8e7704ed25c5e4c641d3618674c354241bedc0a3a06c40e0e4f4ac3e5af20b8b6003df385f17469b6f2de5
 SHA512 
efcca1091b4ece1eb216955dc407894a31bccad276944caede8392cbfc2b29cc6bf37006e2e3c4ad6267bc24c3307c50da27f49c07496b14ab1790b7ce287191
+DIST moodle-3.9.1.tgz 56964609 BLAKE2B 
576477c2b818d27f9e57cca730e2ad127b00b92729421304e3a6b7ff097ab65a2b6f94f760b233df7f8e9a89786b7f71e0f9aab3fa533362a2f1893b792d2509
 SHA512 
cdb07d92ca56c0a64810a881b8206111885fad9e1d1fb86649ae1bd85f2cb8670362f973447ff2a69a5420d5a56a5184beeb7d6b835c6b8624823f143380e6c2

diff --git a/www-apps/moodle/moodle-3.5.12.ebuild 
b/www-apps/moodle/moodle-3.5.13.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.12.ebuild
rename to www-apps/moodle/moodle-3.5.13.ebuild

diff --git a/www-apps/moodle/moodle-3.6.10.ebuild 
b/www-apps/moodle/moodle-3.6.10.ebuild
deleted file mode 100644
index 8b94917f96c..000
--- a/www-apps/moodle/moodle-3.6.10.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit webapp
-
-MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-06-20 Thread Anthony G. Basile
commit: 0a6efbdeaf19538076fbc58822988acd48e69d53
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jun 20 14:16:41 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jun 20 14:17:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6efbde

www-apps/moodle: version bump to 3.9

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.9.ebuild | 120 ++
 2 files changed, 121 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index d1919e5e17f..fc1fdc75580 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -2,3 +2,4 @@ DIST moodle-3.5.12.tgz 46771916 BLAKE2B 
cb22c3a1548d2e01b309375ef3e422faa1a1603c
 DIST moodle-3.6.10.tgz 47830177 BLAKE2B 
f28ce1b32cc4cec2eb256a9a3ad37f224e637e5e4720af4914dff80eec07cdfe738546545e9fc3db7a88517b0c10fc16a942515b3aa011d4d7588fbc2c26fffe
 SHA512 
1ac374b1805f3a2be253279384f81c11d717eb6d9598c42490254912fe3720cba22c31525f3435785d270eda5a4340c79db43070973ebac3059549a322cfdbce
 DIST moodle-3.7.6.tgz 45867618 BLAKE2B 
901a0d953e1a3329c817c032610ad797a34458fa9716ab9dcb51775faebdd30593596694ed72cbb0b0a45bb1969a373f4792edce3aa530b3aeeb3cb551a3
 SHA512 
eaf8eeed256e9a942a5003f24bdd56ec3378d02fd33a4807b06fe2df083c5fe343014bda19d49791d20d038dbc3bc2a86e20a2e2f9fc25b45b3c00d8728c6ff1
 DIST moodle-3.8.3.tgz 53221103 BLAKE2B 
7bf36c7affbe71eab027954e6690eb45137a49bad136511efe90f843de00d31b94071cac37a8ddc3f22565df960454047b42f5839ef58177b18d2737317b9c84
 SHA512 
d68f99717e7283f95a050d39879bffec8fe210f83d970fd5b14655be6546bf0848b75fd44bca3376b1bb7aba274c05a58b0b01d430cfbffebc02355c4a2b3759
+DIST moodle-3.9.tgz 56958303 BLAKE2B 
81b4a2adab014d9e67d2a400592db56777dcecf7b16f7495f941472a8a49af74acd732d4198f2821910a1771995c85d998e1fe58ba4d6db7fc3dd4e1892cda41
 SHA512 
693a77fdd66ecfa9e1418e01c543d575aa8468b267de0a1dcfb6df369adc5b73223c959e57947cb56fafa94d269fbd36fd652ddf0b84ed8d5397702501a86e01

diff --git a/www-apps/moodle/moodle-3.9.ebuild 
b/www-apps/moodle/moodle-3.9.ebuild
new file mode 100644
index 000..1012b291cbc
--- /dev/null
+++ b/www-apps/moodle/moodle-3.9.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit webapp
+
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3+"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.2[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-05-10 Thread Anthony G. Basile
commit: 3a883b3d835f552366c08960bf0080acf3327667
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun May 10 20:44:36 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun May 10 20:44:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a883b3d

www-apps/moodle: version bumps to 3.5.12 3.6.10 3.7.6 3.8.3

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.5.11.ebuild => moodle-3.5.12.ebuild} | 0
 www-apps/moodle/{moodle-3.6.9.ebuild => moodle-3.6.10.ebuild}  | 0
 www-apps/moodle/{moodle-3.7.5.ebuild => moodle-3.7.6.ebuild}   | 0
 www-apps/moodle/{moodle-3.8.2.ebuild => moodle-3.8.3.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index c544c38cb72..d1919e5e17f 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.5.11.tgz 46764593 BLAKE2B 
0b397b18747c4a1d817ae0664175a64041a28eb30d45ac423a7fb1c3befeab68ed9054dade2715b4b43cd811b9bde67a081fc802b15684417d49fb7e8d783299
 SHA512 
c85ec2567bff64b9d304d3de3ed92c24d3a83abb34b92ecdc5bb2ea31a4e3964c1739815322f5d5743e500e8f39ad455cb63b4de447557084e40e463a5cba9fd
-DIST moodle-3.6.9.tgz 47830473 BLAKE2B 
ddf50ae51eeec62837eee86871a74fe6fae7e26e427f68a555c1d1f9b0c3deeb496215a841e5ded374d2f3786b686591a19f1867fd8343928d18ca0acfe88b5f
 SHA512 
4024cec6c98607544de5a2f7ffdf38e2e739b94056a50a695eed90ab84c7b7e9373d72b55db9081741ced902d5036f156367ddb279e5371a8dc77056157a1aac
-DIST moodle-3.7.5.tgz 45830443 BLAKE2B 
8edd5a6de29b3d2a12837dc374c18c9f4678517f0707ff1d810928d771aedb157899dee0f7f8b1e1637a714d23afffe3985e364279a5a72c9feaf92ff4036b84
 SHA512 
9e54277da9a3da92195516c69b020f3dd32b27dd88eeb385d441d79c8415dd8863a831f679ebb8dc671c32a160bc84ab56c74c8cbd5b1a32da58fc65c8a137d2
-DIST moodle-3.8.2.tgz 53178996 BLAKE2B 
440c93730ebe3a37c0d0deb8c4e53bf171c9a0d183fd5c6ddeb0a246fd7c941d351bdcded47e0c72c02004ac7b9341bdb429bc29f4c5195f6a2c7e66bde8fa39
 SHA512 
c6261195d086c2a6f04b1853bf70cd24ed4449976b11316eee19961bcf0c8fc8b7cac3497598e3606da48ec5286ca8c83bbef2074e90bda957a96672cf3c4599
+DIST moodle-3.5.12.tgz 46771916 BLAKE2B 
cb22c3a1548d2e01b309375ef3e422faa1a1603cf0205318fc18553e6ad92842c9d38db51fa4739f0b7ba969ce535d91d6c7bc79af954da61bd628cab15701ff
 SHA512 
22c47324a259b98fc28a5f7b8061952b46bd628f2d41f7c9a0952c5d31517584b580284218743da841a8bf17ceb03ad87e1a31495bbcff7cdaac563ac2ef56de
+DIST moodle-3.6.10.tgz 47830177 BLAKE2B 
f28ce1b32cc4cec2eb256a9a3ad37f224e637e5e4720af4914dff80eec07cdfe738546545e9fc3db7a88517b0c10fc16a942515b3aa011d4d7588fbc2c26fffe
 SHA512 
1ac374b1805f3a2be253279384f81c11d717eb6d9598c42490254912fe3720cba22c31525f3435785d270eda5a4340c79db43070973ebac3059549a322cfdbce
+DIST moodle-3.7.6.tgz 45867618 BLAKE2B 
901a0d953e1a3329c817c032610ad797a34458fa9716ab9dcb51775faebdd30593596694ed72cbb0b0a45bb1969a373f4792edce3aa530b3aeeb3cb551a3
 SHA512 
eaf8eeed256e9a942a5003f24bdd56ec3378d02fd33a4807b06fe2df083c5fe343014bda19d49791d20d038dbc3bc2a86e20a2e2f9fc25b45b3c00d8728c6ff1
+DIST moodle-3.8.3.tgz 53221103 BLAKE2B 
7bf36c7affbe71eab027954e6690eb45137a49bad136511efe90f843de00d31b94071cac37a8ddc3f22565df960454047b42f5839ef58177b18d2737317b9c84
 SHA512 
d68f99717e7283f95a050d39879bffec8fe210f83d970fd5b14655be6546bf0848b75fd44bca3376b1bb7aba274c05a58b0b01d430cfbffebc02355c4a2b3759

diff --git a/www-apps/moodle/moodle-3.5.11.ebuild 
b/www-apps/moodle/moodle-3.5.12.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.11.ebuild
rename to www-apps/moodle/moodle-3.5.12.ebuild

diff --git a/www-apps/moodle/moodle-3.6.9.ebuild 
b/www-apps/moodle/moodle-3.6.10.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.9.ebuild
rename to www-apps/moodle/moodle-3.6.10.ebuild

diff --git a/www-apps/moodle/moodle-3.7.5.ebuild 
b/www-apps/moodle/moodle-3.7.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.5.ebuild
rename to www-apps/moodle/moodle-3.7.6.ebuild

diff --git a/www-apps/moodle/moodle-3.8.2.ebuild 
b/www-apps/moodle/moodle-3.8.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.2.ebuild
rename to www-apps/moodle/moodle-3.8.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-04-12 Thread Anthony G. Basile
commit: 6823d94a11c713bc244338486b38100e2ac39d47
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Apr 13 02:02:01 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Apr 13 02:02:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6823d94a

www-apps/moodle: keyword ~arm, bug #704826

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/moodle-3.5.11.ebuild | 2 +-
 www-apps/moodle/moodle-3.6.9.ebuild  | 2 +-
 www-apps/moodle/moodle-3.7.5.ebuild  | 2 +-
 www-apps/moodle/moodle-3.8.2.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/moodle-3.5.11.ebuild 
b/www-apps/moodle/moodle-3.5.11.ebuild
index c06e0951f7f..8b94917f96c 100644
--- a/www-apps/moodle/moodle-3.5.11.ebuild
+++ b/www-apps/moodle/moodle-3.5.11.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"

diff --git a/www-apps/moodle/moodle-3.6.9.ebuild 
b/www-apps/moodle/moodle-3.6.9.ebuild
index c06e0951f7f..8b94917f96c 100644
--- a/www-apps/moodle/moodle-3.6.9.ebuild
+++ b/www-apps/moodle/moodle-3.6.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"

diff --git a/www-apps/moodle/moodle-3.7.5.ebuild 
b/www-apps/moodle/moodle-3.7.5.ebuild
index bf58747413f..53ac6f44ea4 100644
--- a/www-apps/moodle/moodle-3.7.5.ebuild
+++ b/www-apps/moodle/moodle-3.7.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"

diff --git a/www-apps/moodle/moodle-3.8.2.ebuild 
b/www-apps/moodle/moodle-3.8.2.ebuild
index bf58747413f..53ac6f44ea4 100644
--- a/www-apps/moodle/moodle-3.8.2.ebuild
+++ b/www-apps/moodle/moodle-3.8.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
 LICENSE="GPL-3+"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 
 DB_FLAGS="mysqli?,mssql?,postgres?"



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-03-08 Thread Anthony G. Basile
commit: 019b2bbd2d9e782f06655b7407a8bd441e068de2
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Mar  8 16:53:22 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Mar  8 16:53:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=019b2bbd

www-apps/moodle: version bumps to 3.5.11, 3.6.9, 3.7.5, 3.8.2

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.5.10.ebuild => moodle-3.5.11.ebuild} | 0
 www-apps/moodle/{moodle-3.6.8.ebuild => moodle-3.6.9.ebuild}   | 0
 www-apps/moodle/{moodle-3.7.4.ebuild => moodle-3.7.5.ebuild}   | 0
 www-apps/moodle/{moodle-3.8.1.ebuild => moodle-3.8.2.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 04db072bda4..c544c38cb72 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.5.10.tgz 46764236 BLAKE2B 
493e8bd73c01e5b5bded42270e41a822820695c8f52c809cc39ed5f15b091f3969d16f25d3bd0489d0c72f571e4875f69c9faf7cfc5cab342745d3a0ca2d4635
 SHA512 
5a5752a10a5507f79077c86ca73d540ef0827dbded0509962be09c5af63f19b8f9ea84943151e3055a00d574107ec8a222e332425def7162ce44fd7a91c4b582
-DIST moodle-3.6.8.tgz 47819466 BLAKE2B 
2462019c3a42a55a71d388ff22d2bea5a665a544b7abd65ea48b7bf91ea6e410055468f3f69a973c5224e677786b1fa69e44799610cba4b97c2706545214dc8e
 SHA512 
0c5b849790cc63d2fa12a94fe38e3bb1a161d673a817d48907af161c1547fdb7e4832c06067286abc96435ec6313a9cb916a921b9bea71f2263dd70f45f28ed8
-DIST moodle-3.7.4.tgz 45809161 BLAKE2B 
37a850036adeca6f18706b0c5ce1cb5957d5232d0580fc122fabc0b00e805c348940f29db8361eb8163d2cf621fcf39459e1e70d7eae68a4108b5b6c0b2a775f
 SHA512 
113bbdb09526b2d058ccc6c4c5b38f23de7c2bd18c7785f8f81fb57f96ed97fb3e0749e440531abdef415b4fa255036cb7b527afe768d15cf3b06fb6e93bca1a
-DIST moodle-3.8.1.tgz 53138166 BLAKE2B 
8083bc3d1c9a72eeb4dd753586120ba95cff44eea4ec0b948e4d301684c69b1100db5db9aff4adc67181a2bcbf55685adda91ce1782708ffcb6d18fb33e63a8c
 SHA512 
bec050a92f682cee03cb70abfc350b7741522898dd21f5b5847f5c2ddfdd785ad404f6f06ed17b31bfa031aebe42bd35e3a205de686bd8627e92b9a919addb4c
+DIST moodle-3.5.11.tgz 46764593 BLAKE2B 
0b397b18747c4a1d817ae0664175a64041a28eb30d45ac423a7fb1c3befeab68ed9054dade2715b4b43cd811b9bde67a081fc802b15684417d49fb7e8d783299
 SHA512 
c85ec2567bff64b9d304d3de3ed92c24d3a83abb34b92ecdc5bb2ea31a4e3964c1739815322f5d5743e500e8f39ad455cb63b4de447557084e40e463a5cba9fd
+DIST moodle-3.6.9.tgz 47830473 BLAKE2B 
ddf50ae51eeec62837eee86871a74fe6fae7e26e427f68a555c1d1f9b0c3deeb496215a841e5ded374d2f3786b686591a19f1867fd8343928d18ca0acfe88b5f
 SHA512 
4024cec6c98607544de5a2f7ffdf38e2e739b94056a50a695eed90ab84c7b7e9373d72b55db9081741ced902d5036f156367ddb279e5371a8dc77056157a1aac
+DIST moodle-3.7.5.tgz 45830443 BLAKE2B 
8edd5a6de29b3d2a12837dc374c18c9f4678517f0707ff1d810928d771aedb157899dee0f7f8b1e1637a714d23afffe3985e364279a5a72c9feaf92ff4036b84
 SHA512 
9e54277da9a3da92195516c69b020f3dd32b27dd88eeb385d441d79c8415dd8863a831f679ebb8dc671c32a160bc84ab56c74c8cbd5b1a32da58fc65c8a137d2
+DIST moodle-3.8.2.tgz 53178996 BLAKE2B 
440c93730ebe3a37c0d0deb8c4e53bf171c9a0d183fd5c6ddeb0a246fd7c941d351bdcded47e0c72c02004ac7b9341bdb429bc29f4c5195f6a2c7e66bde8fa39
 SHA512 
c6261195d086c2a6f04b1853bf70cd24ed4449976b11316eee19961bcf0c8fc8b7cac3497598e3606da48ec5286ca8c83bbef2074e90bda957a96672cf3c4599

diff --git a/www-apps/moodle/moodle-3.5.10.ebuild 
b/www-apps/moodle/moodle-3.5.11.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.10.ebuild
rename to www-apps/moodle/moodle-3.5.11.ebuild

diff --git a/www-apps/moodle/moodle-3.6.8.ebuild 
b/www-apps/moodle/moodle-3.6.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.8.ebuild
rename to www-apps/moodle/moodle-3.6.9.ebuild

diff --git a/www-apps/moodle/moodle-3.7.4.ebuild 
b/www-apps/moodle/moodle-3.7.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.4.ebuild
rename to www-apps/moodle/moodle-3.7.5.ebuild

diff --git a/www-apps/moodle/moodle-3.8.1.ebuild 
b/www-apps/moodle/moodle-3.8.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.8.1.ebuild
rename to www-apps/moodle/moodle-3.8.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2020-01-11 Thread Anthony G. Basile
commit: 331e12dcf05c0ad6be919df93e2ac701d804c2d5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jan 11 22:42:25 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jan 11 22:42:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331e12dc

www-apps/moodle: version bumps to 3.5.10, 3.6.8, 3.7.4, 3.8.1

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  | 8 
 www-apps/moodle/{moodle-3.5.9.ebuild => moodle-3.5.10.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.6.7.ebuild => moodle-3.6.8.ebuild}  | 2 +-
 www-apps/moodle/{moodle-3.8.ebuild => moodle-3.7.4.ebuild}| 2 +-
 www-apps/moodle/{moodle-3.7.3.ebuild => moodle-3.8.1.ebuild}  | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 08c8c57f309..04db072bda4 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.5.9.tgz 46748268 BLAKE2B 
41c1b9f47f088438fddaa3bbf913091610d8b5aece8413944d79ba67381a50c510c257eab56c8a41f755335417549107c4e349134f3d0c39579329efd04cee34
 SHA512 
262449f3c424655d86746c13548187e412575ba4abe5d4bac2bcd64aa8f2ce4ea3fd3663bba8a61c10c9bd9192d5fb1ee19d75484340972a909284bc5d923a2c
-DIST moodle-3.6.7.tgz 47805595 BLAKE2B 
567d179d3f2c600960c979dc54a92de9bf95e0710de20f6dcb304d8d6a528d929b60183f56e707a3254a2c98060c2c3ced62272360912716d8a1cf2fa7bd3b98
 SHA512 
b406fccb8ea572cf14cb8c06e746778b1ce92a170537ed4cd17e1a0977d30e5b8711a7cb36f7d845acc1af31a348faf7cf3b8beca815c1caa8ac0b2c2cf48ae4
-DIST moodle-3.7.3.tgz 45782119 BLAKE2B 
2732e0269d65f213b71e32231f7fff8ba06f2456466f8fa00f9e7f204f0f7160b3552763c555f952a35cbb9344c9494e7122bd9a6f9ecea8b9ca18a8a9d90e07
 SHA512 
e9cb7d633be57ed9a66f54f33d2b2827a0ee18d3e7d48f463e8526b817e470d9d1930dbef557f84d94c1dc20a2543874e3bbbae4ac89eeda62217ac2bbddb14d
-DIST moodle-3.8.tgz 53109307 BLAKE2B 
833160d06cb1068eda5474a4bba5bfb05a80b857c32a92eea2c92eb1bd6fec91fd1098f7172d643a9f0a8a7c567afda395f91d884446ff8c5113eac1d441e79a
 SHA512 
c67803b62d25d3031ea58afea8820d746da144b0ef5c41f659fe0d9a99aeef5f287c4582b3766ec28452495bea03aed78509acd71a203edf990328d31f185bf3
+DIST moodle-3.5.10.tgz 46764236 BLAKE2B 
493e8bd73c01e5b5bded42270e41a822820695c8f52c809cc39ed5f15b091f3969d16f25d3bd0489d0c72f571e4875f69c9faf7cfc5cab342745d3a0ca2d4635
 SHA512 
5a5752a10a5507f79077c86ca73d540ef0827dbded0509962be09c5af63f19b8f9ea84943151e3055a00d574107ec8a222e332425def7162ce44fd7a91c4b582
+DIST moodle-3.6.8.tgz 47819466 BLAKE2B 
2462019c3a42a55a71d388ff22d2bea5a665a544b7abd65ea48b7bf91ea6e410055468f3f69a973c5224e677786b1fa69e44799610cba4b97c2706545214dc8e
 SHA512 
0c5b849790cc63d2fa12a94fe38e3bb1a161d673a817d48907af161c1547fdb7e4832c06067286abc96435ec6313a9cb916a921b9bea71f2263dd70f45f28ed8
+DIST moodle-3.7.4.tgz 45809161 BLAKE2B 
37a850036adeca6f18706b0c5ce1cb5957d5232d0580fc122fabc0b00e805c348940f29db8361eb8163d2cf621fcf39459e1e70d7eae68a4108b5b6c0b2a775f
 SHA512 
113bbdb09526b2d058ccc6c4c5b38f23de7c2bd18c7785f8f81fb57f96ed97fb3e0749e440531abdef415b4fa255036cb7b527afe768d15cf3b06fb6e93bca1a
+DIST moodle-3.8.1.tgz 53138166 BLAKE2B 
8083bc3d1c9a72eeb4dd753586120ba95cff44eea4ec0b948e4d301684c69b1100db5db9aff4adc67181a2bcbf55685adda91ce1782708ffcb6d18fb33e63a8c
 SHA512 
bec050a92f682cee03cb70abfc350b7741522898dd21f5b5847f5c2ddfdd785ad404f6f06ed17b31bfa031aebe42bd35e3a205de686bd8627e92b9a919addb4c

diff --git a/www-apps/moodle/moodle-3.5.9.ebuild 
b/www-apps/moodle/moodle-3.5.10.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.5.9.ebuild
rename to www-apps/moodle/moodle-3.5.10.ebuild
index 07dbb6d2bb5..c06e0951f7f 100644
--- a/www-apps/moodle/moodle-3.5.9.ebuild
+++ b/www-apps/moodle/moodle-3.5.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.6.7.ebuild 
b/www-apps/moodle/moodle-3.6.8.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.6.7.ebuild
rename to www-apps/moodle/moodle-3.6.8.ebuild
index 07dbb6d2bb5..c06e0951f7f 100644
--- a/www-apps/moodle/moodle-3.6.7.ebuild
+++ b/www-apps/moodle/moodle-3.6.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/www-apps/moodle/moodle-3.8.ebuild 
b/www-apps/moodle/moodle-3.7.4.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.8.ebuild
rename to www-apps/moodle/moodle-3.7.4.ebuild
index f9ed8bfdb6f..bf58747413f 100644
--- a/www-apps/moodle/moodle-3.8.ebuild
+++ b/www-apps/moodle/moodle-3.7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-12-03 Thread Anthony G. Basile
commit: 45f8af881e01f34cd8cfb565f0dbc183603a7d8d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec  3 15:23:56 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec  3 15:23:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f8af88

www-apps/moodle: remove REQUIRED_USE

Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/moodle-3.5.9.ebuild | 16 +++-
 www-apps/moodle/moodle-3.6.7.ebuild | 16 +++-
 www-apps/moodle/moodle-3.7.3.ebuild | 16 +++-
 www-apps/moodle/moodle-3.8.ebuild   | 16 +++-
 4 files changed, 28 insertions(+), 36 deletions(-)

diff --git a/www-apps/moodle/moodle-3.5.9.ebuild 
b/www-apps/moodle/moodle-3.5.9.ebuild
index 39f86506435..07dbb6d2bb5 100644
--- a/www-apps/moodle/moodle-3.5.9.ebuild
+++ b/www-apps/moodle/moodle-3.5.9.ebuild
@@ -29,7 +29,6 @@ PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 
 IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
 
 # No forced dependency on
 #  mssql? - lives on a windows server
@@ -57,14 +56,13 @@ pkg_setup() {
fi
done
 
-   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
-   #if [[ ${DB_COUNT} -eq 0 ]]; then
-   #   eerror
-   #   eerror "No database selected in your USE flags,"
-   #   eerror "You must select at least one."
-   #   eerror
-   #   die
-   #fi
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
 
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""

diff --git a/www-apps/moodle/moodle-3.6.7.ebuild 
b/www-apps/moodle/moodle-3.6.7.ebuild
index 39f86506435..07dbb6d2bb5 100644
--- a/www-apps/moodle/moodle-3.6.7.ebuild
+++ b/www-apps/moodle/moodle-3.6.7.ebuild
@@ -29,7 +29,6 @@ PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 
 IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
 
 # No forced dependency on
 #  mssql? - lives on a windows server
@@ -57,14 +56,13 @@ pkg_setup() {
fi
done
 
-   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
-   #if [[ ${DB_COUNT} -eq 0 ]]; then
-   #   eerror
-   #   eerror "No database selected in your USE flags,"
-   #   eerror "You must select at least one."
-   #   eerror
-   #   die
-   #fi
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
 
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""

diff --git a/www-apps/moodle/moodle-3.7.3.ebuild 
b/www-apps/moodle/moodle-3.7.3.ebuild
index 8ced91e639b..f9ed8bfdb6f 100644
--- a/www-apps/moodle/moodle-3.7.3.ebuild
+++ b/www-apps/moodle/moodle-3.7.3.ebuild
@@ -29,7 +29,6 @@ PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 
 IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
 
 # No forced dependency on
 #  mssql? - lives on a windows server
@@ -57,14 +56,13 @@ pkg_setup() {
fi
done
 
-   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
-   #if [[ ${DB_COUNT} -eq 0 ]]; then
-   #   eerror
-   #   eerror "No database selected in your USE flags,"
-   #   eerror "You must select at least one."
-   #   eerror
-   #   die
-   #fi
+   if [[ ${DB_COUNT} -eq 0 ]]; then
+   eerror
+   eerror "No database selected in your USE flags,"
+   eerror "You must select at least one."
+   eerror
+   die
+   fi
 
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""

diff --git a/www-apps/moodle/moodle-3.8.ebuild 
b/www-apps/moodle/moodle-3.8.ebuild
index 8ced91e639b..f9ed8bfdb6f 100644
--- a/www-apps/moodle/moodle-3.8.ebuild
+++ b/www-apps/moodle/moodle-3.8.ebuild
@@ -29,7 +29,6 @@ PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
 PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
 
 IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
 
 # No forced dependency on
 #  mssql? - lives on a windows server
@@ -57,14 +56,13 @@ pkg_setup() {
fi
done
 
-   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
-   #if [[ ${DB_COUNT} -eq 0 ]]; then
-   #   eerror
-   #   eerror "No database 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-11-23 Thread Anthony G. Basile
commit: b212dce4a6e6bce249edd30208dc014d70e466d2
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 23 15:30:35 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 23 15:33:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b212dce4

www-apps/moodle: bump all ebuilds to EAPI=7

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/moodle-3.5.9.ebuild | 7 +++
 www-apps/moodle/moodle-3.6.7.ebuild | 7 +++
 www-apps/moodle/moodle-3.7.3.ebuild | 7 +++
 www-apps/moodle/moodle-3.8.ebuild   | 7 +++
 4 files changed, 12 insertions(+), 16 deletions(-)

diff --git a/www-apps/moodle/moodle-3.5.9.ebuild 
b/www-apps/moodle/moodle-3.5.9.ebuild
index 1c5e865ec67..d882323cf8f 100644
--- a/www-apps/moodle/moodle-3.5.9.ebuild
+++ b/www-apps/moodle/moodle-3.5.9.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit versionator webapp
+inherit webapp
 
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
 
 DESCRIPTION="The Moodle Course Management System"
 HOMEPAGE="https://moodle.org;

diff --git a/www-apps/moodle/moodle-3.6.7.ebuild 
b/www-apps/moodle/moodle-3.6.7.ebuild
index 1c5e865ec67..d882323cf8f 100644
--- a/www-apps/moodle/moodle-3.6.7.ebuild
+++ b/www-apps/moodle/moodle-3.6.7.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit versionator webapp
+inherit webapp
 
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
 
 DESCRIPTION="The Moodle Course Management System"
 HOMEPAGE="https://moodle.org;

diff --git a/www-apps/moodle/moodle-3.7.3.ebuild 
b/www-apps/moodle/moodle-3.7.3.ebuild
index 02e7fab6592..de089c34fa0 100644
--- a/www-apps/moodle/moodle-3.7.3.ebuild
+++ b/www-apps/moodle/moodle-3.7.3.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit versionator webapp
+inherit webapp
 
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
 
 DESCRIPTION="The Moodle Course Management System"
 HOMEPAGE="https://moodle.org;

diff --git a/www-apps/moodle/moodle-3.8.ebuild 
b/www-apps/moodle/moodle-3.8.ebuild
index 02e7fab6592..de089c34fa0 100644
--- a/www-apps/moodle/moodle-3.8.ebuild
+++ b/www-apps/moodle/moodle-3.8.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
-inherit versionator webapp
+inherit webapp
 
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+MY_BRANCH="stable$(ver_cut 1)$(ver_cut 2)"
 
 DESCRIPTION="The Moodle Course Management System"
 HOMEPAGE="https://moodle.org;



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-11-23 Thread Anthony G. Basile
commit: 73e895b1c272038c6e4c294d0934dcc7ccef25b9
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 23 15:32:52 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 23 15:33:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e895b1

www-apps/moodle: update license to GPL-3+

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/moodle-3.5.9.ebuild | 2 +-
 www-apps/moodle/moodle-3.6.7.ebuild | 2 +-
 www-apps/moodle/moodle-3.7.3.ebuild | 2 +-
 www-apps/moodle/moodle-3.8.ebuild   | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/moodle-3.5.9.ebuild 
b/www-apps/moodle/moodle-3.5.9.ebuild
index d882323cf8f..39f86506435 100644
--- a/www-apps/moodle/moodle-3.5.9.ebuild
+++ b/www-apps/moodle/moodle-3.5.9.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://moodle.org;
 SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2"
+LICENSE="GPL-3+"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 

diff --git a/www-apps/moodle/moodle-3.6.7.ebuild 
b/www-apps/moodle/moodle-3.6.7.ebuild
index d882323cf8f..39f86506435 100644
--- a/www-apps/moodle/moodle-3.6.7.ebuild
+++ b/www-apps/moodle/moodle-3.6.7.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://moodle.org;
 SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2"
+LICENSE="GPL-3+"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 

diff --git a/www-apps/moodle/moodle-3.7.3.ebuild 
b/www-apps/moodle/moodle-3.7.3.ebuild
index de089c34fa0..8ced91e639b 100644
--- a/www-apps/moodle/moodle-3.7.3.ebuild
+++ b/www-apps/moodle/moodle-3.7.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://moodle.org;
 SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2"
+LICENSE="GPL-3+"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 

diff --git a/www-apps/moodle/moodle-3.8.ebuild 
b/www-apps/moodle/moodle-3.8.ebuild
index de089c34fa0..8ced91e639b 100644
--- a/www-apps/moodle/moodle-3.8.ebuild
+++ b/www-apps/moodle/moodle-3.8.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://moodle.org;
 SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
 S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2"
+LICENSE="GPL-3+"
 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #SLOT empty due to webapp
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-11-23 Thread Anthony G. Basile
commit: f2d92dcfe5fde9f84a5784dc6406b2df1b8b6d67
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 23 15:10:30 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 23 15:10:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d92dcf

www-apps/moodle: version bump to 3.8

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.8.ebuild | 123 ++
 2 files changed, 124 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 45c257ea7fb..08c8c57f309 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
 DIST moodle-3.5.9.tgz 46748268 BLAKE2B 
41c1b9f47f088438fddaa3bbf913091610d8b5aece8413944d79ba67381a50c510c257eab56c8a41f755335417549107c4e349134f3d0c39579329efd04cee34
 SHA512 
262449f3c424655d86746c13548187e412575ba4abe5d4bac2bcd64aa8f2ce4ea3fd3663bba8a61c10c9bd9192d5fb1ee19d75484340972a909284bc5d923a2c
 DIST moodle-3.6.7.tgz 47805595 BLAKE2B 
567d179d3f2c600960c979dc54a92de9bf95e0710de20f6dcb304d8d6a528d929b60183f56e707a3254a2c98060c2c3ced62272360912716d8a1cf2fa7bd3b98
 SHA512 
b406fccb8ea572cf14cb8c06e746778b1ce92a170537ed4cd17e1a0977d30e5b8711a7cb36f7d845acc1af31a348faf7cf3b8beca815c1caa8ac0b2c2cf48ae4
 DIST moodle-3.7.3.tgz 45782119 BLAKE2B 
2732e0269d65f213b71e32231f7fff8ba06f2456466f8fa00f9e7f204f0f7160b3552763c555f952a35cbb9344c9494e7122bd9a6f9ecea8b9ca18a8a9d90e07
 SHA512 
e9cb7d633be57ed9a66f54f33d2b2827a0ee18d3e7d48f463e8526b817e470d9d1930dbef557f84d94c1dc20a2543874e3bbbae4ac89eeda62217ac2bbddb14d
+DIST moodle-3.8.tgz 53109307 BLAKE2B 
833160d06cb1068eda5474a4bba5bfb05a80b857c32a92eea2c92eb1bd6fec91fd1098f7172d643a9f0a8a7c567afda395f91d884446ff8c5113eac1d441e79a
 SHA512 
c67803b62d25d3031ea58afea8820d746da144b0ef5c41f659fe0d9a99aeef5f287c4582b3766ec28452495bea03aed78509acd71a203edf990328d31f185bf3

diff --git a/www-apps/moodle/moodle-3.8.ebuild 
b/www-apps/moodle/moodle-3.8.ebuild
new file mode 100644
index 000..02e7fab6592
--- /dev/null
+++ b/www-apps/moodle/moodle-3.8.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+ 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-11-11 Thread Anthony G. Basile
commit: f24a0800c8f4b8871db2289787db2cbd89c0f093
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov 11 21:35:36 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov 11 21:36:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24a0800

www-apps/moodle: version bumps to 3.7.3, 3.6.7, 3.5.9

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.5.8.ebuild => moodle-3.5.9.ebuild} | 0
 www-apps/moodle/{moodle-3.6.6.ebuild => moodle-3.6.7.ebuild} | 0
 www-apps/moodle/{moodle-3.7.2.ebuild => moodle-3.7.3.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index fb9de5c097a..45c257ea7fb 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.5.8.tgz 46729651 BLAKE2B 
dbfd69970ee864d71d5f9f2a65e95f7eb3232b7379c36fd729f7b42c581a7af95e7b22529c67aa074a45be946e089b3259629000ddcbea4b78b6a9c5925d054f
 SHA512 
045877445c3c58fd105219fed75bc3f39a618a64b7811aab3a28db4d45ed4d7210ac8e39d69f19ed19b8d81d9a6608872f3acc00e693b3388f574bb3c7874b0d
-DIST moodle-3.6.6.tgz 4341 BLAKE2B 
36f65b1945f66a7686dfb1880dedc31c711c5b02ce713742dcdfdb9b93fc187912c8d67b2acba11165346c6dcb8d6c844da542254e67c61dca1d39a34eab5abb
 SHA512 
d23f5b63f186b3a45b1d1acf04e9fc9caf222437e739bf93bd38be22d802c38f0bd7487cedba39f0fa943882135245e74fedbb9e5f1afc7929c747e5965242b8
-DIST moodle-3.7.2.tgz 45744766 BLAKE2B 
da801662496e8ff66db8ffe2bd099b5b8bae7b59e8493fa7f727eeb5d8834b0f942c816de1758896d4b0929571f086851c9b3d0d063633e571bdb12dffe7c223
 SHA512 
034722f7a10871965849aaac24bb487c5f0cac8132ef058729d068e538d8e2c3e2215304310b1a50d7cfdee4242c1094cf6d8323a5c2ecc5c98bd9bca295dfa0
+DIST moodle-3.5.9.tgz 46748268 BLAKE2B 
41c1b9f47f088438fddaa3bbf913091610d8b5aece8413944d79ba67381a50c510c257eab56c8a41f755335417549107c4e349134f3d0c39579329efd04cee34
 SHA512 
262449f3c424655d86746c13548187e412575ba4abe5d4bac2bcd64aa8f2ce4ea3fd3663bba8a61c10c9bd9192d5fb1ee19d75484340972a909284bc5d923a2c
+DIST moodle-3.6.7.tgz 47805595 BLAKE2B 
567d179d3f2c600960c979dc54a92de9bf95e0710de20f6dcb304d8d6a528d929b60183f56e707a3254a2c98060c2c3ced62272360912716d8a1cf2fa7bd3b98
 SHA512 
b406fccb8ea572cf14cb8c06e746778b1ce92a170537ed4cd17e1a0977d30e5b8711a7cb36f7d845acc1af31a348faf7cf3b8beca815c1caa8ac0b2c2cf48ae4
+DIST moodle-3.7.3.tgz 45782119 BLAKE2B 
2732e0269d65f213b71e32231f7fff8ba06f2456466f8fa00f9e7f204f0f7160b3552763c555f952a35cbb9344c9494e7122bd9a6f9ecea8b9ca18a8a9d90e07
 SHA512 
e9cb7d633be57ed9a66f54f33d2b2827a0ee18d3e7d48f463e8526b817e470d9d1930dbef557f84d94c1dc20a2543874e3bbbae4ac89eeda62217ac2bbddb14d

diff --git a/www-apps/moodle/moodle-3.5.8.ebuild 
b/www-apps/moodle/moodle-3.5.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.8.ebuild
rename to www-apps/moodle/moodle-3.5.9.ebuild

diff --git a/www-apps/moodle/moodle-3.6.6.ebuild 
b/www-apps/moodle/moodle-3.6.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.6.ebuild
rename to www-apps/moodle/moodle-3.6.7.ebuild

diff --git a/www-apps/moodle/moodle-3.7.2.ebuild 
b/www-apps/moodle/moodle-3.7.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.2.ebuild
rename to www-apps/moodle/moodle-3.7.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-09-07 Thread Anthony G. Basile
commit: aa79e545f9516acda6ac6bbc1abd38e779590165
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Sep  7 14:34:46 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Sep  7 14:34:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa79e545

www-apps/moodle: version bumps to 3.5.8, 3.6.6, 3.7.2

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Anthony G. Basile  gentoo.org>

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.5.7.ebuild => moodle-3.5.8.ebuild} | 0
 www-apps/moodle/{moodle-3.6.5.ebuild => moodle-3.6.6.ebuild} | 0
 www-apps/moodle/{moodle-3.7.1.ebuild => moodle-3.7.2.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index bc13e34d6a1..fb9de5c097a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.5.7.tgz 46717307 BLAKE2B 
5cfc93ca461082483881e92fc1b0a75b09a546631b9008c8f83e23f3c048006c69b79eb2f5950190c665b50266c4cdb0ba930d16693bd88cc1705cd8d3c41bc9
 SHA512 
82d274a9e34c6667a0d6acb7eead82d7945447969cd3237c47fb91f5f068d65943c8d80032493bbcb3ddb9d005465edd6d9e9a3dea2538457f45f2b831920944
-DIST moodle-3.6.5.tgz 47773277 BLAKE2B 
70df4d145c2ea0de086c40f0121f54f673b4e41c4aa4e0c4df21146546ce8fddeb761e4645e5cbf29bc173395495e9707bdad8108f31ffd7fc5146662110fb1c
 SHA512 
0298cdd101a3ae89390678bb5545f9dad1df966a3fb9d04027666fc0dc8b7ea72d4bad859ec9426e8d00721009a3a72f9e52e551a9caf25b007b2215b92bdeb2
-DIST moodle-3.7.1.tgz 45741077 BLAKE2B 
6f52b9754fd321d407607cb9a835f7c093dda4cc8ef273e75d349227fda93137b74640bcb5d05aa0ad859c35a104d617f9fc9608e4c02fd9b5f4f4ed84cf52ef
 SHA512 
4dc5e191eee02bc4fe95a344e4ccc1ac1344b4cc3519479f6a163a48e751b26809997761a86f2270dcab6de3b3efa00275af849c7712131fe0a0df756eac32d4
+DIST moodle-3.5.8.tgz 46729651 BLAKE2B 
dbfd69970ee864d71d5f9f2a65e95f7eb3232b7379c36fd729f7b42c581a7af95e7b22529c67aa074a45be946e089b3259629000ddcbea4b78b6a9c5925d054f
 SHA512 
045877445c3c58fd105219fed75bc3f39a618a64b7811aab3a28db4d45ed4d7210ac8e39d69f19ed19b8d81d9a6608872f3acc00e693b3388f574bb3c7874b0d
+DIST moodle-3.6.6.tgz 4341 BLAKE2B 
36f65b1945f66a7686dfb1880dedc31c711c5b02ce713742dcdfdb9b93fc187912c8d67b2acba11165346c6dcb8d6c844da542254e67c61dca1d39a34eab5abb
 SHA512 
d23f5b63f186b3a45b1d1acf04e9fc9caf222437e739bf93bd38be22d802c38f0bd7487cedba39f0fa943882135245e74fedbb9e5f1afc7929c747e5965242b8
+DIST moodle-3.7.2.tgz 45744766 BLAKE2B 
da801662496e8ff66db8ffe2bd099b5b8bae7b59e8493fa7f727eeb5d8834b0f942c816de1758896d4b0929571f086851c9b3d0d063633e571bdb12dffe7c223
 SHA512 
034722f7a10871965849aaac24bb487c5f0cac8132ef058729d068e538d8e2c3e2215304310b1a50d7cfdee4242c1094cf6d8323a5c2ecc5c98bd9bca295dfa0

diff --git a/www-apps/moodle/moodle-3.5.7.ebuild 
b/www-apps/moodle/moodle-3.5.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.7.ebuild
rename to www-apps/moodle/moodle-3.5.8.ebuild

diff --git a/www-apps/moodle/moodle-3.6.5.ebuild 
b/www-apps/moodle/moodle-3.6.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.5.ebuild
rename to www-apps/moodle/moodle-3.6.6.ebuild

diff --git a/www-apps/moodle/moodle-3.7.1.ebuild 
b/www-apps/moodle/moodle-3.7.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.1.ebuild
rename to www-apps/moodle/moodle-3.7.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-07-07 Thread Anthony G. Basile
commit: 86ebee57b539af053144ab0d64c1e4caabb93f6e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jul  7 20:27:28 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jul  7 20:27:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ebee57

www-apps/moodle: version bump to 3.5.7, 3.6.5, 3.7.1

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.5.6.ebuild => moodle-3.5.7.ebuild} | 0
 www-apps/moodle/{moodle-3.6.4.ebuild => moodle-3.6.5.ebuild} | 0
 www-apps/moodle/{moodle-3.7.ebuild => moodle-3.7.1.ebuild}   | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 217c8d196cc..bc13e34d6a1 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.5.6.tgz 46703461 BLAKE2B 
edd438ffd4f1def04f9619150d8ef486323a5e9f458124d317d36e01eb79e2d0ed0039d8dba43a3956aafc8e92c8d2276b6be730607031ba0e561b62a24488ef
 SHA512 
0a08359576665f78d2370d3f2796dd53cba692c5fe68de7cdf8478bb1f24136c4e78149fa6a3c37118015fdf7a401c50913d151b4b38d9928989255688df73f3
-DIST moodle-3.6.4.tgz 47736743 BLAKE2B 
b3a41b0025651e161a1ee76ec1c121666e8dd0d830a05165b6c4419dff3caccb5fd006434f5e8284b81bd892a1c184d8a008e2b948d3b63c472f31cca55dc77e
 SHA512 
b3b3b138f8a2779dc41f25656a5f2640afa2f3b933d9e2f99065e176d1f5b6c9c4f8bdf8af53af04957eb520043e1c7c53ff6309896e399f4a012f624481ae44
-DIST moodle-3.7.tgz 45708647 BLAKE2B 
b4ce21bd98d91ad81f095c00aaee6c30fac238cf54de079e1021ec94109a24aee97f2d9aff0e99a6594c35cfd8ff7e06b83415109992df90e858d88ae8b66033
 SHA512 
ca3efbb146253e856ff6988abad4bd071e26599ba45e60186e89bda45b06b610de1e88aa165e5ac992e00f23772e932ffe770402c699898d128a3357f02ac895
+DIST moodle-3.5.7.tgz 46717307 BLAKE2B 
5cfc93ca461082483881e92fc1b0a75b09a546631b9008c8f83e23f3c048006c69b79eb2f5950190c665b50266c4cdb0ba930d16693bd88cc1705cd8d3c41bc9
 SHA512 
82d274a9e34c6667a0d6acb7eead82d7945447969cd3237c47fb91f5f068d65943c8d80032493bbcb3ddb9d005465edd6d9e9a3dea2538457f45f2b831920944
+DIST moodle-3.6.5.tgz 47773277 BLAKE2B 
70df4d145c2ea0de086c40f0121f54f673b4e41c4aa4e0c4df21146546ce8fddeb761e4645e5cbf29bc173395495e9707bdad8108f31ffd7fc5146662110fb1c
 SHA512 
0298cdd101a3ae89390678bb5545f9dad1df966a3fb9d04027666fc0dc8b7ea72d4bad859ec9426e8d00721009a3a72f9e52e551a9caf25b007b2215b92bdeb2
+DIST moodle-3.7.1.tgz 45741077 BLAKE2B 
6f52b9754fd321d407607cb9a835f7c093dda4cc8ef273e75d349227fda93137b74640bcb5d05aa0ad859c35a104d617f9fc9608e4c02fd9b5f4f4ed84cf52ef
 SHA512 
4dc5e191eee02bc4fe95a344e4ccc1ac1344b4cc3519479f6a163a48e751b26809997761a86f2270dcab6de3b3efa00275af849c7712131fe0a0df756eac32d4

diff --git a/www-apps/moodle/moodle-3.5.6.ebuild 
b/www-apps/moodle/moodle-3.5.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.6.ebuild
rename to www-apps/moodle/moodle-3.5.7.ebuild

diff --git a/www-apps/moodle/moodle-3.6.4.ebuild 
b/www-apps/moodle/moodle-3.6.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.4.ebuild
rename to www-apps/moodle/moodle-3.6.5.ebuild

diff --git a/www-apps/moodle/moodle-3.7.ebuild 
b/www-apps/moodle/moodle-3.7.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.7.ebuild
rename to www-apps/moodle/moodle-3.7.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-05-21 Thread Anthony G. Basile
commit: 5d43f4ff2598716b7482400b4486273028987f14
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue May 21 13:57:21 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue May 21 13:57:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d43f4ff

www-apps/moodle: add version 3.7

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.7.ebuild | 123 ++
 2 files changed, 124 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 5efb32e5aef..217c8d196cc 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,2 +1,3 @@
 DIST moodle-3.5.6.tgz 46703461 BLAKE2B 
edd438ffd4f1def04f9619150d8ef486323a5e9f458124d317d36e01eb79e2d0ed0039d8dba43a3956aafc8e92c8d2276b6be730607031ba0e561b62a24488ef
 SHA512 
0a08359576665f78d2370d3f2796dd53cba692c5fe68de7cdf8478bb1f24136c4e78149fa6a3c37118015fdf7a401c50913d151b4b38d9928989255688df73f3
 DIST moodle-3.6.4.tgz 47736743 BLAKE2B 
b3a41b0025651e161a1ee76ec1c121666e8dd0d830a05165b6c4419dff3caccb5fd006434f5e8284b81bd892a1c184d8a008e2b948d3b63c472f31cca55dc77e
 SHA512 
b3b3b138f8a2779dc41f25656a5f2640afa2f3b933d9e2f99065e176d1f5b6c9c4f8bdf8af53af04957eb520043e1c7c53ff6309896e399f4a012f624481ae44
+DIST moodle-3.7.tgz 45708647 BLAKE2B 
b4ce21bd98d91ad81f095c00aaee6c30fac238cf54de079e1021ec94109a24aee97f2d9aff0e99a6594c35cfd8ff7e06b83415109992df90e858d88ae8b66033
 SHA512 
ca3efbb146253e856ff6988abad4bd071e26599ba45e60186e89bda45b06b610de1e88aa165e5ac992e00f23772e932ffe770402c699898d128a3357f02ac895

diff --git a/www-apps/moodle/moodle-3.7.ebuild 
b/www-apps/moodle/moodle-3.7.ebuild
new file mode 100644
index 000..02e7fab6592
--- /dev/null
+++ b/www-apps/moodle/moodle-3.7.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.1[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed -i -e "s|mydb|${MYDB}|" config.php
+   fi
+
+   eapply_user
+}
+
+src_install() {
+   webapp_src_preinst
+
+   local MOODLEDATA="${MY_HOSTROOTDIR}"/moodle
+   dodir ${MOODLEDATA}
+   webapp_serverowned -R "${MOODLEDATA}"
+
+   local MOODLEROOT="${MY_HTDOCSDIR}"
+   insinto ${MOODLEROOT}
+   doins -r *
+
+   webapp_configfile "${MOODLEROOT}"/config.php
+
+   if 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-05-13 Thread Anthony G. Basile
commit: 34af7337bdf2251dc132b1a42b8e3ecc0e5480a5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon May 13 13:35:13 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon May 13 13:35:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34af7337

www-apps/moodle: bump to 3.5.6 and 3.6.4, remove unsupported

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 www-apps/moodle/Manifest   |   6 +-
 www-apps/moodle/moodle-3.1.17.ebuild   | 121 
 .../{moodle-3.4.8.ebuild => moodle-3.5.6.ebuild}   |   0
 www-apps/moodle/moodle-3.6.3.ebuild| 123 -
 .../{moodle-3.5.5.ebuild => moodle-3.6.4.ebuild}   |   0
 5 files changed, 2 insertions(+), 248 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index bae1a673daf..5efb32e5aef 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,2 @@
-DIST moodle-3.1.17.tgz 38056353 BLAKE2B 
4192ff89f745a465c8fbbc3979e2359471c31240be8baa3be452da99377f3200292a359fc9b524994bccec3534056042adc2ff33f7423fbf5c6b7c41138a
 SHA512 
2f93b091600c9ad91e6e4f2ef5e246c442081333ecdbc1b4a26f9bea95bbc8e12fae05f484c04dd1330140be086681acde4f18ae45153c8c91d33798c7588ebd
-DIST moodle-3.4.8.tgz 46052218 BLAKE2B 
ac7b0aab7212a2c6af3ae8ecc4f90dc30163f47c0cb6dfdffc719b50211132a8c75b77141aa6da97abda2c1456ee685562d37de47f3c7ad9efdfe4a622d9922f
 SHA512 
e16c818c0cdb778af0364997410545bbbcc78b45015806306e0241b32d7a3e23564e3afe47cc13cb55e7a12418012583f985633700bedfe0c210127de3aa2ac5
-DIST moodle-3.5.5.tgz 46684330 BLAKE2B 
00df00e62c922211f010ae38a759e33f250e74028dd66cf51690debd3c43a2afe5200e320dc0d258a8624784fce8436cd20923ccaacb01f3190f6b67bad10e0f
 SHA512 
9e3fa3551e1cdfef0b2b31421ca625fcf38f90a2121c05247b60987da81cc9a44cc0fbc5d35ee6d7b91fb81317c2b9b0c3ef76988f656e67008f73331004167a
-DIST moodle-3.6.3.tgz 47707084 BLAKE2B 
5bdfca625fe4c96a700524fcaaa36719712b32f37f2ecc4038116accb82ba48438fd8683f0feb67af323567daad32c6a0e8714b648f24d10c304b5ad6f93aca8
 SHA512 
9a583064321ee0929e3df2b194c783dd5322b6d6e7642fdbf9d18cc511b82f73e8007e234998ea2553cb8147dc22fa4d178f2104c6eb2ebc322a9850afba19c5
+DIST moodle-3.5.6.tgz 46703461 BLAKE2B 
edd438ffd4f1def04f9619150d8ef486323a5e9f458124d317d36e01eb79e2d0ed0039d8dba43a3956aafc8e92c8d2276b6be730607031ba0e561b62a24488ef
 SHA512 
0a08359576665f78d2370d3f2796dd53cba692c5fe68de7cdf8478bb1f24136c4e78149fa6a3c37118015fdf7a401c50913d151b4b38d9928989255688df73f3
+DIST moodle-3.6.4.tgz 47736743 BLAKE2B 
b3a41b0025651e161a1ee76ec1c121666e8dd0d830a05165b6c4419dff3caccb5fd006434f5e8284b81bd892a1c184d8a008e2b948d3b63c472f31cca55dc77e
 SHA512 
b3b3b138f8a2779dc41f25656a5f2640afa2f3b933d9e2f99065e176d1f5b6c9c4f8bdf8af53af04957eb520043e1c7c53ff6309896e399f4a012f624481ae44

diff --git a/www-apps/moodle/moodle-3.1.17.ebuild 
b/www-apps/moodle/moodle-3.1.17.ebuild
deleted file mode 100644
index b96de5d5680..000
--- a/www-apps/moodle/moodle-3.1.17.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
-
-# No forced dependency on
-#  mssql? - lives on a windows server
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-9* )
-# which may live on another server.  These USE flags affect the configuration
-# file and the dependency on php.  However other dbs are possible.  See 
config.php
-# and the moodle documentation for other possibilities.
-DEPEND=""
-RDEPEND="
-   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
-   virtual/httpd-php
-   virtual/cron"
-
-pkg_setup() {
-   webapp_pkg_setup
-
-   # How many dbs were selected? If one and only one, which one is it?
-   MYDB=""
-   DB_COUNT=0
-   for db in ${DB_TYPES}; do
-   if use ${db}; then
-   MYDB=${db}
-   DB_COUNT=$(($DB_COUNT+1))
-   fi
-   done
-
-   # REQUIRED_USE 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-03-09 Thread Anthony G. Basile
commit: 2e14804b413e03ac2dc77f89717e9c667c3f52ce
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar  9 19:08:45 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar  9 19:09:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e14804b

www-apps/moodle: bump to 3.1.17, 3.4.8, 3.5.5, 3.6.3

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.1.16.ebuild => moodle-3.1.17.ebuild} | 0
 www-apps/moodle/{moodle-3.4.7.ebuild => moodle-3.4.8.ebuild}   | 0
 www-apps/moodle/{moodle-3.5.4.ebuild => moodle-3.5.5.ebuild}   | 0
 www-apps/moodle/{moodle-3.6.2.ebuild => moodle-3.6.3.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index bce00339cf2..bae1a673daf 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.1.16.tgz 38057145 BLAKE2B 
09995a5ff87069e47b891e0e19a038d10af820d37b756803ceb2dcebad9a04a827a5b2548a3dd205d07eb4d9e116a15a12fa3d6832e524dde76450b5170e979a
 SHA512 
46ed0cd702e86529dda32b128604acc7c6bc13530bb3acab402d5c36f59a55dd35e0ffaa827aef85f7e75b0b9939514f868c0dc8ddc1b5f8aa49637acdf89c5c
-DIST moodle-3.4.7.tgz 46051440 BLAKE2B 
2b6a2eb7c071da56236a0a8d08b944fa9f5028bf9f22de259302885804cbb7e3e5bc5f1e18524a183fea362c8809ee38590dfcd836bef9de976fd7ab89b2fbdd
 SHA512 
6819a20cd477b37744786793b74dcf258098640e453345cc940fae02789cca31b43730dc421715be411ce77ef23fa876189a2c481efb5e643282355b4fdf043b
-DIST moodle-3.5.4.tgz 46648296 BLAKE2B 
2ed589f46061beb81e558b96461729aafe0624237c99b2e306c57da04ca6bff709d8377012bcfbb73a9a03dabf12dfa5d2a21e47139702b067f3fde0b99794f8
 SHA512 
03d0821f0863ed360129f00dda834618ae6b5dbb5794ee1a993eaaecbbac4dae8e6085f83cd86674bd93104a17229cb662db57a5500c3eff09f1480fbef9772d
-DIST moodle-3.6.2.tgz 47673889 BLAKE2B 
f81844f933ec3bc2ebd92957d16a9e59c43678b9ee548767bfacc443a68f574792c641787722cad8fe3007fd0c8d279ac097c361843089441bbe21b4af5b7492
 SHA512 
30e48e6fff788294db83d7889e32caf12fa07459dbd61a5cb0495f3c5b6bc005e41faee447a0cd6441e5120dbd04ee02056425c67a118755d45bc29e32867d74
+DIST moodle-3.1.17.tgz 38056353 BLAKE2B 
4192ff89f745a465c8fbbc3979e2359471c31240be8baa3be452da99377f3200292a359fc9b524994bccec3534056042adc2ff33f7423fbf5c6b7c41138a
 SHA512 
2f93b091600c9ad91e6e4f2ef5e246c442081333ecdbc1b4a26f9bea95bbc8e12fae05f484c04dd1330140be086681acde4f18ae45153c8c91d33798c7588ebd
+DIST moodle-3.4.8.tgz 46052218 BLAKE2B 
ac7b0aab7212a2c6af3ae8ecc4f90dc30163f47c0cb6dfdffc719b50211132a8c75b77141aa6da97abda2c1456ee685562d37de47f3c7ad9efdfe4a622d9922f
 SHA512 
e16c818c0cdb778af0364997410545bbbcc78b45015806306e0241b32d7a3e23564e3afe47cc13cb55e7a12418012583f985633700bedfe0c210127de3aa2ac5
+DIST moodle-3.5.5.tgz 46684330 BLAKE2B 
00df00e62c922211f010ae38a759e33f250e74028dd66cf51690debd3c43a2afe5200e320dc0d258a8624784fce8436cd20923ccaacb01f3190f6b67bad10e0f
 SHA512 
9e3fa3551e1cdfef0b2b31421ca625fcf38f90a2121c05247b60987da81cc9a44cc0fbc5d35ee6d7b91fb81317c2b9b0c3ef76988f656e67008f73331004167a
+DIST moodle-3.6.3.tgz 47707084 BLAKE2B 
5bdfca625fe4c96a700524fcaaa36719712b32f37f2ecc4038116accb82ba48438fd8683f0feb67af323567daad32c6a0e8714b648f24d10c304b5ad6f93aca8
 SHA512 
9a583064321ee0929e3df2b194c783dd5322b6d6e7642fdbf9d18cc511b82f73e8007e234998ea2553cb8147dc22fa4d178f2104c6eb2ebc322a9850afba19c5

diff --git a/www-apps/moodle/moodle-3.1.16.ebuild 
b/www-apps/moodle/moodle-3.1.17.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.16.ebuild
rename to www-apps/moodle/moodle-3.1.17.ebuild

diff --git a/www-apps/moodle/moodle-3.4.7.ebuild 
b/www-apps/moodle/moodle-3.4.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.4.7.ebuild
rename to www-apps/moodle/moodle-3.4.8.ebuild

diff --git a/www-apps/moodle/moodle-3.5.4.ebuild 
b/www-apps/moodle/moodle-3.5.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.4.ebuild
rename to www-apps/moodle/moodle-3.5.5.ebuild

diff --git a/www-apps/moodle/moodle-3.6.2.ebuild 
b/www-apps/moodle/moodle-3.6.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.6.2.ebuild
rename to www-apps/moodle/moodle-3.6.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2019-01-14 Thread Anthony G. Basile
commit: 0c172006fa4df0a9b35bed388213211b722d9383
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 14 14:17:31 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 14 14:17:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c172006

www-apps/moodle: bump to 3.1.16, 3.4.7, 3.5.4, 3.6.2

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-3.1.15.ebuild => moodle-3.1.16.ebuild} |   2 +-
 www-apps/moodle/moodle-3.3.9.ebuild| 123 -
 .../{moodle-3.5.3.ebuild => moodle-3.4.7.ebuild}   |   2 +-
 .../{moodle-3.6.1.ebuild => moodle-3.5.4.ebuild}   |   2 +-
 .../{moodle-3.4.6.ebuild => moodle-3.6.2.ebuild}   |   2 +-
 6 files changed, 8 insertions(+), 132 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 0f54d954082..bce00339cf2 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-3.1.15.tgz 38055035 BLAKE2B 
d55f523fce2f7193330665132b4d7faf6a7a698ca8f297d7e2dbc03e859ed43aef34292666e931e6c86aee2f414097accfd8ece7f5ecf53a8439697fdb28ba31
 SHA512 
17100ad6caa3a7ca5dc8f09b12215700061ead3a30701985e89d39e1e063d6142391c01c2dc0d1c7f4b86bd80b8d1ccc1d0477389691d6545b3be590b0508912
-DIST moodle-3.3.9.tgz 45123816 BLAKE2B 
0e23668fb6ac536a1a87067fc9574424c33934402184ffc6f25f48f7e87c70fb0d9b25bb12b46320d54968ddb8b337471be7b5795369585ce4c488f93168f6d9
 SHA512 
6150a4c0f4a85ac508d2da9b35fd506eca614c3a44d582096fdecd113899a72481507ce85101505570e0e8237f7af744e3d7a8cf990cf8b250f5ac335ebae1de
-DIST moodle-3.4.6.tgz 45961570 BLAKE2B 
49a20412b386cc3f463dd3be58dc56f50821298d36109889b3eb092d39f4dfe477dfbbf1ea3f1b6ce8076b4d4dca21efc00e7d772b0ced395139d76e56759482
 SHA512 
2afa7facb2068c63d0a1bd42da40a1cb688a1bcdedc5287e59633bb085f96c65598396f03b99b35c9aa3769463dea316584ce3793978101989fc53f53140ff04
-DIST moodle-3.5.3.tgz 46645219 BLAKE2B 
bd1aa2ae73f807c3b8a0e341893c7b004761e147fe42eac615153ae1ee7fa4bf9268e160a14ab1ac62dfe2c5e462d042cb30b725d6a28844e4749492b6a9b193
 SHA512 
130d1c30acb78452021f4fd5c0d29bfc4c938993e7d0cf3b2fdf13061fa993f9cebc7214f287e62ceb13bfd5999c12132a45fd4aec5efe8c25078dfe97bee861
-DIST moodle-3.6.1.tgz 47660920 BLAKE2B 
3dba1adb2a2c9926a0efb1942df4239a020c2c2d661a6a2a6825acc70b6e7aab69afb4f0f297cd316fd5f693ab711cccea8bc5c68fa1b72288297b8d00791088
 SHA512 
79cf5127748e6511101b9f802165eefbe6dafbe89806e8616902765d14481af0b6ba06757be5fecd343bda7dde261c58018f940254549decc66452415a99ab9d
+DIST moodle-3.1.16.tgz 38057145 BLAKE2B 
09995a5ff87069e47b891e0e19a038d10af820d37b756803ceb2dcebad9a04a827a5b2548a3dd205d07eb4d9e116a15a12fa3d6832e524dde76450b5170e979a
 SHA512 
46ed0cd702e86529dda32b128604acc7c6bc13530bb3acab402d5c36f59a55dd35e0ffaa827aef85f7e75b0b9939514f868c0dc8ddc1b5f8aa49637acdf89c5c
+DIST moodle-3.4.7.tgz 46051440 BLAKE2B 
2b6a2eb7c071da56236a0a8d08b944fa9f5028bf9f22de259302885804cbb7e3e5bc5f1e18524a183fea362c8809ee38590dfcd836bef9de976fd7ab89b2fbdd
 SHA512 
6819a20cd477b37744786793b74dcf258098640e453345cc940fae02789cca31b43730dc421715be411ce77ef23fa876189a2c481efb5e643282355b4fdf043b
+DIST moodle-3.5.4.tgz 46648296 BLAKE2B 
2ed589f46061beb81e558b96461729aafe0624237c99b2e306c57da04ca6bff709d8377012bcfbb73a9a03dabf12dfa5d2a21e47139702b067f3fde0b99794f8
 SHA512 
03d0821f0863ed360129f00dda834618ae6b5dbb5794ee1a993eaaecbbac4dae8e6085f83cd86674bd93104a17229cb662db57a5500c3eff09f1480fbef9772d
+DIST moodle-3.6.2.tgz 47673889 BLAKE2B 
f81844f933ec3bc2ebd92957d16a9e59c43678b9ee548767bfacc443a68f574792c641787722cad8fe3007fd0c8d279ac097c361843089441bbe21b4af5b7492
 SHA512 
30e48e6fff788294db83d7889e32caf12fa07459dbd61a5cb0495f3c5b6bc005e41faee447a0cd6441e5120dbd04ee02056425c67a118755d45bc29e32867d74

diff --git a/www-apps/moodle/moodle-3.1.15.ebuild 
b/www-apps/moodle/moodle-3.1.16.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.1.15.ebuild
rename to www-apps/moodle/moodle-3.1.16.ebuild
index 13576b6f03f..b96de5d5680 100644
--- a/www-apps/moodle/moodle-3.1.15.ebuild
+++ b/www-apps/moodle/moodle-3.1.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"

diff --git a/www-apps/moodle/moodle-3.3.9.ebuild 
b/www-apps/moodle/moodle-3.3.9.ebuild
deleted file mode 100644
index e7b7c22a19e..000
--- a/www-apps/moodle/moodle-3.3.9.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-12-11 Thread Anthony G. Basile
commit: a56eaf81f9da774825536b958e497fa751d38346
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Dec 11 22:28:42 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Dec 11 22:29:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a56eaf81

www-apps/moodle: version bump to 3.6.1

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-apps/moodle/Manifest|   1 +
 www-apps/moodle/moodle-3.6.1.ebuild | 123 
 2 files changed, 124 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index fa341a753c1..0f54d954082 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -2,3 +2,4 @@ DIST moodle-3.1.15.tgz 38055035 BLAKE2B 
d55f523fce2f7193330665132b4d7faf6a7a698c
 DIST moodle-3.3.9.tgz 45123816 BLAKE2B 
0e23668fb6ac536a1a87067fc9574424c33934402184ffc6f25f48f7e87c70fb0d9b25bb12b46320d54968ddb8b337471be7b5795369585ce4c488f93168f6d9
 SHA512 
6150a4c0f4a85ac508d2da9b35fd506eca614c3a44d582096fdecd113899a72481507ce85101505570e0e8237f7af744e3d7a8cf990cf8b250f5ac335ebae1de
 DIST moodle-3.4.6.tgz 45961570 BLAKE2B 
49a20412b386cc3f463dd3be58dc56f50821298d36109889b3eb092d39f4dfe477dfbbf1ea3f1b6ce8076b4d4dca21efc00e7d772b0ced395139d76e56759482
 SHA512 
2afa7facb2068c63d0a1bd42da40a1cb688a1bcdedc5287e59633bb085f96c65598396f03b99b35c9aa3769463dea316584ce3793978101989fc53f53140ff04
 DIST moodle-3.5.3.tgz 46645219 BLAKE2B 
bd1aa2ae73f807c3b8a0e341893c7b004761e147fe42eac615153ae1ee7fa4bf9268e160a14ab1ac62dfe2c5e462d042cb30b725d6a28844e4749492b6a9b193
 SHA512 
130d1c30acb78452021f4fd5c0d29bfc4c938993e7d0cf3b2fdf13061fa993f9cebc7214f287e62ceb13bfd5999c12132a45fd4aec5efe8c25078dfe97bee861
+DIST moodle-3.6.1.tgz 47660920 BLAKE2B 
3dba1adb2a2c9926a0efb1942df4239a020c2c2d661a6a2a6825acc70b6e7aab69afb4f0f297cd316fd5f693ab711cccea8bc5c68fa1b72288297b8d00791088
 SHA512 
79cf5127748e6511101b9f802165eefbe6dafbe89806e8616902765d14481af0b6ba06757be5fecd343bda7dde261c58018f940254549decc66452415a99ab9d

diff --git a/www-apps/moodle/moodle-3.6.1.ebuild 
b/www-apps/moodle/moodle-3.6.1.ebuild
new file mode 100644
index 000..dea9710e1e6
--- /dev/null
+++ b/www-apps/moodle/moodle-3.6.1.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="https://moodle.org;
+SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-7.0[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {
+   rm COPYING.txt
+   cp "${FILESDIR}"/config-r1.php config.php
+
+   # Moodle expect pgsql, not postgres
+   MYDB=${MYDB/postgres/pgsql}
+
+   if [[ ${DB_COUNT} -eq 1 ]] ; then
+   sed 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-11-12 Thread Anthony G. Basile
commit: 7ad5dbb3a07634d90b257b2a21f8a94c03a5f5e2
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov 12 11:39:59 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov 12 11:39:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad5dbb3

www-apps/moodle: version bumps to 3.1.15, 3.3.9, 3.4.6, 3.5.3

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.1.14.ebuild => moodle-3.1.15.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.3.8.ebuild => moodle-3.3.9.ebuild}   | 2 +-
 www-apps/moodle/{moodle-3.5.2.ebuild => moodle-3.4.6.ebuild}   | 2 +-
 www-apps/moodle/{moodle-3.4.5.ebuild => moodle-3.5.3.ebuild}   | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index a7977fb289c..fa341a753c1 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.1.14.tgz 38045267 BLAKE2B 
f98c2dd5b1e85e533c531b18271d94eb0e01b630fb2097aa025ae45152e1f343d95b393214b5313b48630eff3fefb4b5436fd38a60dfe1ddbbefa0309653bd8d
 SHA512 
f5b137fece92bc16ba03e31f4eef448e5ea2744b663d4da7aa9b6b045ff874fad73f73576690322dd6f8efbbfc3c3be09b7c74e2cfa659a12b04c3aa26828be3
-DIST moodle-3.3.8.tgz 45067185 BLAKE2B 
4833164e7afe8ef3bb9c08db2db7045caa2f7b7c39c08a564d159113a8d3e1ec6e73774c5d56e2c203c4c010632022b0130cd1141f58c83d2916ce43d8e77c09
 SHA512 
250df5d5a29f70cd108c84f4d3d58eb0f6486c72a9c3e4274426d6c911876612082bfe718e16e40463dab83b47be3de606742c66073974ba5f151056b4c3ea5b
-DIST moodle-3.4.5.tgz 45763211 BLAKE2B 
a83823153e497e3c327aa6bcad041a9272d8a1cd1855f1f9692aa5690cac7ddab6a9028c09e38c0bcb8f98a0cb02de70b2265f2be57ddd74cc359cefceae9eea
 SHA512 
ee852cd0ebb7c501adf8698423602165501440d9411baae516f322be8cad759b950d03df0e138aeb815c20d9834e57cb6c19e95a428595e21cef87d8de7a7f5b
-DIST moodle-3.5.2.tgz 46446558 BLAKE2B 
ad64f9c56da55902bf3de16a2a34445c3f3be30be1ef0de9f0a84e7aa5dd751d286a4e45fd8e0e3e32f1f37ff664473eb29cae275b4904b2ba2befe746459fda
 SHA512 
a96dc88a8963bd1f117ca9b58e0959cc29fef0c4ea8375d6c8993aeabd8d606ddf639dc52b0c995f22dfb575df5ef602897cb1e457e9f786f10f805a55883088
+DIST moodle-3.1.15.tgz 38055035 BLAKE2B 
d55f523fce2f7193330665132b4d7faf6a7a698ca8f297d7e2dbc03e859ed43aef34292666e931e6c86aee2f414097accfd8ece7f5ecf53a8439697fdb28ba31
 SHA512 
17100ad6caa3a7ca5dc8f09b12215700061ead3a30701985e89d39e1e063d6142391c01c2dc0d1c7f4b86bd80b8d1ccc1d0477389691d6545b3be590b0508912
+DIST moodle-3.3.9.tgz 45123816 BLAKE2B 
0e23668fb6ac536a1a87067fc9574424c33934402184ffc6f25f48f7e87c70fb0d9b25bb12b46320d54968ddb8b337471be7b5795369585ce4c488f93168f6d9
 SHA512 
6150a4c0f4a85ac508d2da9b35fd506eca614c3a44d582096fdecd113899a72481507ce85101505570e0e8237f7af744e3d7a8cf990cf8b250f5ac335ebae1de
+DIST moodle-3.4.6.tgz 45961570 BLAKE2B 
49a20412b386cc3f463dd3be58dc56f50821298d36109889b3eb092d39f4dfe477dfbbf1ea3f1b6ce8076b4d4dca21efc00e7d772b0ced395139d76e56759482
 SHA512 
2afa7facb2068c63d0a1bd42da40a1cb688a1bcdedc5287e59633bb085f96c65598396f03b99b35c9aa3769463dea316584ce3793978101989fc53f53140ff04
+DIST moodle-3.5.3.tgz 46645219 BLAKE2B 
bd1aa2ae73f807c3b8a0e341893c7b004761e147fe42eac615153ae1ee7fa4bf9268e160a14ab1ac62dfe2c5e462d042cb30b725d6a28844e4749492b6a9b193
 SHA512 
130d1c30acb78452021f4fd5c0d29bfc4c938993e7d0cf3b2fdf13061fa993f9cebc7214f287e62ceb13bfd5999c12132a45fd4aec5efe8c25078dfe97bee861

diff --git a/www-apps/moodle/moodle-3.1.14.ebuild 
b/www-apps/moodle/moodle-3.1.15.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.1.14.ebuild
rename to www-apps/moodle/moodle-3.1.15.ebuild
index 0c8f962ab4a..13576b6f03f 100644
--- a/www-apps/moodle/moodle-3.1.14.ebuild
+++ b/www-apps/moodle/moodle-3.1.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"

diff --git a/www-apps/moodle/moodle-3.3.8.ebuild 
b/www-apps/moodle/moodle-3.3.9.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.3.8.ebuild
rename to www-apps/moodle/moodle-3.3.9.ebuild
index 2a3db73f4d0..e7b7c22a19e 100644
--- a/www-apps/moodle/moodle-3.3.8.ebuild
+++ b/www-apps/moodle/moodle-3.3.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git a/www-apps/moodle/moodle-3.5.2.ebuild 
b/www-apps/moodle/moodle-3.4.6.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.5.2.ebuild
rename to www-apps/moodle/moodle-3.4.6.ebuild
index 201f542fb5c..dea9710e1e6 100644
--- a/www-apps/moodle/moodle-3.5.2.ebuild
+++ b/www-apps/moodle/moodle-3.4.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-09-10 Thread Anthony G. Basile
commit: 325638c47cd1a55d93cb5c6ef130e381ffd1834a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Sep 10 08:36:19 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Sep 10 08:36:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=325638c4

www-apps/moodle: version bumps to 3.1.14, 3.3.8, 3.4.5, 3.5.2

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.1.13.ebuild => moodle-3.1.14.ebuild} | 0
 www-apps/moodle/{moodle-3.3.7.ebuild => moodle-3.3.8.ebuild}   | 0
 www-apps/moodle/{moodle-3.4.4.ebuild => moodle-3.4.5.ebuild}   | 0
 www-apps/moodle/{moodle-3.5.1.ebuild => moodle-3.5.2.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 11ce46b5536..a7977fb289c 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.1.13.tgz 38042777 BLAKE2B 
5454680057c83792340d553da198a0e4a607129cb951b0f00d298ff3838ddca4b3681d9d9d96f6f954c31df16aa47c80a564c56a7b4f271cff97cb8aaf1eb3d2
 SHA512 
f969842b7067ee24b34d4328f728da75ab8518916b2562f337405c34f3756e2b53f2710aab6e6623b3cd3487594116f3c0b85e33320d32361eb253801f347393
-DIST moodle-3.3.7.tgz 44868352 BLAKE2B 
efb6ff909996d58df055db437df02029246df7239649f728283c7a50a5a085e7c8902a2935f06baab09b8675ce6d5b399007c6dea737539d47e24465211c78d2
 SHA512 
b6844b4a4f13263cc56dd94137beb1ab314f3cbf6549061c4c48227710e6be4c838562651a41ed161f5ebebd611bfc7b3c29af49cf2501d0e568c5ae20e88867
-DIST moodle-3.4.4.tgz 45538017 BLAKE2B 
720b9b26ae5140a975619ce638050f60ba4ae77e0a9370d2843d3d15b1c882019dfc0187d570f440e9d4f7261d29fa5b1853086270bca2ed0b5e980e14bcf12e
 SHA512 
14af33e41276c070faf6b4ae38915826dd3c80ef9f248a8d00bcabaeb32740383939c9097d8ae1ceabf4f86e27d70548fa7a9e5a75275384a2eb6c17670bda1a
-DIST moodle-3.5.1.tgz 46387467 BLAKE2B 
cc05d51be7d8da8f3c3126c46094fe6c57f4c3f8664348e7e5d915cb5a297fe605b81422e226171edbf6bfc11cc9afaca9831fc9b24a7acf1893ab0cc9d7c9a8
 SHA512 
4e6dbf2140a40351ff3285e54f58f711d018f812a5885a3219d9e18abdc3232aeae71ac4bec9a26f78bbe8dbf78c121b6850c2254e9371dc34ed576e985eceb4
+DIST moodle-3.1.14.tgz 38045267 BLAKE2B 
f98c2dd5b1e85e533c531b18271d94eb0e01b630fb2097aa025ae45152e1f343d95b393214b5313b48630eff3fefb4b5436fd38a60dfe1ddbbefa0309653bd8d
 SHA512 
f5b137fece92bc16ba03e31f4eef448e5ea2744b663d4da7aa9b6b045ff874fad73f73576690322dd6f8efbbfc3c3be09b7c74e2cfa659a12b04c3aa26828be3
+DIST moodle-3.3.8.tgz 45067185 BLAKE2B 
4833164e7afe8ef3bb9c08db2db7045caa2f7b7c39c08a564d159113a8d3e1ec6e73774c5d56e2c203c4c010632022b0130cd1141f58c83d2916ce43d8e77c09
 SHA512 
250df5d5a29f70cd108c84f4d3d58eb0f6486c72a9c3e4274426d6c911876612082bfe718e16e40463dab83b47be3de606742c66073974ba5f151056b4c3ea5b
+DIST moodle-3.4.5.tgz 45763211 BLAKE2B 
a83823153e497e3c327aa6bcad041a9272d8a1cd1855f1f9692aa5690cac7ddab6a9028c09e38c0bcb8f98a0cb02de70b2265f2be57ddd74cc359cefceae9eea
 SHA512 
ee852cd0ebb7c501adf8698423602165501440d9411baae516f322be8cad759b950d03df0e138aeb815c20d9834e57cb6c19e95a428595e21cef87d8de7a7f5b
+DIST moodle-3.5.2.tgz 46446558 BLAKE2B 
ad64f9c56da55902bf3de16a2a34445c3f3be30be1ef0de9f0a84e7aa5dd751d286a4e45fd8e0e3e32f1f37ff664473eb29cae275b4904b2ba2befe746459fda
 SHA512 
a96dc88a8963bd1f117ca9b58e0959cc29fef0c4ea8375d6c8993aeabd8d606ddf639dc52b0c995f22dfb575df5ef602897cb1e457e9f786f10f805a55883088

diff --git a/www-apps/moodle/moodle-3.1.13.ebuild 
b/www-apps/moodle/moodle-3.1.14.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.13.ebuild
rename to www-apps/moodle/moodle-3.1.14.ebuild

diff --git a/www-apps/moodle/moodle-3.3.7.ebuild 
b/www-apps/moodle/moodle-3.3.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.3.7.ebuild
rename to www-apps/moodle/moodle-3.3.8.ebuild

diff --git a/www-apps/moodle/moodle-3.4.4.ebuild 
b/www-apps/moodle/moodle-3.4.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.4.4.ebuild
rename to www-apps/moodle/moodle-3.4.5.ebuild

diff --git a/www-apps/moodle/moodle-3.5.1.ebuild 
b/www-apps/moodle/moodle-3.5.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.5.1.ebuild
rename to www-apps/moodle/moodle-3.5.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-07-10 Thread Anthony G. Basile
commit: daae04a15c88a7fb8997cf7c21f66d7a1e379c7f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jul 10 18:17:42 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jul 10 18:17:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daae04a1

www-apps/moodle: version bumps to 3.1.13, 3.3.7, 3.4.4, 3.5.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-3.1.12.ebuild => moodle-3.1.13.ebuild} |   0
 www-apps/moodle/moodle-3.2.9.ebuild| 121 -
 .../{moodle-3.3.6.ebuild => moodle-3.3.7.ebuild}   |   0
 .../{moodle-3.4.3.ebuild => moodle-3.4.4.ebuild}   |   0
 .../{moodle-3.5.ebuild => moodle-3.5.1.ebuild} |   0
 6 files changed, 4 insertions(+), 126 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 19bcffc0097..11ce46b5536 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-3.1.12.tgz 38023724 BLAKE2B 
f6903d2603eaab37c2da3e53c00b942a00ecd28fc14b927dd3dad3785e1f64e71745ba207f9e12669b2b74c2406c314fd7eef4b61a9e9f7fe3b25f4657399854
 SHA512 
0c32fe968e2b676806e400bb57f0fc2cea29282ea27f8d13892ac804fbe77885afe83ccef9515224d1ee5f201de2bace620a5ff63aa94c9e5293e65a97608142
-DIST moodle-3.2.9.tgz 40333782 BLAKE2B 
8ca8d01e2f15eafa11f06fa064e891f6d0669b788211c6b713c8dd73fd08eb6e728eced3d2f2d776218ddab1fc3e06797e9b6a05b6f63ddbd9ee6e2f9e3839e8
 SHA512 
983c7905123bb2c6a798ce7acc66f025e90fee937fa6d2811b56d3952e7a82daa3d9c6fb140deb525d931310f462d24b52bc7004ec8573ef920326058a59dfbb
-DIST moodle-3.3.6.tgz 44870790 BLAKE2B 
4f603532043d853cc0bd95e77146487b279ac8957f807b7e386268a01e929385737d6995d3de9ffaf3eb8e94cf8abbed5494728d8d3fd3c2dd678bca3f945a2f
 SHA512 
f0ef461b4863a03dcf258499302769a1dba807c9a5797c61f6feb8ed3e06cc9cff1ac2a8a17f48eb52084a91b0ecec18f45a10aa2197afc870ba8535b364193f
-DIST moodle-3.4.3.tgz 45524224 BLAKE2B 
fc4096875368b33774fb2751e91e32cb4c5796424c31f7fb3b6e547c6de051ad6ada4b0ea7b97d190830829e3e99eec105480d860b7d5caa98463c2450d40ec6
 SHA512 
c201f75584b39676d10e33c03a39fa7c73a757b8c6066df5299cdde9c9db68a4d58ebb98b6ec5b0d89b0c4f258a8114083b0bb71a32d04c55d1045dd66b9ce21
-DIST moodle-3.5.tgz 46268566 BLAKE2B 
5bc4b309ab210942369d22c27cc3e79cec2d06e93a60b7977db9a493ec1257c877caea9b40f65c9151f1cf0e6356793fdd0843639819b77cb73db0cb3ab2307a
 SHA512 
7c0b5a42f839953fbe9d90767aefb2df589b2ec67db3f99ef61d21e57282d430c06c2758a8153c58ff4aa7a5977618bac9bed47c2866b2ef33decfc08e68059e
+DIST moodle-3.1.13.tgz 38042777 BLAKE2B 
5454680057c83792340d553da198a0e4a607129cb951b0f00d298ff3838ddca4b3681d9d9d96f6f954c31df16aa47c80a564c56a7b4f271cff97cb8aaf1eb3d2
 SHA512 
f969842b7067ee24b34d4328f728da75ab8518916b2562f337405c34f3756e2b53f2710aab6e6623b3cd3487594116f3c0b85e33320d32361eb253801f347393
+DIST moodle-3.3.7.tgz 44868352 BLAKE2B 
efb6ff909996d58df055db437df02029246df7239649f728283c7a50a5a085e7c8902a2935f06baab09b8675ce6d5b399007c6dea737539d47e24465211c78d2
 SHA512 
b6844b4a4f13263cc56dd94137beb1ab314f3cbf6549061c4c48227710e6be4c838562651a41ed161f5ebebd611bfc7b3c29af49cf2501d0e568c5ae20e88867
+DIST moodle-3.4.4.tgz 45538017 BLAKE2B 
720b9b26ae5140a975619ce638050f60ba4ae77e0a9370d2843d3d15b1c882019dfc0187d570f440e9d4f7261d29fa5b1853086270bca2ed0b5e980e14bcf12e
 SHA512 
14af33e41276c070faf6b4ae38915826dd3c80ef9f248a8d00bcabaeb32740383939c9097d8ae1ceabf4f86e27d70548fa7a9e5a75275384a2eb6c17670bda1a
+DIST moodle-3.5.1.tgz 46387467 BLAKE2B 
cc05d51be7d8da8f3c3126c46094fe6c57f4c3f8664348e7e5d915cb5a297fe605b81422e226171edbf6bfc11cc9afaca9831fc9b24a7acf1893ab0cc9d7c9a8
 SHA512 
4e6dbf2140a40351ff3285e54f58f711d018f812a5885a3219d9e18abdc3232aeae71ac4bec9a26f78bbe8dbf78c121b6850c2254e9371dc34ed576e985eceb4

diff --git a/www-apps/moodle/moodle-3.1.12.ebuild 
b/www-apps/moodle/moodle-3.1.13.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.12.ebuild
rename to www-apps/moodle/moodle-3.1.13.ebuild

diff --git a/www-apps/moodle/moodle-3.2.9.ebuild 
b/www-apps/moodle/moodle-3.2.9.ebuild
deleted file mode 100644
index f3cbddcacb6..000
--- a/www-apps/moodle/moodle-3.2.9.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,mssql?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-05-17 Thread Anthony G. Basile
commit: a68586160fe40d3da30ac94926f9177fcbcc924c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu May 17 15:58:00 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu May 17 15:58:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6858616

www-apps/moodle: version bump to 3.1.12 3.2.9 3.3.6 3.4.2 3.4.3 and 3.5

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/moodle/Manifest   | 9 +
 www-apps/moodle/{moodle-3.1.11.ebuild => moodle-3.1.12.ebuild} | 0
 www-apps/moodle/{moodle-3.2.8.ebuild => moodle-3.2.9.ebuild}   | 0
 www-apps/moodle/{moodle-3.3.5.ebuild => moodle-3.3.6.ebuild}   | 0
 www-apps/moodle/{moodle-3.4.2.ebuild => moodle-3.4.3.ebuild}   | 0
 www-apps/moodle/{moodle-3.4.2.ebuild => moodle-3.5.ebuild} | 0
 6 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index cc02a0b1978..19bcffc0097 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,5 @@
-DIST moodle-3.1.11.tgz 38028187 BLAKE2B 
00f9afc6da046c44245de0cdd5e498b116b99ecb58c8858556df5121a4ad8972c37930efea9f962239c6ba35ba35384977e3237e6806cc3ffba4de466b7a1abc
 SHA512 
3dd87b982f8806884ffc78251b6ce63b73113f46da0637779ccf45f5eb06741b175cfce47dabf7ae0dcd17a87cd868ccf4a036abce6cc51d08c6b6cce727dcf8
-DIST moodle-3.2.8.tgz 40323405 BLAKE2B 
c593d04235c5e0f3b8eb53037e22b0245d0b7279484055720c35a42bad8cdb3e26c433355be34c96a19d2201f311f5e6d478246d49fcfad8c9d0788bd2a90dbf
 SHA512 
f684e77f54c040ad3ab782b376db478da896e761e1dc07a6b00c82382b5c2a5c999bac4d7990c43bee2e06da3d7563e774302b51371606043ee4ced0fa7c0fb6
-DIST moodle-3.3.5.tgz 44374771 BLAKE2B 
9a57ff007d5f78d084ca8c5ba4c121d95f627d1fa10e8d6e7dc8a3ecce40d6d1020bf5213905fea8fb3caed57397ec13a48209a03967f423b0b0b3ee0729621f
 SHA512 
77ef398d0fff56a54d6fc3fbf05726c0442599a7b269903ed7cb7ffe4ff891a77347f448a6d35d7c700dedc233cb33a8eb6fe3eef7aac6f455ecf45b159091a6
-DIST moodle-3.4.2.tgz 45012231 BLAKE2B 
bc9f06a40118721fe31a57ccc52497f62e55f4a9a2728a2a1f377210cf3e8c873de88a8b7fce32a71f05e1d763f63af9bcba7c548dc229a4e3431ff1c7e6bcda
 SHA512 
29d81dac0aff688d5ee9c2ddfdbba71a9dbfc8422923b950e8d3a5d8c4da45fa6a953f225c237250ee73324bce5ce55f42bd470f070a4ecf58ed746c80bdf643
+DIST moodle-3.1.12.tgz 38023724 BLAKE2B 
f6903d2603eaab37c2da3e53c00b942a00ecd28fc14b927dd3dad3785e1f64e71745ba207f9e12669b2b74c2406c314fd7eef4b61a9e9f7fe3b25f4657399854
 SHA512 
0c32fe968e2b676806e400bb57f0fc2cea29282ea27f8d13892ac804fbe77885afe83ccef9515224d1ee5f201de2bace620a5ff63aa94c9e5293e65a97608142
+DIST moodle-3.2.9.tgz 40333782 BLAKE2B 
8ca8d01e2f15eafa11f06fa064e891f6d0669b788211c6b713c8dd73fd08eb6e728eced3d2f2d776218ddab1fc3e06797e9b6a05b6f63ddbd9ee6e2f9e3839e8
 SHA512 
983c7905123bb2c6a798ce7acc66f025e90fee937fa6d2811b56d3952e7a82daa3d9c6fb140deb525d931310f462d24b52bc7004ec8573ef920326058a59dfbb
+DIST moodle-3.3.6.tgz 44870790 BLAKE2B 
4f603532043d853cc0bd95e77146487b279ac8957f807b7e386268a01e929385737d6995d3de9ffaf3eb8e94cf8abbed5494728d8d3fd3c2dd678bca3f945a2f
 SHA512 
f0ef461b4863a03dcf258499302769a1dba807c9a5797c61f6feb8ed3e06cc9cff1ac2a8a17f48eb52084a91b0ecec18f45a10aa2197afc870ba8535b364193f
+DIST moodle-3.4.3.tgz 45524224 BLAKE2B 
fc4096875368b33774fb2751e91e32cb4c5796424c31f7fb3b6e547c6de051ad6ada4b0ea7b97d190830829e3e99eec105480d860b7d5caa98463c2450d40ec6
 SHA512 
c201f75584b39676d10e33c03a39fa7c73a757b8c6066df5299cdde9c9db68a4d58ebb98b6ec5b0d89b0c4f258a8114083b0bb71a32d04c55d1045dd66b9ce21
+DIST moodle-3.5.tgz 46268566 BLAKE2B 
5bc4b309ab210942369d22c27cc3e79cec2d06e93a60b7977db9a493ec1257c877caea9b40f65c9151f1cf0e6356793fdd0843639819b77cb73db0cb3ab2307a
 SHA512 
7c0b5a42f839953fbe9d90767aefb2df589b2ec67db3f99ef61d21e57282d430c06c2758a8153c58ff4aa7a5977618bac9bed47c2866b2ef33decfc08e68059e

diff --git a/www-apps/moodle/moodle-3.1.11.ebuild 
b/www-apps/moodle/moodle-3.1.12.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.11.ebuild
rename to www-apps/moodle/moodle-3.1.12.ebuild

diff --git a/www-apps/moodle/moodle-3.2.8.ebuild 
b/www-apps/moodle/moodle-3.2.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.2.8.ebuild
rename to www-apps/moodle/moodle-3.2.9.ebuild

diff --git a/www-apps/moodle/moodle-3.3.5.ebuild 
b/www-apps/moodle/moodle-3.3.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.3.5.ebuild
rename to www-apps/moodle/moodle-3.3.6.ebuild

diff --git a/www-apps/moodle/moodle-3.4.2.ebuild 
b/www-apps/moodle/moodle-3.4.3.ebuild
similarity index 100%
copy from www-apps/moodle/moodle-3.4.2.ebuild
copy to www-apps/moodle/moodle-3.4.3.ebuild

diff --git a/www-apps/moodle/moodle-3.4.2.ebuild 
b/www-apps/moodle/moodle-3.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.4.2.ebuild
rename to www-apps/moodle/moodle-3.5.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-03-17 Thread Anthony G. Basile
commit: bacbb40c9388f53c15ca6ea6a6dbd77fd84db4bf
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar 17 20:58:13 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar 17 20:58:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bacbb40c

www-apps/moodle: version bumps to 3.1.11, 3.2.8, 3.3.5, 3.4.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-3.1.10.ebuild => moodle-3.1.11.ebuild} | 0
 www-apps/moodle/{moodle-3.2.7.ebuild => moodle-3.2.8.ebuild}   | 0
 www-apps/moodle/{moodle-3.3.4.ebuild => moodle-3.3.5.ebuild}   | 0
 www-apps/moodle/{moodle-3.4.1.ebuild => moodle-3.4.2.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 679be4d5c29..cc02a0b1978 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.1.10.tgz 38017776 BLAKE2B 
6f1903f7061973b0b6ee77c7d43eb3e0dbb5752374ca0464194712da9a26496b7c1f9027d20e6011bbb8fa77944d4a68f0d843c572033f9b17be3427d1c7e89f
 SHA512 
261755272c370e28f2e664d72d8d8955f9f74781137e2601f23ac6630a58913f289a7133927146c0b61a67bc8ebe028c3f71f58a085fc33b6ca2981e0fd2e9d0
-DIST moodle-3.2.7.tgz 40320398 BLAKE2B 
3204f0354d83af2b736e84646db57efd124c9a14a312f8dfae4336b4a1311973245e3cb50ed9500b72a62fe9f98e03340a56bec4470ba2d0e0d8793e8d9800b7
 SHA512 
e093534728c4142e9efb92041190a76e48b3c41447950d11a66c2f90d69beafa538eb58413b183e1aabd63bc9225ad352d0ea148a61d20c8c13317905f45a745
-DIST moodle-3.3.4.tgz 44262330 BLAKE2B 
97da591f6d8f54f7274e10bd92ce902352320ce70e324b09958bfc25fcac1c014e883c90689056af55dfea8294bf91b5c2d57ba23c11c2917670817087857373
 SHA512 
bfb291514e7a9d84c560cff6cfe0037af55c1b350b760c575b49b0b9ba2b34aeb55012ef0cc3dcd904032f3b2450955cc01176cb834a9edb0094e8b7ca761022
-DIST moodle-3.4.1.tgz 44903594 BLAKE2B 
2321916eb25df391b442b75e3dda5113b352333c264762f2fda8421a406dd151498b590325f9670f7df55e1cc34dfba59bfad16aeac7f721f188818744cb
 SHA512 
f831553f6a87d4de24e283a539861431e3390d300ef6d4045dadca2e603206b5da9d7bb5854755fe8870c5a1605da84f2102ec47ea7b279586b275d40bbe0de3
+DIST moodle-3.1.11.tgz 38028187 BLAKE2B 
00f9afc6da046c44245de0cdd5e498b116b99ecb58c8858556df5121a4ad8972c37930efea9f962239c6ba35ba35384977e3237e6806cc3ffba4de466b7a1abc
 SHA512 
3dd87b982f8806884ffc78251b6ce63b73113f46da0637779ccf45f5eb06741b175cfce47dabf7ae0dcd17a87cd868ccf4a036abce6cc51d08c6b6cce727dcf8
+DIST moodle-3.2.8.tgz 40323405 BLAKE2B 
c593d04235c5e0f3b8eb53037e22b0245d0b7279484055720c35a42bad8cdb3e26c433355be34c96a19d2201f311f5e6d478246d49fcfad8c9d0788bd2a90dbf
 SHA512 
f684e77f54c040ad3ab782b376db478da896e761e1dc07a6b00c82382b5c2a5c999bac4d7990c43bee2e06da3d7563e774302b51371606043ee4ced0fa7c0fb6
+DIST moodle-3.3.5.tgz 44374771 BLAKE2B 
9a57ff007d5f78d084ca8c5ba4c121d95f627d1fa10e8d6e7dc8a3ecce40d6d1020bf5213905fea8fb3caed57397ec13a48209a03967f423b0b0b3ee0729621f
 SHA512 
77ef398d0fff56a54d6fc3fbf05726c0442599a7b269903ed7cb7ffe4ff891a77347f448a6d35d7c700dedc233cb33a8eb6fe3eef7aac6f455ecf45b159091a6
+DIST moodle-3.4.2.tgz 45012231 BLAKE2B 
bc9f06a40118721fe31a57ccc52497f62e55f4a9a2728a2a1f377210cf3e8c873de88a8b7fce32a71f05e1d763f63af9bcba7c548dc229a4e3431ff1c7e6bcda
 SHA512 
29d81dac0aff688d5ee9c2ddfdbba71a9dbfc8422923b950e8d3a5d8c4da45fa6a953f225c237250ee73324bce5ce55f42bd470f070a4ecf58ed746c80bdf643

diff --git a/www-apps/moodle/moodle-3.1.10.ebuild 
b/www-apps/moodle/moodle-3.1.11.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.10.ebuild
rename to www-apps/moodle/moodle-3.1.11.ebuild

diff --git a/www-apps/moodle/moodle-3.2.7.ebuild 
b/www-apps/moodle/moodle-3.2.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.2.7.ebuild
rename to www-apps/moodle/moodle-3.2.8.ebuild

diff --git a/www-apps/moodle/moodle-3.3.4.ebuild 
b/www-apps/moodle/moodle-3.3.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.3.4.ebuild
rename to www-apps/moodle/moodle-3.3.5.ebuild

diff --git a/www-apps/moodle/moodle-3.4.1.ebuild 
b/www-apps/moodle/moodle-3.4.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.4.1.ebuild
rename to www-apps/moodle/moodle-3.4.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2018-01-13 Thread Anthony G. Basile
commit: 9d90b7586e8e5371fa14dd6b6909132f806607d0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jan 13 14:43:54 2018 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jan 13 14:43:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d90b758

www-apps/moodle: version bumps to 3.1.10, 3.2.7, 3.3.4, 3.4.1

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 www-apps/moodle/Manifest  | 8 
 www-apps/moodle/{moodle-3.1.9.ebuild => moodle-3.1.10.ebuild} | 2 +-
 www-apps/moodle/{moodle-3.2.6.ebuild => moodle-3.2.7.ebuild}  | 2 +-
 www-apps/moodle/{moodle-3.3.3.ebuild => moodle-3.3.4.ebuild}  | 2 +-
 www-apps/moodle/{moodle-3.4.ebuild => moodle-3.4.1.ebuild}| 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index e68a9b4235c..679be4d5c29 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-3.1.9.tgz 38020777 BLAKE2B 
4d22ca0cfe390576c9e0f179565f7ad61c25e79090f43eca57c768e71edace6ac9e26f25a66b26ce51d187aa4a6c1f1f3899b3a63c2331daa4d2e0fbbd371fcd
 SHA512 
c65e7373db49f98fe4493b9f6aa39bee46c2d49dd3b4cf1bad82e28a71a9932fff2ac24e9a1b9562d66deca28e354da41cd7c282ffba942f50c2b849ef003aef
-DIST moodle-3.2.6.tgz 40314104 BLAKE2B 
ed9cdf4a9a350f8940a4e0d39491d401c7565a47f50b1b38dc458b2cc088070348cc62eab90ae6cc0da12a16db8038e9f65e145ee085993c11a520768f09c838
 SHA512 
afeacaf965ca6d80c7c4121ba4a74c15f1255175d0a4b056bd59e738180ff80dc431587ed98897602527a39f1f9a32a76a2dbd868445ba901fb8b7c0c3c48096
-DIST moodle-3.3.3.tgz 44238027 BLAKE2B 
4c2358d39df0c0d6131b87a71de1570490c747e18f7a97c837790b5a5417136e9ab1add318904c37e0832c5753f6e54c0d9a48ed23e15d4d086f69addea40b71
 SHA512 
9d0097b081b4f6ad4e5d4951696d552bf097e22f807bcf9ad3112388716fcc16ca4c5bd79074739689205c8f193901874f892b29f15c1cf4545cdcc38fc7c4c7
-DIST moodle-3.4.tgz 44875575 BLAKE2B 
5384a937e2d7f0f4aee31147e20b682be3b55ee8997b533d6aaa4ccc200451e63cd6c18bd3fa12250484381878e9a2d728e10a609a4edafd2e466fcebe3d02de
 SHA512 
72cc62864c7b8020af5b48d7af47afe763ce593f96749d149c3dcfd39f9eb3f8de383bc4684c6591ad5ad157c85f0ffea54eb70489e8312b8b09c63a73f32dba
+DIST moodle-3.1.10.tgz 38017776 BLAKE2B 
6f1903f7061973b0b6ee77c7d43eb3e0dbb5752374ca0464194712da9a26496b7c1f9027d20e6011bbb8fa77944d4a68f0d843c572033f9b17be3427d1c7e89f
 SHA512 
261755272c370e28f2e664d72d8d8955f9f74781137e2601f23ac6630a58913f289a7133927146c0b61a67bc8ebe028c3f71f58a085fc33b6ca2981e0fd2e9d0
+DIST moodle-3.2.7.tgz 40320398 BLAKE2B 
3204f0354d83af2b736e84646db57efd124c9a14a312f8dfae4336b4a1311973245e3cb50ed9500b72a62fe9f98e03340a56bec4470ba2d0e0d8793e8d9800b7
 SHA512 
e093534728c4142e9efb92041190a76e48b3c41447950d11a66c2f90d69beafa538eb58413b183e1aabd63bc9225ad352d0ea148a61d20c8c13317905f45a745
+DIST moodle-3.3.4.tgz 44262330 BLAKE2B 
97da591f6d8f54f7274e10bd92ce902352320ce70e324b09958bfc25fcac1c014e883c90689056af55dfea8294bf91b5c2d57ba23c11c2917670817087857373
 SHA512 
bfb291514e7a9d84c560cff6cfe0037af55c1b350b760c575b49b0b9ba2b34aeb55012ef0cc3dcd904032f3b2450955cc01176cb834a9edb0094e8b7ca761022
+DIST moodle-3.4.1.tgz 44903594 BLAKE2B 
2321916eb25df391b442b75e3dda5113b352333c264762f2fda8421a406dd151498b590325f9670f7df55e1cc34dfba59bfad16aeac7f721f188818744cb
 SHA512 
f831553f6a87d4de24e283a539861431e3390d300ef6d4045dadca2e603206b5da9d7bb5854755fe8870c5a1605da84f2102ec47ea7b279586b275d40bbe0de3

diff --git a/www-apps/moodle/moodle-3.1.9.ebuild 
b/www-apps/moodle/moodle-3.1.10.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.1.9.ebuild
rename to www-apps/moodle/moodle-3.1.10.ebuild
index c64ab1ffbc7..f6e1da58ade 100644
--- a/www-apps/moodle/moodle-3.1.9.ebuild
+++ b/www-apps/moodle/moodle-3.1.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"

diff --git a/www-apps/moodle/moodle-3.2.6.ebuild 
b/www-apps/moodle/moodle-3.2.7.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.2.6.ebuild
rename to www-apps/moodle/moodle-3.2.7.ebuild
index 37b176d93c2..24105a028d4 100644
--- a/www-apps/moodle/moodle-3.2.6.ebuild
+++ b/www-apps/moodle/moodle-3.2.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"

diff --git a/www-apps/moodle/moodle-3.3.3.ebuild 
b/www-apps/moodle/moodle-3.3.4.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.3.3.ebuild
rename to www-apps/moodle/moodle-3.3.4.ebuild
index 4c2d978ef8a..b162247a3f8 100644
--- a/www-apps/moodle/moodle-3.3.3.ebuild
+++ b/www-apps/moodle/moodle-3.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"

diff --git 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2017-11-12 Thread Anthony G. Basile
commit: 7171c61b90154dc641db73637eb00f7f20c054fc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Nov 13 00:52:54 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Nov 13 00:53:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7171c61b

www-apps/moodle: version bumps to 3.1.9, 3.2.6, 3.3.3, 3.4

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 www-apps/moodle/Manifest | 7 ---
 www-apps/moodle/{moodle-3.1.8.ebuild => moodle-3.1.9.ebuild} | 0
 www-apps/moodle/{moodle-3.2.5.ebuild => moodle-3.2.6.ebuild} | 0
 www-apps/moodle/{moodle-3.3.2.ebuild => moodle-3.3.3.ebuild} | 0
 www-apps/moodle/{moodle-3.3.2.ebuild => moodle-3.4.ebuild}   | 2 +-
 5 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index d33f72ada17..78fc9413ce7 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
-DIST moodle-3.1.8.tgz 38015937 SHA256 
5209cdda1eaf3f88eb7e9eb852217ad5918607077251dab7fe29f088c76db35d SHA512 
e35912f10fa98bdb0e392f2020fa48c21d077608a6877f4a35c019c34963cc14522664f6bf88a7e98f01e42d0c171c9dbd2f4403d330baab321645fdb1d60fe2
 WHIRLPOOL 
f31973f6845203bad40d6cad6ab560263fa972a38d697d4bd8fae85d10ab63474472055365d90f1566c97cf299efcfeb07d7913af8b5e9660e2e8689c8689d41
-DIST moodle-3.2.5.tgz 39902419 SHA256 
53a381988fc0aa0169c4e2af2364406614bc3cf0948631a1f3008df3ccbfa3c4 SHA512 
f1773d0c118c4e0952ce2606d6982af2641d13d4a4d6630d8a4cb4d5ccaee6c8ecd8fb9d596e7b0947c3ca893efdd5ea4baf35b52832f71c021703b9cbfe2f4c
 WHIRLPOOL 
7c9d48d6c0a28a47e6dd6f848cf07cf36efcc0b7ca2c5bd5e566213ac7928567afbec4e222ac01e56eb496acb6cd665c235ff84ce551d569f4f5a2114848bfb8
-DIST moodle-3.3.2.tgz 44171663 SHA256 
1a34c8e85d05bb693a1f4f5e70b63f527cac655101236ab1e474aa295843fbf1 SHA512 
58b97f3e8f9f5c8956acce77be1e75dcc49ca27bb7032bdc70e386d6dc39dfc843b450ade27061a547f766073ec21564767af50140ac18915ab6cf92a0250973
 WHIRLPOOL 
b69714dae5305f140a6beb441414b79ee5040e58fd8e60e2c958314b5758dd352fdbfaf3e3df38dc2e3185494474eaabee83ad7e51e4fb19eda35996b696e9e5
+DIST moodle-3.1.9.tgz 38020777 SHA256 
6c4b0afb71a96c9d0f532783e826ddc3f74df583b6c72fc30835c7f466f10be6 SHA512 
c65e7373db49f98fe4493b9f6aa39bee46c2d49dd3b4cf1bad82e28a71a9932fff2ac24e9a1b9562d66deca28e354da41cd7c282ffba942f50c2b849ef003aef
 WHIRLPOOL 
ad586ec1132e340b0128c927b89f6d310dc66760e03bd6cfe98bca4cee078481ddaa3ad718eb6cd3ab67ec07e6b7dc26bac35e489b06f32cc3e1c40e1b380592
+DIST moodle-3.2.6.tgz 40314104 SHA256 
d5372913c4b4920e55fdf16d93f6902d0517d30b10eb8f54c2912c927105f02c SHA512 
afeacaf965ca6d80c7c4121ba4a74c15f1255175d0a4b056bd59e738180ff80dc431587ed98897602527a39f1f9a32a76a2dbd868445ba901fb8b7c0c3c48096
 WHIRLPOOL 
682ed6d551b68ce448282ba47201a6a7a149a84ab4190dfedd79d61a51daa1b13db1ad6c2030f5bf3eb3bc0e1dd80fbfad2045bc219230b50347bf564de248d9
+DIST moodle-3.3.3.tgz 44238027 SHA256 
2c7acf7b8011bfb958ea558e6c33f2f5ccc95cf3f57a90f85d57303a8f766066 SHA512 
9d0097b081b4f6ad4e5d4951696d552bf097e22f807bcf9ad3112388716fcc16ca4c5bd79074739689205c8f193901874f892b29f15c1cf4545cdcc38fc7c4c7
 WHIRLPOOL 
39c4fe73faca6092d0b9f71493ae7f441d2e4e30b1e38015f6c30645dce6a3ef0ee35429b8d3187bb6f5d532836c2f9beb2eb8efa8360f1f037a889f9fd98703
+DIST moodle-3.4.tgz 44875575 SHA256 
06888238944d951009f19d2705c2fe8ed64fe6f5e526310f52646a4129612277 SHA512 
72cc62864c7b8020af5b48d7af47afe763ce593f96749d149c3dcfd39f9eb3f8de383bc4684c6591ad5ad157c85f0ffea54eb70489e8312b8b09c63a73f32dba
 WHIRLPOOL 
28a71cac3ac412d246058112c50dc3708e14f07508a72e698b663124739a32035ba127a51288d3568af583620d26a77167a8950a3601b6cc0342a649c427

diff --git a/www-apps/moodle/moodle-3.1.8.ebuild 
b/www-apps/moodle/moodle-3.1.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.8.ebuild
rename to www-apps/moodle/moodle-3.1.9.ebuild

diff --git a/www-apps/moodle/moodle-3.2.5.ebuild 
b/www-apps/moodle/moodle-3.2.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.2.5.ebuild
rename to www-apps/moodle/moodle-3.2.6.ebuild

diff --git a/www-apps/moodle/moodle-3.3.2.ebuild 
b/www-apps/moodle/moodle-3.3.3.ebuild
similarity index 100%
copy from www-apps/moodle/moodle-3.3.2.ebuild
copy to www-apps/moodle/moodle-3.3.3.ebuild

diff --git a/www-apps/moodle/moodle-3.3.2.ebuild 
b/www-apps/moodle/moodle-3.4.ebuild
similarity index 97%
rename from www-apps/moodle/moodle-3.3.2.ebuild
rename to www-apps/moodle/moodle-3.4.ebuild
index 4c2d978ef8a..01e29039a3f 100644
--- a/www-apps/moodle/moodle-3.3.2.ebuild
+++ b/www-apps/moodle/moodle-3.4.ebuild
@@ -41,7 +41,7 @@ REQUIRED_USE="|| ( ${DB_TYPES} )"
 # and the moodle documentation for other possibilities.
 DEPEND=""
 RDEPEND="
-   >=dev-lang/php-5.6.5[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   >=dev-lang/php-7.0[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
virtual/httpd-php
virtual/cron"
 



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2017-09-19 Thread Anthony G. Basile
commit: f8efa45d77ff962d02a40797d69f6696c066541e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Sep 19 20:19:01 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Sep 19 20:19:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8efa45d

www-apps/moodle: version bumps to 3.1.8, 3.2.5 and 3.3.2

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 www-apps/moodle/Manifest | 6 +++---
 www-apps/moodle/{moodle-3.1.7.ebuild => moodle-3.1.8.ebuild} | 0
 www-apps/moodle/{moodle-3.2.4.ebuild => moodle-3.2.5.ebuild} | 0
 www-apps/moodle/{moodle-3.3.1.ebuild => moodle-3.3.2.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 43d073ff3c4..d33f72ada17 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-3.1.7.tgz 37982099 SHA256 
927d41d070d6703ba98b312a261da84f603f16c8da4e8ac34c049c7785451284 SHA512 
56786eb8b8921272c2afffaba393fac6b6bec2b1d07aa6806c726ee2f8cd3a7c7176e6b63d9a706697c6df86794d35a3d91cc0cbee04279fb8e5472f0f5c504c
 WHIRLPOOL 
657bb2d107abf2e1f3a6333e4ba593ddac29751d829d230e888fd2b8b62ac5eb385670742b0708a26c44ceaff6a217670fe1a02f330667289556a10486e1cfee
-DIST moodle-3.2.4.tgz 39525148 SHA256 
5f743bc389582bd8e0f5878d745cf23472fe97b9e7de459dfe42483844f42385 SHA512 
153b66baf72fd1e6d0f453c76deb9155fa49cbba42a2383191adec1d31d7f8bddd75f95025fc29cee1a76bf6e9d748322e9c164a21fe330f366ab51905cd70e6
 WHIRLPOOL 
63ed248cfe47421203504aee5191435783d007a750f66d368c4c7b1a36e8a360adf5fd8c6a2fae2be02a2a45a6dc2d70d475d06ac17f8b2503c18f5e7282e568
-DIST moodle-3.3.1.tgz 43790252 SHA256 
9c7069a4d46134972ae50f75bae4f25d60ea75603dfaff5fb5f1306fee70daf0 SHA512 
e338e33886b1d76c045d34428be97baedf47e65e4baba8003e334bfca019611bfdcf3f6c68ff3235463bdef6b90734be2725c48202fca259e604456f4c1c0bf1
 WHIRLPOOL 
271cddd2187fd51332241a308c3b04662a0661f014b31e7a1a2391f15db515f4e3aeb1da02408db3215c4a972a279594e7d8f8c43970e7ffabc4ac9fbee5281a
+DIST moodle-3.1.8.tgz 38015937 SHA256 
5209cdda1eaf3f88eb7e9eb852217ad5918607077251dab7fe29f088c76db35d SHA512 
e35912f10fa98bdb0e392f2020fa48c21d077608a6877f4a35c019c34963cc14522664f6bf88a7e98f01e42d0c171c9dbd2f4403d330baab321645fdb1d60fe2
 WHIRLPOOL 
f31973f6845203bad40d6cad6ab560263fa972a38d697d4bd8fae85d10ab63474472055365d90f1566c97cf299efcfeb07d7913af8b5e9660e2e8689c8689d41
+DIST moodle-3.2.5.tgz 39902419 SHA256 
53a381988fc0aa0169c4e2af2364406614bc3cf0948631a1f3008df3ccbfa3c4 SHA512 
f1773d0c118c4e0952ce2606d6982af2641d13d4a4d6630d8a4cb4d5ccaee6c8ecd8fb9d596e7b0947c3ca893efdd5ea4baf35b52832f71c021703b9cbfe2f4c
 WHIRLPOOL 
7c9d48d6c0a28a47e6dd6f848cf07cf36efcc0b7ca2c5bd5e566213ac7928567afbec4e222ac01e56eb496acb6cd665c235ff84ce551d569f4f5a2114848bfb8
+DIST moodle-3.3.2.tgz 44171663 SHA256 
1a34c8e85d05bb693a1f4f5e70b63f527cac655101236ab1e474aa295843fbf1 SHA512 
58b97f3e8f9f5c8956acce77be1e75dcc49ca27bb7032bdc70e386d6dc39dfc843b450ade27061a547f766073ec21564767af50140ac18915ab6cf92a0250973
 WHIRLPOOL 
b69714dae5305f140a6beb441414b79ee5040e58fd8e60e2c958314b5758dd352fdbfaf3e3df38dc2e3185494474eaabee83ad7e51e4fb19eda35996b696e9e5

diff --git a/www-apps/moodle/moodle-3.1.7.ebuild 
b/www-apps/moodle/moodle-3.1.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.7.ebuild
rename to www-apps/moodle/moodle-3.1.8.ebuild

diff --git a/www-apps/moodle/moodle-3.2.4.ebuild 
b/www-apps/moodle/moodle-3.2.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.2.4.ebuild
rename to www-apps/moodle/moodle-3.2.5.ebuild

diff --git a/www-apps/moodle/moodle-3.3.1.ebuild 
b/www-apps/moodle/moodle-3.3.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.3.1.ebuild
rename to www-apps/moodle/moodle-3.3.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2017-07-10 Thread Anthony G. Basile
commit: cbf0aa94bb34dc3822aea4355fb221c69bff6a0f
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jul 10 22:06:22 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jul 10 22:06:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf0aa94

www-apps/moodle: version bumps to 3.1.7, 3.2.4, 3.3.1, remover older

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 www-apps/moodle/Manifest   |   7 +-
 www-apps/moodle/moodle-2.7.20.ebuild   | 121 -
 .../{moodle-3.0.10.ebuild => moodle-3.1.7.ebuild}  |   0
 .../{moodle-3.2.3.ebuild => moodle-3.2.4.ebuild}   |   0
 .../{moodle-3.1.6.ebuild => moodle-3.3.1.ebuild}   |   6 +-
 5 files changed, 7 insertions(+), 127 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index d6533516948..43d073ff3c4 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,3 @@
-DIST moodle-2.7.20.tgz 35012095 SHA256 
c6bc904becc85ce8c8e9cf4ddd0237ac1503eac193f14870905a7a87ed2babe7 SHA512 
0f3475d0e4ed9e8fbc6c05fabffd9cb0c2ae3e74370494cc08432abea1926735c2ae54fc18a068dae9d224979b4d936a36a447aa4a0705790f9dfc52889d
 WHIRLPOOL 
56df05fb7aab4208ce712772ef71f868f280fe41ca26add4f58eea62aaadac17b7114a4826953a9062ff45567d159081102585fe9e7e9531dc59e29636f501f8
-DIST moodle-3.0.10.tgz 38221195 SHA256 
2adc2bd6e457409923795b4bfb1c086aedfd0069322195f5590baa08c75c42e7 SHA512 
9430e43dde69efd583b29ccdaf70c6abaa71285a09660b79827d836aefb868a9302fed5c806c63a1e8a557b18c096b8d058a38755f36b45e426b7ec9a7d4a378
 WHIRLPOOL 
8b52d217a1d0e5db57ada3a531eab112092a514a9feaaebf1126b4e1d06e3a7c1c09d525b25e9be41b01633cdf375a3d217e6dbffa9c8a5d4dd67e3d435636ed
-DIST moodle-3.1.6.tgz 37981129 SHA256 
d00307f763dec6b0f2b9637b057079e730f0ffc85765848f111a39c0a05f510d SHA512 
4a3dfaa8707b49c4f43d834c4927914e64344540916ce40d79486a03b9a9d03ff54ad5aef01afc058c54e5c5bc8152a054ad57e13a1aa4a1d96fb64634b15ec7
 WHIRLPOOL 
a4ea07aef256d416ee121e40b06c347be9c963ee1879b82df6556150b3c315d3222438ce5092bbaddcdd5c49405f3c5ecac87324d6b0ca621dfb7c81778de0a6
-DIST moodle-3.2.3.tgz 39500908 SHA256 
ce5c0e5fb670cea7b0a4f0692f88e0eaa2908ecac4f02a16c8b15b6860a909ff SHA512 
80cb4c84ee5ac39f6d4331a86f19a74af42a66d06624b2a4b80c8ef0a711c44a95e6059aba2c9d22b253782e433215d744282e2766388e95f4f26ef9dbcc09ff
 WHIRLPOOL 
1c15ecd963e6eeb0100fe4a405340a93715eb9ecc31ff8207b6ee6dcde9986a6e17a6ea914ce5f4e61ae832ee62db06ba9ca5b90a59f25428edc432be014d7e1
+DIST moodle-3.1.7.tgz 37982099 SHA256 
927d41d070d6703ba98b312a261da84f603f16c8da4e8ac34c049c7785451284 SHA512 
56786eb8b8921272c2afffaba393fac6b6bec2b1d07aa6806c726ee2f8cd3a7c7176e6b63d9a706697c6df86794d35a3d91cc0cbee04279fb8e5472f0f5c504c
 WHIRLPOOL 
657bb2d107abf2e1f3a6333e4ba593ddac29751d829d230e888fd2b8b62ac5eb385670742b0708a26c44ceaff6a217670fe1a02f330667289556a10486e1cfee
+DIST moodle-3.2.4.tgz 39525148 SHA256 
5f743bc389582bd8e0f5878d745cf23472fe97b9e7de459dfe42483844f42385 SHA512 
153b66baf72fd1e6d0f453c76deb9155fa49cbba42a2383191adec1d31d7f8bddd75f95025fc29cee1a76bf6e9d748322e9c164a21fe330f366ab51905cd70e6
 WHIRLPOOL 
63ed248cfe47421203504aee5191435783d007a750f66d368c4c7b1a36e8a360adf5fd8c6a2fae2be02a2a45a6dc2d70d475d06ac17f8b2503c18f5e7282e568
+DIST moodle-3.3.1.tgz 43790252 SHA256 
9c7069a4d46134972ae50f75bae4f25d60ea75603dfaff5fb5f1306fee70daf0 SHA512 
e338e33886b1d76c045d34428be97baedf47e65e4baba8003e334bfca019611bfdcf3f6c68ff3235463bdef6b90734be2725c48202fca259e604456f4c1c0bf1
 WHIRLPOOL 
271cddd2187fd51332241a308c3b04662a0661f014b31e7a1a2391f15db515f4e3aeb1da02408db3215c4a972a279594e7d8f8c43970e7ffabc4ac9fbee5281a

diff --git a/www-apps/moodle/moodle-2.7.20.ebuild 
b/www-apps/moodle/moodle-2.7.20.ebuild
deleted file mode 100644
index 3f11998be43..000
--- a/www-apps/moodle/moodle-2.7.20.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="http://moodle.org;
-SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
-
-# No forced dependency on
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-7* )
-# which 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2017-05-08 Thread Anthony G. Basile
commit: 3ba5f8b642f558ca8b140ee8448c889e97e8a8b1
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon May  8 23:36:24 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon May  8 23:36:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba5f8b6

www-apps/moodle: bumps to 3.2.3, 3.1.6, 3.0.10 and 2.7.20

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-2.7.19.ebuild => moodle-2.7.20.ebuild} | 0
 www-apps/moodle/{moodle-3.0.9.ebuild => moodle-3.0.10.ebuild}  | 0
 www-apps/moodle/{moodle-3.1.5.ebuild => moodle-3.1.6.ebuild}   | 0
 www-apps/moodle/{moodle-3.2.2.ebuild => moodle-3.2.3.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 167520f9bb9..d6533516948 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-2.7.19.tgz 35011179 SHA256 
bf82b808988dc76296e55fd0327bc3e9700041b6c9d191e4969dea998680eee7 SHA512 
019c247ecad4be90584b28beb448eb826b4c3cf8a0b7dc338f7e9f2a012a11b10187f8226a91fb2a61df12b15a83307f850566b50053aa79194a9b670e38f836
 WHIRLPOOL 
83e4571cb8ef536066e28b8874b49aeac5c67aa26d505f8bffd90d0a90c25db8414112ca4bb6ea8b65ff34f5310ea27d9c41382d355d7bb5bef497c3d3f41edf
-DIST moodle-3.0.9.tgz 38216116 SHA256 
48786ee7bba47603843c405be91e4bcb269b3864e532425620c15d216d2c311b SHA512 
008ffb7e44fbaa15bc274335146f17cf16f745fec201c053d6ba9a60515ec2f8147540424a9f28bb7cabca575ffc9ed8257e614dbf7167e4b654313d2d5c9fe8
 WHIRLPOOL 
a08ca352471a3ac71bafd747de5525437bfaca1116e46b927794407139cb9ce28fd98d6ef222790dbb5bb824b074bd607d97d95d99ea2dce2029efc534efb1a6
-DIST moodle-3.1.5.tgz 37952408 SHA256 
48b685e52bc65b3cb78930cb1331abff2a0153f2ac6606ac2969ff6011315f7f SHA512 
181da764f3c9a51f8485e3b48ba6b6714c0d851e771049f9c834f70a07fead10204d3c1daf9411f0d909a194011c97559c254d03a2b8fc5cc9f59fb05b2e9cf4
 WHIRLPOOL 
e798f6956d5577147f39ba11321c0f18c783678b2562f591c339610a57a888c4acd83c1a3ed85cdc60e5e02ba1ab79eb88914f07ea331b6f9b08b8071bbbea1c
-DIST moodle-3.2.2.tgz 39465439 SHA256 
7d520e781756a020314d913521a612e4a1b188b074eec043dc29e897f66585cb SHA512 
fa6a78743b8b98fe637774222b3c50e045cb2bf2d7c2061394035d48526540769beae032b97c1a7428c04e61ec778db2cbc3dd470f907e759dd754f83aa39fdd
 WHIRLPOOL 
4e403853cd1fbd79de36b6fb938171ab79aba4dfe3da134b6dd834f159e8536546d2c7d198e866f1d491428260d3bb08127a232e6cd7bc75e1df83bfad86caff
+DIST moodle-2.7.20.tgz 35012095 SHA256 
c6bc904becc85ce8c8e9cf4ddd0237ac1503eac193f14870905a7a87ed2babe7 SHA512 
0f3475d0e4ed9e8fbc6c05fabffd9cb0c2ae3e74370494cc08432abea1926735c2ae54fc18a068dae9d224979b4d936a36a447aa4a0705790f9dfc52889d
 WHIRLPOOL 
56df05fb7aab4208ce712772ef71f868f280fe41ca26add4f58eea62aaadac17b7114a4826953a9062ff45567d159081102585fe9e7e9531dc59e29636f501f8
+DIST moodle-3.0.10.tgz 38221195 SHA256 
2adc2bd6e457409923795b4bfb1c086aedfd0069322195f5590baa08c75c42e7 SHA512 
9430e43dde69efd583b29ccdaf70c6abaa71285a09660b79827d836aefb868a9302fed5c806c63a1e8a557b18c096b8d058a38755f36b45e426b7ec9a7d4a378
 WHIRLPOOL 
8b52d217a1d0e5db57ada3a531eab112092a514a9feaaebf1126b4e1d06e3a7c1c09d525b25e9be41b01633cdf375a3d217e6dbffa9c8a5d4dd67e3d435636ed
+DIST moodle-3.1.6.tgz 37981129 SHA256 
d00307f763dec6b0f2b9637b057079e730f0ffc85765848f111a39c0a05f510d SHA512 
4a3dfaa8707b49c4f43d834c4927914e64344540916ce40d79486a03b9a9d03ff54ad5aef01afc058c54e5c5bc8152a054ad57e13a1aa4a1d96fb64634b15ec7
 WHIRLPOOL 
a4ea07aef256d416ee121e40b06c347be9c963ee1879b82df6556150b3c315d3222438ce5092bbaddcdd5c49405f3c5ecac87324d6b0ca621dfb7c81778de0a6
+DIST moodle-3.2.3.tgz 39500908 SHA256 
ce5c0e5fb670cea7b0a4f0692f88e0eaa2908ecac4f02a16c8b15b6860a909ff SHA512 
80cb4c84ee5ac39f6d4331a86f19a74af42a66d06624b2a4b80c8ef0a711c44a95e6059aba2c9d22b253782e433215d744282e2766388e95f4f26ef9dbcc09ff
 WHIRLPOOL 
1c15ecd963e6eeb0100fe4a405340a93715eb9ecc31ff8207b6ee6dcde9986a6e17a6ea914ce5f4e61ae832ee62db06ba9ca5b90a59f25428edc432be014d7e1

diff --git a/www-apps/moodle/moodle-2.7.19.ebuild 
b/www-apps/moodle/moodle-2.7.20.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.19.ebuild
rename to www-apps/moodle/moodle-2.7.20.ebuild

diff --git a/www-apps/moodle/moodle-3.0.9.ebuild 
b/www-apps/moodle/moodle-3.0.10.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.9.ebuild
rename to www-apps/moodle/moodle-3.0.10.ebuild

diff --git a/www-apps/moodle/moodle-3.1.5.ebuild 
b/www-apps/moodle/moodle-3.1.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.5.ebuild
rename to www-apps/moodle/moodle-3.1.6.ebuild

diff --git a/www-apps/moodle/moodle-3.2.2.ebuild 
b/www-apps/moodle/moodle-3.2.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.2.2.ebuild
rename to www-apps/moodle/moodle-3.2.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2017-01-09 Thread Anthony G. Basile
commit: 8daee40f22e7763ef6743c4dacd66a8fe4958d7a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan  9 15:31:13 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan  9 15:31:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8daee40f

www-apps/moodle: version bumps to 2.7.18, 3.0.8, 3.1.4, 3.2.1

Package-Manager: portage-2.3.0

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-2.7.17.ebuild => moodle-2.7.18.ebuild} |   2 +-
 www-apps/moodle/moodle-3.0.7.ebuild| 122 -
 .../{moodle-3.1.3.ebuild => moodle-3.0.8.ebuild}   |   2 +-
 .../{moodle-2.9.9.ebuild => moodle-3.1.4.ebuild}   |   2 +-
 .../{moodle-3.2.ebuild => moodle-3.2.1.ebuild} |   2 +-
 6 files changed, 8 insertions(+), 131 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index ace85f2..6621d1d 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-2.7.17.tgz 35006140 SHA256 
02ccedeca9e33d5ffb5554e12a5c85f0c44fbc853e619d6b9f7a4a1519aadda4 SHA512 
3ec42f1d8e86536aa6044d87ac8721adca3216c74be25fffcda16ccdaf768f0db92de3860e17d3ee5be594aa2834c6a04ce42329ad6b78c0f0a36a7761f32cf1
 WHIRLPOOL 
f13d716bfcb53a978da0b07359d559b66104168d80efed1a931f4b113f37a7756b7d3df2b18604b13d9e65b638c923877163c8b610eac1f03e30a3cdbe4efd70
-DIST moodle-2.9.9.tgz 36587881 SHA256 
c7aab8387f88111923dd1063964e70c88f1a883b2820f28f273ff572634f5c3b SHA512 
3dae5c35f5d1149288fb5f94509204910e66e288ab3f67d5fd93d098fc0d6ae5adda5340eef23ea907b397a4bde5bc8fe1d99b48b5358f2bf605f2c84bc566fb
 WHIRLPOOL 
46ee8e6a2fa5ae878b6a29e68824432a1024420d92033f3055d9ed9cdd80b2d99e7420017541944acf3890819c7bf6a1f518a2ca1bb2bc2627fee615a228b86e
-DIST moodle-3.0.7.tgz 38213543 SHA256 
6d4f97fd6f8431a8a79eb8d49bdaf54b197c667d7b6d6185c4d7e568d69092b0 SHA512 
5182190ae2075a83a1e01b8f2a678a718741ebdcd76db8ee6b154fb9ead044f1e341f7ac52967796938b9dad3fc3dc45d3110fe1b30cb75487592c1dbab6a194
 WHIRLPOOL 
3e3349873ce11154633258a02a46ab491e53d8a99306b352c11ccab899349caf221beecb48835103c02a5e40a4282f697bd742a7ec30a04321281627f6c6b18d
-DIST moodle-3.1.3.tgz 37558330 SHA256 
c0a4924ef66000fc1ac203276260789a43aab6a88283a45f1ce01002370a8ab2 SHA512 
fe6d4a09ec1808d2e8b74a5a092417531cac82e644d9481b417944d8174c07d7aa573892ed6bb8c881eb4aee133dcd85b9f6ce0ff90aa86d183ec5dcd2796e76
 WHIRLPOOL 
5608a20b39faf6f7ca1e88036498818183f3995dc3e54c23adbf7b29d415d06fab6f5e1f883841e1152026a7ed44a40986db6cfdff922e4b85b8b9446680e3dc
-DIST moodle-3.2.tgz 38923254 SHA256 
ae6dcfdc0d300bcba518f10be7978049f0c4e400b4f2e4420f3b31c011cbeb41 SHA512 
6eca98c02cd42809dbb39b2a6197e984c6f110b33d1c15cb6399966af0bf7eeb0436f65f3ceb06e3bbf21a27551867ed5eaec6706fdf5624550d9aa96907cc58
 WHIRLPOOL 
aa8ff0cff234875fec990d15a84b9ac229a772f65fcc7628ed3647cb5a436d8b13da1b4f35f2a7ef4453c465553e702c7be80f4e64d82387b74302b1c5feda92
+DIST moodle-2.7.18.tgz 35010056 SHA256 
1de359ab1808fb8c29a39a6b094a291f5069708a5221cb25f1b7d0577b3dbf4c SHA512 
6dc5a9b2db8c77123c0695f0b030988e85b43b3ab8ce69c4f966ab3ca788a4c84b41c72acbcc9d67fdffb1602b6535d1efe37a29e2f78b57b51ff4f964dfc11e
 WHIRLPOOL 
7dda24bd08c2b6c22d4f4512abd2cad8ab8da50ac99d39693448db5f1e2b16e71f0838868d58ff93b1e45cceb9dbebf03491ef10df275654dc13288df3de1d80
+DIST moodle-3.0.8.tgz 38221696 SHA256 
724ad047b9dd6d43df2bdb0f81e8e7d5a9bd7616ebd85ffb3fd533c9581d70bc SHA512 
10f92b69bafcd0c550c4f7003a2c4a52b3423dcfc9dd50a38e9edfdbaafa01d68caa1028b6946d30223d195fdf0a37b221369445fc52506a21924678507eeb15
 WHIRLPOOL 
8a2f6a6104bd084cb176a7d5d9a4fab81e73e1e52f71ce1a7bcfb8dfaf71d9ecf5a744d4c9457e830b7c668e46c845e6d9dc77b915fbad8f6affe66072b78858
+DIST moodle-3.1.4.tgz 37568385 SHA256 
4360de1bb13d28bc2e4e28fe36acdc40513948b06c9cdae4b2a7f18b07af5a60 SHA512 
d8609d960615bfd5860420cd9f5253fc60fd3ca471fa5a6fa86c2c23249cb7005fa50ee8dd747d6db416a01d901c6b3214b06a98e4b4f20a36bc149de41010c7
 WHIRLPOOL 
d75a10b129f9a858730ed29a7dc96e12b44b295326d49cf5bd61891ebe61567569bc95309a546143894dfe37524ab794716e37858ca423a212a4483c16823434
+DIST moodle-3.2.1.tgz 38940294 SHA256 
c12afd72faf7505bdbe22a8bd056afc615517acea5c97ef8415357b25226fbed SHA512 
2942e312dcaae9ac234424f04216bf4f832cc5a716cc9fec392f4d71c8ece725d7d0ea0d19b09aeefcd661c73928f282812f94ad8e3be844c6739cf4da5b359c
 WHIRLPOOL 
82107b1dcd300b94592d1918aee36450228cbc595ea678803ea5506b28d48c376df1361acf3100b58ab4deb4d8a72324cd0d0728b93c2fa75d4e4e45ed839320

diff --git a/www-apps/moodle/moodle-2.7.17.ebuild 
b/www-apps/moodle/moodle-2.7.18.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-2.7.17.ebuild
rename to www-apps/moodle/moodle-2.7.18.ebuild
index 5781d53..785e26c 100644
--- a/www-apps/moodle/moodle-2.7.17.ebuild
+++ b/www-apps/moodle/moodle-2.7.18.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-12-10 Thread Anthony G. Basile
commit: adc331022749381c99cf558793dd9accd7cd3ad1
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Dec 10 17:52:35 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Dec 10 17:53:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc33102

www-apps/moodle: version bump to 3.2

Package-Manager: portage-2.3.0

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.2.ebuild | 122 ++
 2 files changed, 123 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index d17134a..ace85f2 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -2,3 +2,4 @@ DIST moodle-2.7.17.tgz 35006140 SHA256 
02ccedeca9e33d5ffb5554e12a5c85f0c44fbc853
 DIST moodle-2.9.9.tgz 36587881 SHA256 
c7aab8387f88111923dd1063964e70c88f1a883b2820f28f273ff572634f5c3b SHA512 
3dae5c35f5d1149288fb5f94509204910e66e288ab3f67d5fd93d098fc0d6ae5adda5340eef23ea907b397a4bde5bc8fe1d99b48b5358f2bf605f2c84bc566fb
 WHIRLPOOL 
46ee8e6a2fa5ae878b6a29e68824432a1024420d92033f3055d9ed9cdd80b2d99e7420017541944acf3890819c7bf6a1f518a2ca1bb2bc2627fee615a228b86e
 DIST moodle-3.0.7.tgz 38213543 SHA256 
6d4f97fd6f8431a8a79eb8d49bdaf54b197c667d7b6d6185c4d7e568d69092b0 SHA512 
5182190ae2075a83a1e01b8f2a678a718741ebdcd76db8ee6b154fb9ead044f1e341f7ac52967796938b9dad3fc3dc45d3110fe1b30cb75487592c1dbab6a194
 WHIRLPOOL 
3e3349873ce11154633258a02a46ab491e53d8a99306b352c11ccab899349caf221beecb48835103c02a5e40a4282f697bd742a7ec30a04321281627f6c6b18d
 DIST moodle-3.1.3.tgz 37558330 SHA256 
c0a4924ef66000fc1ac203276260789a43aab6a88283a45f1ce01002370a8ab2 SHA512 
fe6d4a09ec1808d2e8b74a5a092417531cac82e644d9481b417944d8174c07d7aa573892ed6bb8c881eb4aee133dcd85b9f6ce0ff90aa86d183ec5dcd2796e76
 WHIRLPOOL 
5608a20b39faf6f7ca1e88036498818183f3995dc3e54c23adbf7b29d415d06fab6f5e1f883841e1152026a7ed44a40986db6cfdff922e4b85b8b9446680e3dc
+DIST moodle-3.2.tgz 38923254 SHA256 
ae6dcfdc0d300bcba518f10be7978049f0c4e400b4f2e4420f3b31c011cbeb41 SHA512 
6eca98c02cd42809dbb39b2a6197e984c6f110b33d1c15cb6399966af0bf7eeb0436f65f3ceb06e3bbf21a27551867ed5eaec6706fdf5624550d9aa96907cc58
 WHIRLPOOL 
aa8ff0cff234875fec990d15a84b9ac229a772f65fcc7628ed3647cb5a436d8b13da1b4f35f2a7ef4453c465553e702c7be80f4e64d82387b74302b1c5feda92

diff --git a/www-apps/moodle/moodle-3.2.ebuild 
b/www-apps/moodle/moodle-3.2.ebuild
new file mode 100644
index ..916d01f
--- /dev/null
+++ b/www-apps/moodle/moodle-3.2.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org;
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.6.5[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn
+   fi
+}
+
+src_prepare() {

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-11-13 Thread Anthony G. Basile
commit: 6a86f651594abfc160c6b6e25954774be1903ca0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov 13 13:28:19 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov 13 13:28:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a86f651

www-apps/moodle: version bumps to 2.7.17, 2.9.9, 3.0.7, 3.1.3, bug #599408.

Package-Manager: portage-2.3.0

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-2.7.16.ebuild => moodle-2.7.17.ebuild} | 0
 www-apps/moodle/{moodle-2.9.8.ebuild => moodle-2.9.9.ebuild}   | 0
 www-apps/moodle/{moodle-3.0.6.ebuild => moodle-3.0.7.ebuild}   | 0
 www-apps/moodle/{moodle-3.1.2.ebuild => moodle-3.1.3.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index b7b47e6..d17134a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-2.7.16.tgz 35008687 SHA256 
9f10cc5c5b9628c255b90fde3ef35f9944f187abdd2162dca910d33bdcdc6968 SHA512 
616d622572a5fff4f6eb75b102730624ae44875f79e3adea8e6714606b9c1e5cc0a38b05e39a66fc4aa99bf2ac055e4301bf1f7741e725ceb0fa5ed7a4d93d94
 WHIRLPOOL 
e6f9cdbf94933d55f8c83052ba9eded3ef9ff632863667396151244ea0a7a88cade3950b65be9b44491f3a7aa8d0dfa0811c402eb82ee9ad7f5a5b65b25ea66a
-DIST moodle-2.9.8.tgz 36585205 SHA256 
6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 SHA512 
30a4bfce6c2a4c0c8a46db830b4a418520fc61bbb046c1203c5481d1621bb829c48a0a159284ea1435aec296cff939317dedf136fe7c5c1c42ca660dca611369
 WHIRLPOOL 
4e24a04d30636a7ec2e64d0306393b390ef8da9c10566aad8db80b938a993584e7d1c4895496045d37ee3689ac935a3a96ce3c6ba5cd91edd76289946a9d3226
-DIST moodle-3.0.6.tgz 38172652 SHA256 
f7500e97a58942a69ee04f6f6155cbe93e1ca0631950c29d60a56babc25af7ee SHA512 
2b61801e48d7db151fbfb1f017a19024f1cc24f437b63f91ef2f5a305e958e79ad5aa2d7cf5360839f8ad84e1568d8a5b3d7f7f6baf95ee0209091903e4529fa
 WHIRLPOOL 
d4965ac2526717ae5d00d380c2b42eec2f89ee1ff27b4f863d39d44e056da3c5fe6f802f5386d0e81029a84fcff457432f0ee6517b48f8f62a6b2644d519eda1
-DIST moodle-3.1.2.tgz 37508124 SHA256 
a9315cd4d615af9b55541bbcaf65104c6167c7c92f5bed5c7ea29876d6534d7e SHA512 
82f3448c2255d7665a2acea1baeaed9982e3a9a96842a5878ed02d92a5f92b8f00d7b43d6393018d604151f348d7fdc371b200569fd5b5ba4a83081f0604b693
 WHIRLPOOL 
d38a865067ec91421c7d961f05140e4fec94373dcdf79b08d8aa82bbf94df6411a2eb32748e9edcd779ffdf8738a0d40b779f0784b54da4bfc7b0f045c56e279
+DIST moodle-2.7.17.tgz 35006140 SHA256 
02ccedeca9e33d5ffb5554e12a5c85f0c44fbc853e619d6b9f7a4a1519aadda4 SHA512 
3ec42f1d8e86536aa6044d87ac8721adca3216c74be25fffcda16ccdaf768f0db92de3860e17d3ee5be594aa2834c6a04ce42329ad6b78c0f0a36a7761f32cf1
 WHIRLPOOL 
f13d716bfcb53a978da0b07359d559b66104168d80efed1a931f4b113f37a7756b7d3df2b18604b13d9e65b638c923877163c8b610eac1f03e30a3cdbe4efd70
+DIST moodle-2.9.9.tgz 36587881 SHA256 
c7aab8387f88111923dd1063964e70c88f1a883b2820f28f273ff572634f5c3b SHA512 
3dae5c35f5d1149288fb5f94509204910e66e288ab3f67d5fd93d098fc0d6ae5adda5340eef23ea907b397a4bde5bc8fe1d99b48b5358f2bf605f2c84bc566fb
 WHIRLPOOL 
46ee8e6a2fa5ae878b6a29e68824432a1024420d92033f3055d9ed9cdd80b2d99e7420017541944acf3890819c7bf6a1f518a2ca1bb2bc2627fee615a228b86e
+DIST moodle-3.0.7.tgz 38213543 SHA256 
6d4f97fd6f8431a8a79eb8d49bdaf54b197c667d7b6d6185c4d7e568d69092b0 SHA512 
5182190ae2075a83a1e01b8f2a678a718741ebdcd76db8ee6b154fb9ead044f1e341f7ac52967796938b9dad3fc3dc45d3110fe1b30cb75487592c1dbab6a194
 WHIRLPOOL 
3e3349873ce11154633258a02a46ab491e53d8a99306b352c11ccab899349caf221beecb48835103c02a5e40a4282f697bd742a7ec30a04321281627f6c6b18d
+DIST moodle-3.1.3.tgz 37558330 SHA256 
c0a4924ef66000fc1ac203276260789a43aab6a88283a45f1ce01002370a8ab2 SHA512 
fe6d4a09ec1808d2e8b74a5a092417531cac82e644d9481b417944d8174c07d7aa573892ed6bb8c881eb4aee133dcd85b9f6ce0ff90aa86d183ec5dcd2796e76
 WHIRLPOOL 
5608a20b39faf6f7ca1e88036498818183f3995dc3e54c23adbf7b29d415d06fab6f5e1f883841e1152026a7ed44a40986db6cfdff922e4b85b8b9446680e3dc

diff --git a/www-apps/moodle/moodle-2.7.16.ebuild 
b/www-apps/moodle/moodle-2.7.17.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.16.ebuild
rename to www-apps/moodle/moodle-2.7.17.ebuild

diff --git a/www-apps/moodle/moodle-2.9.8.ebuild 
b/www-apps/moodle/moodle-2.9.9.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.9.8.ebuild
rename to www-apps/moodle/moodle-2.9.9.ebuild

diff --git a/www-apps/moodle/moodle-3.0.6.ebuild 
b/www-apps/moodle/moodle-3.0.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.6.ebuild
rename to www-apps/moodle/moodle-3.0.7.ebuild

diff --git a/www-apps/moodle/moodle-3.1.2.ebuild 
b/www-apps/moodle/moodle-3.1.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.2.ebuild
rename to www-apps/moodle/moodle-3.1.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-09-28 Thread Anthony G. Basile
commit: 66abc6b956b3e1eb08dd6ef93a7465327fe7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Sep 28 21:38:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Sep 28 22:46:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66abc6b9

www-apps/moodle: remove einfo banner header

Package-Manager: portage-2.2.28

 www-apps/moodle/moodle-2.7.16.ebuild | 6 --
 www-apps/moodle/moodle-2.9.8.ebuild  | 6 --
 www-apps/moodle/moodle-3.0.6.ebuild  | 6 --
 www-apps/moodle/moodle-3.1.2.ebuild  | 6 --
 4 files changed, 24 deletions(-)

diff --git a/www-apps/moodle/moodle-2.7.16.ebuild 
b/www-apps/moodle/moodle-2.7.16.ebuild
index 21a783e..5781d53 100644
--- a/www-apps/moodle/moodle-2.7.16.ebuild
+++ b/www-apps/moodle/moodle-2.7.16.ebuild
@@ -59,10 +59,8 @@ pkg_setup() {
# REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
#if [[ ${DB_COUNT} -eq 0 ]]; then
#   eerror
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror "No database selected in your USE flags,"
#   eerror "You must select at least one."
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror
#   die
#fi
@@ -70,10 +68,8 @@ pkg_setup() {
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""
ewarn
-   ewarn 
"\033[1;33m**\033[00m"
ewarn "Multiple databases selected in your USE flags,"
ewarn "You will have to choose your database manually."
-   ewarn 
"\033[1;33m**\033[00m"
ewarn
fi
 }
@@ -117,12 +113,10 @@ src_install() {
 
 pkg_postinst() {
einfo
-   einfo 
"\033[1;32m**\033[00m"
einfo
einfo "To see the post install instructions, do"
einfo
einfo "webapp-config --show-postinst ${PN} ${PVR}"
einfo
-   einfo 
"\033[1;32m**\033[00m"
einfo
 }

diff --git a/www-apps/moodle/moodle-2.9.8.ebuild 
b/www-apps/moodle/moodle-2.9.8.ebuild
index ccdb5ad..c0a369d 100644
--- a/www-apps/moodle/moodle-2.9.8.ebuild
+++ b/www-apps/moodle/moodle-2.9.8.ebuild
@@ -62,10 +62,8 @@ pkg_setup() {
# REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
#if [[ ${DB_COUNT} -eq 0 ]]; then
#   eerror
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror "No database selected in your USE flags,"
#   eerror "You must select at least one."
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror
#   die
#fi
@@ -73,10 +71,8 @@ pkg_setup() {
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""
ewarn
-   ewarn 
"\033[1;33m**\033[00m"
ewarn "Multiple databases selected in your USE flags,"
ewarn "You will have to choose your database manually."
-   ewarn 
"\033[1;33m**\033[00m"
ewarn
fi
 }
@@ -117,12 +113,10 @@ src_install() {
 
 pkg_postinst() {
einfo
-   einfo 
"\033[1;32m**\033[00m"
einfo
einfo "To see the post install instructions, do"
einfo
einfo "webapp-config --show-postinst ${PN} ${PVR}"
einfo
-   einfo 
"\033[1;32m**\033[00m"
einfo
 }

diff --git a/www-apps/moodle/moodle-3.0.6.ebuild 
b/www-apps/moodle/moodle-3.0.6.ebuild
index ccdb5ad..c0a369d 100644
--- a/www-apps/moodle/moodle-3.0.6.ebuild
+++ b/www-apps/moodle/moodle-3.0.6.ebuild
@@ -62,10 +62,8 @@ pkg_setup() {
# REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
#if [[ ${DB_COUNT} -eq 0 ]]; then
#   eerror
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror "No database selected in your USE flags,"
#   eerror "You must select at least one."
-   #   eerror 
"\033[1;31m**\033[00m"
#   eerror
#   die
#fi
@@ -73,10 +71,8 @@ pkg_setup() {
if [[ ${DB_COUNT} -gt 1 ]]; then
MYDB=""
ewarn
-   ewarn 
"\033[1;33m**\033[00m"
ewarn "Multiple databases selected in your USE flags,"
ewarn "You will have to choose your database 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-09-11 Thread Anthony G. Basile
commit: 5102fa93f9e5e03243a8bb22db36f1d0780800df
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 11 15:11:34 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 11 15:32:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5102fa93

www-apps/moodle: version bump to 2.7.16, remove 2.7.15

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest   | 2 +-
 www-apps/moodle/{moodle-2.7.15.ebuild => moodle-2.7.16.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 8149b27..78b2830 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-2.7.15.tgz 35007649 SHA256 
9c61c40996157be0498ad0d5004014b77a5fe34599510c76f7dc1ffc95c74400 SHA512 
deb92e394bf0f0a06246c182d5411727f0fc07d6cd1defd2f8773362990dd45351bdf31fdf0494a0db95b9c96c1120546891988252cf19671cf19177cf05
 WHIRLPOOL 
0feba4c7d49d9d2179674e0199c20547c841886e6b3f2b9a2917cd5829ab1a00c196c55e175e8e8300177592d6278d93af16094c90881dac1c6d0ac3cd392e59
+DIST moodle-2.7.16.tgz 35008687 SHA256 
9f10cc5c5b9628c255b90fde3ef35f9944f187abdd2162dca910d33bdcdc6968 SHA512 
616d622572a5fff4f6eb75b102730624ae44875f79e3adea8e6714606b9c1e5cc0a38b05e39a66fc4aa99bf2ac055e4301bf1f7741e725ceb0fa5ed7a4d93d94
 WHIRLPOOL 
e6f9cdbf94933d55f8c83052ba9eded3ef9ff632863667396151244ea0a7a88cade3950b65be9b44491f3a7aa8d0dfa0811c402eb82ee9ad7f5a5b65b25ea66a
 DIST moodle-2.9.7.tgz 36586018 SHA256 
87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db SHA512 
1be555fc1e8cd948180dc3cf055c998290821e4445d534461228ee6a51758992f0c0572b0068452f1dbdcde6fba405370f6f44818dd7759e75850abb73a83cb3
 WHIRLPOOL 
dca9a276bd863aeb3a48636ed0bf575cd47ddc11396136b3bfb4c779845414026311f4caba71ba6792b433b1b92cf7c880931c63da9e1c9d602f82f2204586eb
 DIST moodle-3.0.5.tgz 38156153 SHA256 
e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 SHA512 
c78f68b234889d811a7c69caab5c503fac30142f806f9863d45710d806b777440d5d99193cb105f56955ef3a78638af63b96e4bd764aee6e9cc5b43e1169cfc6
 WHIRLPOOL 
e3f5c1dbf036a79afdb98723b6383490234c356088c358968be80075341c44e12e4f282a9d0887674b68bbf5c42cc83e6ec0d68e9b97b626dad9ec41c59531f3
 DIST moodle-3.1.1.tgz 37479843 SHA256 
7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 SHA512 
12c5c68691833033518f8dc9ce9053eb5a5bf88ebe7c4683c7ef611725d2763ad34f1af9e64d9696f4bb9d3a454c41f7516d040f34d7b6f88da1c140d074a552
 WHIRLPOOL 
871a12f9a49eacd545cbf02cacdf0700559a818ad5b8d3490782c8d84f5191772206dadadf24f2904d4a322705febf51f7dde60ff6afd3cd3b31de187bff69d4

diff --git a/www-apps/moodle/moodle-2.7.15.ebuild 
b/www-apps/moodle/moodle-2.7.16.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.15.ebuild
rename to www-apps/moodle/moodle-2.7.16.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-09-11 Thread Anthony G. Basile
commit: 7a1b66c469bd950bdca3e948d4456e5cd404a7c0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 11 15:17:05 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 11 15:32:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a1b66c4

www-apps/moodle: version bump to 3.1.2, remove 3.1.1

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-3.1.1.ebuild => moodle-3.1.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index b757ffe..b7b47e6 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.16.tgz 35008687 SHA256 
9f10cc5c5b9628c255b90fde3ef35f9944f187abdd2162dca910d33bdcdc6968 SHA512 
616d622572a5fff4f6eb75b102730624ae44875f79e3adea8e6714606b9c1e5cc0a38b05e39a66fc4aa99bf2ac055e4301bf1f7741e725ceb0fa5ed7a4d93d94
 WHIRLPOOL 
e6f9cdbf94933d55f8c83052ba9eded3ef9ff632863667396151244ea0a7a88cade3950b65be9b44491f3a7aa8d0dfa0811c402eb82ee9ad7f5a5b65b25ea66a
 DIST moodle-2.9.8.tgz 36585205 SHA256 
6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 SHA512 
30a4bfce6c2a4c0c8a46db830b4a418520fc61bbb046c1203c5481d1621bb829c48a0a159284ea1435aec296cff939317dedf136fe7c5c1c42ca660dca611369
 WHIRLPOOL 
4e24a04d30636a7ec2e64d0306393b390ef8da9c10566aad8db80b938a993584e7d1c4895496045d37ee3689ac935a3a96ce3c6ba5cd91edd76289946a9d3226
 DIST moodle-3.0.6.tgz 38172652 SHA256 
f7500e97a58942a69ee04f6f6155cbe93e1ca0631950c29d60a56babc25af7ee SHA512 
2b61801e48d7db151fbfb1f017a19024f1cc24f437b63f91ef2f5a305e958e79ad5aa2d7cf5360839f8ad84e1568d8a5b3d7f7f6baf95ee0209091903e4529fa
 WHIRLPOOL 
d4965ac2526717ae5d00d380c2b42eec2f89ee1ff27b4f863d39d44e056da3c5fe6f802f5386d0e81029a84fcff457432f0ee6517b48f8f62a6b2644d519eda1
-DIST moodle-3.1.1.tgz 37479843 SHA256 
7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 SHA512 
12c5c68691833033518f8dc9ce9053eb5a5bf88ebe7c4683c7ef611725d2763ad34f1af9e64d9696f4bb9d3a454c41f7516d040f34d7b6f88da1c140d074a552
 WHIRLPOOL 
871a12f9a49eacd545cbf02cacdf0700559a818ad5b8d3490782c8d84f5191772206dadadf24f2904d4a322705febf51f7dde60ff6afd3cd3b31de187bff69d4
+DIST moodle-3.1.2.tgz 37508124 SHA256 
a9315cd4d615af9b55541bbcaf65104c6167c7c92f5bed5c7ea29876d6534d7e SHA512 
82f3448c2255d7665a2acea1baeaed9982e3a9a96842a5878ed02d92a5f92b8f00d7b43d6393018d604151f348d7fdc371b200569fd5b5ba4a83081f0604b693
 WHIRLPOOL 
d38a865067ec91421c7d961f05140e4fec94373dcdf79b08d8aa82bbf94df6411a2eb32748e9edcd779ffdf8738a0d40b779f0784b54da4bfc7b0f045c56e279

diff --git a/www-apps/moodle/moodle-3.1.1.ebuild 
b/www-apps/moodle/moodle-3.1.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.1.ebuild
rename to www-apps/moodle/moodle-3.1.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-09-11 Thread Anthony G. Basile
commit: 007b559fc93d020233fdca475b124140e3591270
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 11 15:15:04 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 11 15:32:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007b559f

www-apps/moodle: version bump to 3.0.6, remove 3.0.5

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-3.0.5.ebuild => moodle-3.0.6.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 732df2e..b757ffe 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.16.tgz 35008687 SHA256 
9f10cc5c5b9628c255b90fde3ef35f9944f187abdd2162dca910d33bdcdc6968 SHA512 
616d622572a5fff4f6eb75b102730624ae44875f79e3adea8e6714606b9c1e5cc0a38b05e39a66fc4aa99bf2ac055e4301bf1f7741e725ceb0fa5ed7a4d93d94
 WHIRLPOOL 
e6f9cdbf94933d55f8c83052ba9eded3ef9ff632863667396151244ea0a7a88cade3950b65be9b44491f3a7aa8d0dfa0811c402eb82ee9ad7f5a5b65b25ea66a
 DIST moodle-2.9.8.tgz 36585205 SHA256 
6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 SHA512 
30a4bfce6c2a4c0c8a46db830b4a418520fc61bbb046c1203c5481d1621bb829c48a0a159284ea1435aec296cff939317dedf136fe7c5c1c42ca660dca611369
 WHIRLPOOL 
4e24a04d30636a7ec2e64d0306393b390ef8da9c10566aad8db80b938a993584e7d1c4895496045d37ee3689ac935a3a96ce3c6ba5cd91edd76289946a9d3226
-DIST moodle-3.0.5.tgz 38156153 SHA256 
e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 SHA512 
c78f68b234889d811a7c69caab5c503fac30142f806f9863d45710d806b777440d5d99193cb105f56955ef3a78638af63b96e4bd764aee6e9cc5b43e1169cfc6
 WHIRLPOOL 
e3f5c1dbf036a79afdb98723b6383490234c356088c358968be80075341c44e12e4f282a9d0887674b68bbf5c42cc83e6ec0d68e9b97b626dad9ec41c59531f3
+DIST moodle-3.0.6.tgz 38172652 SHA256 
f7500e97a58942a69ee04f6f6155cbe93e1ca0631950c29d60a56babc25af7ee SHA512 
2b61801e48d7db151fbfb1f017a19024f1cc24f437b63f91ef2f5a305e958e79ad5aa2d7cf5360839f8ad84e1568d8a5b3d7f7f6baf95ee0209091903e4529fa
 WHIRLPOOL 
d4965ac2526717ae5d00d380c2b42eec2f89ee1ff27b4f863d39d44e056da3c5fe6f802f5386d0e81029a84fcff457432f0ee6517b48f8f62a6b2644d519eda1
 DIST moodle-3.1.1.tgz 37479843 SHA256 
7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 SHA512 
12c5c68691833033518f8dc9ce9053eb5a5bf88ebe7c4683c7ef611725d2763ad34f1af9e64d9696f4bb9d3a454c41f7516d040f34d7b6f88da1c140d074a552
 WHIRLPOOL 
871a12f9a49eacd545cbf02cacdf0700559a818ad5b8d3490782c8d84f5191772206dadadf24f2904d4a322705febf51f7dde60ff6afd3cd3b31de187bff69d4

diff --git a/www-apps/moodle/moodle-3.0.5.ebuild 
b/www-apps/moodle/moodle-3.0.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.5.ebuild
rename to www-apps/moodle/moodle-3.0.6.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-09-11 Thread Anthony G. Basile
commit: b308aca31b5e6117d4f474802bb57daefccfe130
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Sep 11 15:12:57 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Sep 11 15:32:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b308aca3

www-apps/moodle: version bump to 2.9.8, remove 2.9.7

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-2.9.7.ebuild => moodle-2.9.8.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 78b2830..732df2e 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.16.tgz 35008687 SHA256 
9f10cc5c5b9628c255b90fde3ef35f9944f187abdd2162dca910d33bdcdc6968 SHA512 
616d622572a5fff4f6eb75b102730624ae44875f79e3adea8e6714606b9c1e5cc0a38b05e39a66fc4aa99bf2ac055e4301bf1f7741e725ceb0fa5ed7a4d93d94
 WHIRLPOOL 
e6f9cdbf94933d55f8c83052ba9eded3ef9ff632863667396151244ea0a7a88cade3950b65be9b44491f3a7aa8d0dfa0811c402eb82ee9ad7f5a5b65b25ea66a
-DIST moodle-2.9.7.tgz 36586018 SHA256 
87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db SHA512 
1be555fc1e8cd948180dc3cf055c998290821e4445d534461228ee6a51758992f0c0572b0068452f1dbdcde6fba405370f6f44818dd7759e75850abb73a83cb3
 WHIRLPOOL 
dca9a276bd863aeb3a48636ed0bf575cd47ddc11396136b3bfb4c779845414026311f4caba71ba6792b433b1b92cf7c880931c63da9e1c9d602f82f2204586eb
+DIST moodle-2.9.8.tgz 36585205 SHA256 
6606ff315bab35538f1e1fbbd51b3b65b6d59043689fa74938a3cc05d5236fe9 SHA512 
30a4bfce6c2a4c0c8a46db830b4a418520fc61bbb046c1203c5481d1621bb829c48a0a159284ea1435aec296cff939317dedf136fe7c5c1c42ca660dca611369
 WHIRLPOOL 
4e24a04d30636a7ec2e64d0306393b390ef8da9c10566aad8db80b938a993584e7d1c4895496045d37ee3689ac935a3a96ce3c6ba5cd91edd76289946a9d3226
 DIST moodle-3.0.5.tgz 38156153 SHA256 
e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 SHA512 
c78f68b234889d811a7c69caab5c503fac30142f806f9863d45710d806b777440d5d99193cb105f56955ef3a78638af63b96e4bd764aee6e9cc5b43e1169cfc6
 WHIRLPOOL 
e3f5c1dbf036a79afdb98723b6383490234c356088c358968be80075341c44e12e4f282a9d0887674b68bbf5c42cc83e6ec0d68e9b97b626dad9ec41c59531f3
 DIST moodle-3.1.1.tgz 37479843 SHA256 
7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 SHA512 
12c5c68691833033518f8dc9ce9053eb5a5bf88ebe7c4683c7ef611725d2763ad34f1af9e64d9696f4bb9d3a454c41f7516d040f34d7b6f88da1c140d074a552
 WHIRLPOOL 
871a12f9a49eacd545cbf02cacdf0700559a818ad5b8d3490782c8d84f5191772206dadadf24f2904d4a322705febf51f7dde60ff6afd3cd3b31de187bff69d4

diff --git a/www-apps/moodle/moodle-2.9.7.ebuild 
b/www-apps/moodle/moodle-2.9.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.9.7.ebuild
rename to www-apps/moodle/moodle-2.9.8.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-07-11 Thread Anthony G. Basile
commit: 7d1cb9dd42d2fd1c32a3d34945f4ecf9a94aea29
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jul 11 10:54:21 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jul 11 10:54:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1cb9dd

www-apps/moodle: version bump to 3.1.1, drop older 3.1

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest   | 2 +-
 www-apps/moodle/{moodle-3.1.ebuild => moodle-3.1.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 244869d..8149b27 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.15.tgz 35007649 SHA256 
9c61c40996157be0498ad0d5004014b77a5fe34599510c76f7dc1ffc95c74400 SHA512 
deb92e394bf0f0a06246c182d5411727f0fc07d6cd1defd2f8773362990dd45351bdf31fdf0494a0db95b9c96c1120546891988252cf19671cf19177cf05
 WHIRLPOOL 
0feba4c7d49d9d2179674e0199c20547c841886e6b3f2b9a2917cd5829ab1a00c196c55e175e8e8300177592d6278d93af16094c90881dac1c6d0ac3cd392e59
 DIST moodle-2.9.7.tgz 36586018 SHA256 
87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db SHA512 
1be555fc1e8cd948180dc3cf055c998290821e4445d534461228ee6a51758992f0c0572b0068452f1dbdcde6fba405370f6f44818dd7759e75850abb73a83cb3
 WHIRLPOOL 
dca9a276bd863aeb3a48636ed0bf575cd47ddc11396136b3bfb4c779845414026311f4caba71ba6792b433b1b92cf7c880931c63da9e1c9d602f82f2204586eb
 DIST moodle-3.0.5.tgz 38156153 SHA256 
e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 SHA512 
c78f68b234889d811a7c69caab5c503fac30142f806f9863d45710d806b777440d5d99193cb105f56955ef3a78638af63b96e4bd764aee6e9cc5b43e1169cfc6
 WHIRLPOOL 
e3f5c1dbf036a79afdb98723b6383490234c356088c358968be80075341c44e12e4f282a9d0887674b68bbf5c42cc83e6ec0d68e9b97b626dad9ec41c59531f3
-DIST moodle-3.1.tgz 37440572 SHA256 
5debb77fe2a82f28b25505f1244cc9e641b1c0b20dfefe831917c605da74151c SHA512 
a8ab1b275bcb75e233b4cb77c6afb7bfb268e9dd11add7120c420e9f6179146640ab3bad8f4b050eaa254a2adb01500b80e2fc47517f6c1a1e98c13ad8389354
 WHIRLPOOL 
635a9d7c545880e98904ec30348011aee4bcd47cecd463c576ca4c4f3ac5b2848601b359d5282885151c89e0bac48881fbf132e2879f92218edbd1991623
+DIST moodle-3.1.1.tgz 37479843 SHA256 
7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 SHA512 
12c5c68691833033518f8dc9ce9053eb5a5bf88ebe7c4683c7ef611725d2763ad34f1af9e64d9696f4bb9d3a454c41f7516d040f34d7b6f88da1c140d074a552
 WHIRLPOOL 
871a12f9a49eacd545cbf02cacdf0700559a818ad5b8d3490782c8d84f5191772206dadadf24f2904d4a322705febf51f7dde60ff6afd3cd3b31de187bff69d4

diff --git a/www-apps/moodle/moodle-3.1.ebuild 
b/www-apps/moodle/moodle-3.1.1.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.1.ebuild
rename to www-apps/moodle/moodle-3.1.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-07-10 Thread Anthony G. Basile
commit: 95378967d73fab198ba2454877470f498e70867e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jul 10 12:20:40 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jul 10 12:21:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95378967

www-apps/moodle: version bumps, remove unsupported versions

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest   |   7 +-
 .../{moodle-2.7.14.ebuild => moodle-2.7.15.ebuild} |   0
 .../{moodle-2.8.12.ebuild => moodle-2.9.7.ebuild}  |   0
 www-apps/moodle/moodle-3.0.4.ebuild| 128 -
 .../{moodle-2.9.6.ebuild => moodle-3.0.5.ebuild}   |   0
 5 files changed, 3 insertions(+), 132 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index d57e9d7..244869d 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-2.7.14.tgz 35005794 SHA256 
c89250c9a2995f1f2a70ded150ca4dcb08413f8a69bc954b172a8aa89909fe63 SHA512 
8be87397dabf757bb9778d46415b8f364559faf2f4d128bb7eb8206c8bfa203fab6d13c9cf9a31bc62579be3e47b53dd80456844906176916c7bda2e9ea02627
 WHIRLPOOL 
c88fc53a8052b2c918afc7474be482cb2b19b518d412c11e29e7048cb33215aeb78cca5a4070f74047dedb9c9bb8154c4494ce9e371e0133df5384af9fcba75e
-DIST moodle-2.8.12.tgz 36000130 SHA256 
05fa695ced738cc9638ac62144c3bbda30f919093a6ffc78fd04b418329b4101 SHA512 
f934d0b86c7c8a6da2a1b2b6e6201832b978f4e971afb37116df28a784420054436b61557a9c0cec9c3d38a581e8f42c91e2b49b9411268011120891efe8fdde
 WHIRLPOOL 
99e7fe059005dacc1fa41fe1b351b223ebdae5456feb848440d0fdf15ebc945a9492716f5c49cf58a50acf7e141414eb002744dd031e9eedc394d9b43b1a5ad4
-DIST moodle-2.9.6.tgz 36582260 SHA256 
b5b17e869cc7f122d7f624a6ec3cf9fcfaa7166b3020e3c819c2135ae7327a15 SHA512 
61021e7e57df18f26c95b7b3c38d5d25d2269110a5c623476a461f28bdfb2f7c6e2a61d558fa387e9a64627a9b71caf25bc357b95bd40335e415ad6a3804d9b5
 WHIRLPOOL 
a4e783bfcb430c0ec48f23ea951745bf8db34ac058fed788497c04392ef3b0ded29de1389c25afd1d0db7a8c9da9f70675d86f80a50d10bf66c16efb2cab8e21
-DIST moodle-3.0.4.tgz 38110816 SHA256 
27e3f58d2bc1e63163f5c7d27aaf5548c216a433e87be7bf429030aada43b469 SHA512 
ceb41ce986c0e378753815367a649ce0c7404ca671c9f13fe00350bf7504584aa4d40badac6d4c2a9eedfae1f2c1b0a6e82f46ca84be1f1b043a11eaac4b
 WHIRLPOOL 
158db9bd7231cafd9bd32e318700bd53c3c4011e409330aba0d3c36f2390f6b1c2cb7ffd797fa80f29b63a387228d8f27f5fd8b87cd77614f110c3f7e7828c6f
+DIST moodle-2.7.15.tgz 35007649 SHA256 
9c61c40996157be0498ad0d5004014b77a5fe34599510c76f7dc1ffc95c74400 SHA512 
deb92e394bf0f0a06246c182d5411727f0fc07d6cd1defd2f8773362990dd45351bdf31fdf0494a0db95b9c96c1120546891988252cf19671cf19177cf05
 WHIRLPOOL 
0feba4c7d49d9d2179674e0199c20547c841886e6b3f2b9a2917cd5829ab1a00c196c55e175e8e8300177592d6278d93af16094c90881dac1c6d0ac3cd392e59
+DIST moodle-2.9.7.tgz 36586018 SHA256 
87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db SHA512 
1be555fc1e8cd948180dc3cf055c998290821e4445d534461228ee6a51758992f0c0572b0068452f1dbdcde6fba405370f6f44818dd7759e75850abb73a83cb3
 WHIRLPOOL 
dca9a276bd863aeb3a48636ed0bf575cd47ddc11396136b3bfb4c779845414026311f4caba71ba6792b433b1b92cf7c880931c63da9e1c9d602f82f2204586eb
+DIST moodle-3.0.5.tgz 38156153 SHA256 
e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 SHA512 
c78f68b234889d811a7c69caab5c503fac30142f806f9863d45710d806b777440d5d99193cb105f56955ef3a78638af63b96e4bd764aee6e9cc5b43e1169cfc6
 WHIRLPOOL 
e3f5c1dbf036a79afdb98723b6383490234c356088c358968be80075341c44e12e4f282a9d0887674b68bbf5c42cc83e6ec0d68e9b97b626dad9ec41c59531f3
 DIST moodle-3.1.tgz 37440572 SHA256 
5debb77fe2a82f28b25505f1244cc9e641b1c0b20dfefe831917c605da74151c SHA512 
a8ab1b275bcb75e233b4cb77c6afb7bfb268e9dd11add7120c420e9f6179146640ab3bad8f4b050eaa254a2adb01500b80e2fc47517f6c1a1e98c13ad8389354
 WHIRLPOOL 
635a9d7c545880e98904ec30348011aee4bcd47cecd463c576ca4c4f3ac5b2848601b359d5282885151c89e0bac48881fbf132e2879f92218edbd1991623

diff --git a/www-apps/moodle/moodle-2.7.14.ebuild 
b/www-apps/moodle/moodle-2.7.15.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.14.ebuild
rename to www-apps/moodle/moodle-2.7.15.ebuild

diff --git a/www-apps/moodle/moodle-2.8.12.ebuild 
b/www-apps/moodle/moodle-2.9.7.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.8.12.ebuild
rename to www-apps/moodle/moodle-2.9.7.ebuild

diff --git a/www-apps/moodle/moodle-3.0.4.ebuild 
b/www-apps/moodle/moodle-3.0.4.ebuild
deleted file mode 100644
index ccdb5ad..000
--- a/www-apps/moodle/moodle-3.0.4.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="http://moodle.org;

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-06-23 Thread Anthony G. Basile
commit: 33c793a95997728d5d117a9ad07a4aef57aa48dc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 23 06:44:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 23 06:44:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c793a9

www-apps/moodle: version bump to 3.1

Package-Manager: portage-2.2.28

 www-apps/moodle/Manifest  |   1 +
 www-apps/moodle/moodle-3.1.ebuild | 128 ++
 2 files changed, 129 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index a0a0f9b..d57e9d7 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -2,3 +2,4 @@ DIST moodle-2.7.14.tgz 35005794 SHA256 
c89250c9a2995f1f2a70ded150ca4dcb08413f8a6
 DIST moodle-2.8.12.tgz 36000130 SHA256 
05fa695ced738cc9638ac62144c3bbda30f919093a6ffc78fd04b418329b4101 SHA512 
f934d0b86c7c8a6da2a1b2b6e6201832b978f4e971afb37116df28a784420054436b61557a9c0cec9c3d38a581e8f42c91e2b49b9411268011120891efe8fdde
 WHIRLPOOL 
99e7fe059005dacc1fa41fe1b351b223ebdae5456feb848440d0fdf15ebc945a9492716f5c49cf58a50acf7e141414eb002744dd031e9eedc394d9b43b1a5ad4
 DIST moodle-2.9.6.tgz 36582260 SHA256 
b5b17e869cc7f122d7f624a6ec3cf9fcfaa7166b3020e3c819c2135ae7327a15 SHA512 
61021e7e57df18f26c95b7b3c38d5d25d2269110a5c623476a461f28bdfb2f7c6e2a61d558fa387e9a64627a9b71caf25bc357b95bd40335e415ad6a3804d9b5
 WHIRLPOOL 
a4e783bfcb430c0ec48f23ea951745bf8db34ac058fed788497c04392ef3b0ded29de1389c25afd1d0db7a8c9da9f70675d86f80a50d10bf66c16efb2cab8e21
 DIST moodle-3.0.4.tgz 38110816 SHA256 
27e3f58d2bc1e63163f5c7d27aaf5548c216a433e87be7bf429030aada43b469 SHA512 
ceb41ce986c0e378753815367a649ce0c7404ca671c9f13fe00350bf7504584aa4d40badac6d4c2a9eedfae1f2c1b0a6e82f46ca84be1f1b043a11eaac4b
 WHIRLPOOL 
158db9bd7231cafd9bd32e318700bd53c3c4011e409330aba0d3c36f2390f6b1c2cb7ffd797fa80f29b63a387228d8f27f5fd8b87cd77614f110c3f7e7828c6f
+DIST moodle-3.1.tgz 37440572 SHA256 
5debb77fe2a82f28b25505f1244cc9e641b1c0b20dfefe831917c605da74151c SHA512 
a8ab1b275bcb75e233b4cb77c6afb7bfb268e9dd11add7120c420e9f6179146640ab3bad8f4b050eaa254a2adb01500b80e2fc47517f6c1a1e98c13ad8389354
 WHIRLPOOL 
635a9d7c545880e98904ec30348011aee4bcd47cecd463c576ca4c4f3ac5b2848601b359d5282885151c89e0bac48881fbf132e2879f92218edbd1991623

diff --git a/www-apps/moodle/moodle-3.1.ebuild 
b/www-apps/moodle/moodle-3.1.ebuild
new file mode 100644
index 000..ccdb5ad
--- /dev/null
+++ b/www-apps/moodle/moodle-3.1.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org;
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+  

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-05-09 Thread Anthony G. Basile
commit: 2a64517e550ec498e533d1cea3541262af05a06d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon May  9 07:29:45 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon May  9 07:30:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a64517e

www-apps/moodle: version bumps

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest   | 8 
 www-apps/moodle/{moodle-2.7.13.ebuild => moodle-2.7.14.ebuild} | 0
 www-apps/moodle/{moodle-2.8.11.ebuild => moodle-2.8.12.ebuild} | 0
 www-apps/moodle/{moodle-2.9.5.ebuild => moodle-2.9.6.ebuild}   | 0
 www-apps/moodle/{moodle-3.0.3.ebuild => moodle-3.0.4.ebuild}   | 0
 5 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 3d0023b..a0a0f9b 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-2.7.13.tgz 35003234 SHA256 
397c04f5365d94490498c71cc7289203050a693b0aeed5bc3db8c45f016faafb SHA512 
b9b52d28d9c87aef0d87f2f97b421c68ff8b2b00ce18dccf5eefcda8874eb29e93e6635835bc730d923a56c31bef233043c7588e401c96ad70f40891a41bdb0c
 WHIRLPOOL 
c4a937c5ebb04bc23a621bfe584c887980d9630ab51d7caa3315a27a07842d66c3990d78c25d0e88d2bbf5b69e156e2c5a25aaeade5fa9ded5d964f7dcd8f9e6
-DIST moodle-2.8.11.tgz 35999389 SHA256 
ed9e2b7d16ad3571b796d47cc22024bb794021b3da5d396d1216a217c59225c7 SHA512 
f431d30d317807477c1ed7aa3f5b9916b6449634036bd1cc1a55bf391526253f6be04b1b9e8342b5d5acc3a38850ded99873b71eec5474b98a87d70b52533714
 WHIRLPOOL 
813882ab67ef47b773b94c311134223925dfda284197807c7746abf20adfb099c0a82675294a5ebe47d94cda4a971266ab323685f41ed841769e2ca6ee0d8a08
-DIST moodle-2.9.5.tgz 36560684 SHA256 
af84e1a893737330ab75fa8985e14b78214f0f98e02091017a5494ef2c7683fc SHA512 
621206668aaf5cb103e494c110366beada549049ee87084eb770f0538b80d90e622959968b6dab0dcde9c320d34c083b4d7ef2379765d252919f651f33591777
 WHIRLPOOL 
22cb87c13d6f746bcf4d0409a42bed4823511c68eac17b309cfb60923d3cda9496d4fa0bdad312d33524211c9e6dc67e737fd4baf89864b3dbecab0dc52581b0
-DIST moodle-3.0.3.tgz 38094358 SHA256 
b2a3636d51852327f5234b9a1c5fdef9cafdf4c7b4286b3debd4dad43c277045 SHA512 
5c2b632a4b1aa2b654f380ff2caef2f371d5a59c3d62f7d28a1ef2b14eef9ca337d2bc998f1400c1543f3a36b71acb579054d43c2d0feca1b4e03237f4a153b0
 WHIRLPOOL 
5ae6763455e898e4d6268402f867d67cd61bd561a76e55dc9b914ba3700825dec36d8e82d6f209d7dc8fb8bfa14cf08329f6bc00165e44cbc644f9cfe032a88e
+DIST moodle-2.7.14.tgz 35005794 SHA256 
c89250c9a2995f1f2a70ded150ca4dcb08413f8a69bc954b172a8aa89909fe63 SHA512 
8be87397dabf757bb9778d46415b8f364559faf2f4d128bb7eb8206c8bfa203fab6d13c9cf9a31bc62579be3e47b53dd80456844906176916c7bda2e9ea02627
 WHIRLPOOL 
c88fc53a8052b2c918afc7474be482cb2b19b518d412c11e29e7048cb33215aeb78cca5a4070f74047dedb9c9bb8154c4494ce9e371e0133df5384af9fcba75e
+DIST moodle-2.8.12.tgz 36000130 SHA256 
05fa695ced738cc9638ac62144c3bbda30f919093a6ffc78fd04b418329b4101 SHA512 
f934d0b86c7c8a6da2a1b2b6e6201832b978f4e971afb37116df28a784420054436b61557a9c0cec9c3d38a581e8f42c91e2b49b9411268011120891efe8fdde
 WHIRLPOOL 
99e7fe059005dacc1fa41fe1b351b223ebdae5456feb848440d0fdf15ebc945a9492716f5c49cf58a50acf7e141414eb002744dd031e9eedc394d9b43b1a5ad4
+DIST moodle-2.9.6.tgz 36582260 SHA256 
b5b17e869cc7f122d7f624a6ec3cf9fcfaa7166b3020e3c819c2135ae7327a15 SHA512 
61021e7e57df18f26c95b7b3c38d5d25d2269110a5c623476a461f28bdfb2f7c6e2a61d558fa387e9a64627a9b71caf25bc357b95bd40335e415ad6a3804d9b5
 WHIRLPOOL 
a4e783bfcb430c0ec48f23ea951745bf8db34ac058fed788497c04392ef3b0ded29de1389c25afd1d0db7a8c9da9f70675d86f80a50d10bf66c16efb2cab8e21
+DIST moodle-3.0.4.tgz 38110816 SHA256 
27e3f58d2bc1e63163f5c7d27aaf5548c216a433e87be7bf429030aada43b469 SHA512 
ceb41ce986c0e378753815367a649ce0c7404ca671c9f13fe00350bf7504584aa4d40badac6d4c2a9eedfae1f2c1b0a6e82f46ca84be1f1b043a11eaac4b
 WHIRLPOOL 
158db9bd7231cafd9bd32e318700bd53c3c4011e409330aba0d3c36f2390f6b1c2cb7ffd797fa80f29b63a387228d8f27f5fd8b87cd77614f110c3f7e7828c6f

diff --git a/www-apps/moodle/moodle-2.7.13.ebuild 
b/www-apps/moodle/moodle-2.7.14.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.13.ebuild
rename to www-apps/moodle/moodle-2.7.14.ebuild

diff --git a/www-apps/moodle/moodle-2.8.11.ebuild 
b/www-apps/moodle/moodle-2.8.12.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.8.11.ebuild
rename to www-apps/moodle/moodle-2.8.12.ebuild

diff --git a/www-apps/moodle/moodle-2.9.5.ebuild 
b/www-apps/moodle/moodle-2.9.6.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.9.5.ebuild
rename to www-apps/moodle/moodle-2.9.6.ebuild

diff --git a/www-apps/moodle/moodle-3.0.3.ebuild 
b/www-apps/moodle/moodle-3.0.4.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.3.ebuild
rename to www-apps/moodle/moodle-3.0.4.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-03-12 Thread Anthony G. Basile
commit: afeeb8a207cbc47c43241643eaba60720dfaa3f5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar 12 11:40:29 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar 12 11:46:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afeeb8a2

www-apps/moodle: version bump to 2.8.11, drop older 2.8

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest   | 2 +-
 www-apps/moodle/{moodle-2.8.10.ebuild => moodle-2.8.11.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index c34e298..0e68615 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.13.tgz 35003234 SHA256 
397c04f5365d94490498c71cc7289203050a693b0aeed5bc3db8c45f016faafb SHA512 
b9b52d28d9c87aef0d87f2f97b421c68ff8b2b00ce18dccf5eefcda8874eb29e93e6635835bc730d923a56c31bef233043c7588e401c96ad70f40891a41bdb0c
 WHIRLPOOL 
c4a937c5ebb04bc23a621bfe584c887980d9630ab51d7caa3315a27a07842d66c3990d78c25d0e88d2bbf5b69e156e2c5a25aaeade5fa9ded5d964f7dcd8f9e6
-DIST moodle-2.8.10.tgz 35989148 SHA256 
e213cf8e3290d00470a8e5174b854fa8b4992da553416d74629cdd1810287930 SHA512 
8c72a7d31b4fc1cb9e3c9bf8f02e4dc0bf9d51b6ada2021acb98ea3949282d6385fc027f7922b0afb8e006450f39faa80f2b1a3b389cc74780b4045e67c344d1
 WHIRLPOOL 
1b88727b42f19243a9b5a998a4368d35bc33959c6c447342160c1e772629782e2fc46e59dbec4cdc29eec2f51f777ab81e2b5ba33cabe4a3cab99d412f8b9403
+DIST moodle-2.8.11.tgz 35999389 SHA256 
ed9e2b7d16ad3571b796d47cc22024bb794021b3da5d396d1216a217c59225c7 SHA512 
f431d30d317807477c1ed7aa3f5b9916b6449634036bd1cc1a55bf391526253f6be04b1b9e8342b5d5acc3a38850ded99873b71eec5474b98a87d70b52533714
 WHIRLPOOL 
813882ab67ef47b773b94c311134223925dfda284197807c7746abf20adfb099c0a82675294a5ebe47d94cda4a971266ab323685f41ed841769e2ca6ee0d8a08
 DIST moodle-2.9.4.tgz 36513561 SHA256 
f4e087e34fc34207a74d85758e8d064a667d9b2ae17ee8c055e94e9172ae67f9 SHA512 
f63bdc8a9984a53911383a784d6d7b61c94c4686a1db3e62d734245e981ba4d2b52bf44a74893a39dd0bc8708deb2f0f829d9488a8ccd0a89ed75c3c74913611
 WHIRLPOOL 
3ece0728df140e206ee13137b3befc78467fc9446807b79112fade0129c8d57a4504ec83389074c85ccac7d6d6fa6c87833531157d9c329cc8032400685c4da2
 DIST moodle-3.0.2.tgz 38045086 SHA256 
6f6eb95f0e354dc519067538ce60c54151b998efed6f981084ec929266d1b149 SHA512 
1c37bcb3f7a6b861c85a22c64a09bcbb2d0dddf8e8dabc63c616034bfd98dc4780222c7d31ab65d19a16f8ab471ba9d25d4bce3b3b04875e12fdde8404bc1aee
 WHIRLPOOL 
142cc7404ecaec943f5a5cae0e180d2867bbdf248194bc867ed7398b763f38c9898ec60313573276b5407b3c401a243f97e119ed5d8e65ac60ff7ce3bf8e29a2

diff --git a/www-apps/moodle/moodle-2.8.10.ebuild 
b/www-apps/moodle/moodle-2.8.11.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.8.10.ebuild
rename to www-apps/moodle/moodle-2.8.11.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-03-12 Thread Anthony G. Basile
commit: 8f09790aa0f781213e6c7dede804513663747b6a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar 12 11:38:01 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar 12 11:46:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f09790a

www-apps/moodle: version bump to 2.7.13, remove older 2.7

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest   | 2 +-
 www-apps/moodle/{moodle-2.7.12.ebuild => moodle-2.7.13.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index df2a4f4..c34e298 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
-DIST moodle-2.7.12.tgz 35001038 SHA256 
198b67819c96811f5d335c8991678bc4b9eccb51897e808c9c328e4ecb867024 SHA512 
f2da0a807b0d8d5614bb80c9aa355bdfecbdb2e36bb4658eaed4ab75c6f98d19bee74e4431731d7d6e61311dd17db851c7787d02f9c3ccf06805150762375e84
 WHIRLPOOL 
7a2798be6bdb52d36c576442e5f23979bc97bce3f82c093ddfab3e35fa18ca82194d460ed345fc9f8e2928cb77b6a10ae5f804ec2dd392eec2b94ac8d180e02d
+DIST moodle-2.7.13.tgz 35003234 SHA256 
397c04f5365d94490498c71cc7289203050a693b0aeed5bc3db8c45f016faafb SHA512 
b9b52d28d9c87aef0d87f2f97b421c68ff8b2b00ce18dccf5eefcda8874eb29e93e6635835bc730d923a56c31bef233043c7588e401c96ad70f40891a41bdb0c
 WHIRLPOOL 
c4a937c5ebb04bc23a621bfe584c887980d9630ab51d7caa3315a27a07842d66c3990d78c25d0e88d2bbf5b69e156e2c5a25aaeade5fa9ded5d964f7dcd8f9e6
 DIST moodle-2.8.10.tgz 35989148 SHA256 
e213cf8e3290d00470a8e5174b854fa8b4992da553416d74629cdd1810287930 SHA512 
8c72a7d31b4fc1cb9e3c9bf8f02e4dc0bf9d51b6ada2021acb98ea3949282d6385fc027f7922b0afb8e006450f39faa80f2b1a3b389cc74780b4045e67c344d1
 WHIRLPOOL 
1b88727b42f19243a9b5a998a4368d35bc33959c6c447342160c1e772629782e2fc46e59dbec4cdc29eec2f51f777ab81e2b5ba33cabe4a3cab99d412f8b9403
 DIST moodle-2.9.4.tgz 36513561 SHA256 
f4e087e34fc34207a74d85758e8d064a667d9b2ae17ee8c055e94e9172ae67f9 SHA512 
f63bdc8a9984a53911383a784d6d7b61c94c4686a1db3e62d734245e981ba4d2b52bf44a74893a39dd0bc8708deb2f0f829d9488a8ccd0a89ed75c3c74913611
 WHIRLPOOL 
3ece0728df140e206ee13137b3befc78467fc9446807b79112fade0129c8d57a4504ec83389074c85ccac7d6d6fa6c87833531157d9c329cc8032400685c4da2
 DIST moodle-3.0.2.tgz 38045086 SHA256 
6f6eb95f0e354dc519067538ce60c54151b998efed6f981084ec929266d1b149 SHA512 
1c37bcb3f7a6b861c85a22c64a09bcbb2d0dddf8e8dabc63c616034bfd98dc4780222c7d31ab65d19a16f8ab471ba9d25d4bce3b3b04875e12fdde8404bc1aee
 WHIRLPOOL 
142cc7404ecaec943f5a5cae0e180d2867bbdf248194bc867ed7398b763f38c9898ec60313573276b5407b3c401a243f97e119ed5d8e65ac60ff7ce3bf8e29a2

diff --git a/www-apps/moodle/moodle-2.7.12.ebuild 
b/www-apps/moodle/moodle-2.7.13.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.12.ebuild
rename to www-apps/moodle/moodle-2.7.13.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-03-12 Thread Anthony G. Basile
commit: 6d9ae4698f3cbfcd4a22c23a436a069c24c593bf
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar 12 11:45:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar 12 11:46:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9ae469

www-apps/moodle: version bump to 3.0.3, remove older 3.0

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-3.0.2.ebuild => moodle-3.0.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index e463f13..3d0023b 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.13.tgz 35003234 SHA256 
397c04f5365d94490498c71cc7289203050a693b0aeed5bc3db8c45f016faafb SHA512 
b9b52d28d9c87aef0d87f2f97b421c68ff8b2b00ce18dccf5eefcda8874eb29e93e6635835bc730d923a56c31bef233043c7588e401c96ad70f40891a41bdb0c
 WHIRLPOOL 
c4a937c5ebb04bc23a621bfe584c887980d9630ab51d7caa3315a27a07842d66c3990d78c25d0e88d2bbf5b69e156e2c5a25aaeade5fa9ded5d964f7dcd8f9e6
 DIST moodle-2.8.11.tgz 35999389 SHA256 
ed9e2b7d16ad3571b796d47cc22024bb794021b3da5d396d1216a217c59225c7 SHA512 
f431d30d317807477c1ed7aa3f5b9916b6449634036bd1cc1a55bf391526253f6be04b1b9e8342b5d5acc3a38850ded99873b71eec5474b98a87d70b52533714
 WHIRLPOOL 
813882ab67ef47b773b94c311134223925dfda284197807c7746abf20adfb099c0a82675294a5ebe47d94cda4a971266ab323685f41ed841769e2ca6ee0d8a08
 DIST moodle-2.9.5.tgz 36560684 SHA256 
af84e1a893737330ab75fa8985e14b78214f0f98e02091017a5494ef2c7683fc SHA512 
621206668aaf5cb103e494c110366beada549049ee87084eb770f0538b80d90e622959968b6dab0dcde9c320d34c083b4d7ef2379765d252919f651f33591777
 WHIRLPOOL 
22cb87c13d6f746bcf4d0409a42bed4823511c68eac17b309cfb60923d3cda9496d4fa0bdad312d33524211c9e6dc67e737fd4baf89864b3dbecab0dc52581b0
-DIST moodle-3.0.2.tgz 38045086 SHA256 
6f6eb95f0e354dc519067538ce60c54151b998efed6f981084ec929266d1b149 SHA512 
1c37bcb3f7a6b861c85a22c64a09bcbb2d0dddf8e8dabc63c616034bfd98dc4780222c7d31ab65d19a16f8ab471ba9d25d4bce3b3b04875e12fdde8404bc1aee
 WHIRLPOOL 
142cc7404ecaec943f5a5cae0e180d2867bbdf248194bc867ed7398b763f38c9898ec60313573276b5407b3c401a243f97e119ed5d8e65ac60ff7ce3bf8e29a2
+DIST moodle-3.0.3.tgz 38094358 SHA256 
b2a3636d51852327f5234b9a1c5fdef9cafdf4c7b4286b3debd4dad43c277045 SHA512 
5c2b632a4b1aa2b654f380ff2caef2f371d5a59c3d62f7d28a1ef2b14eef9ca337d2bc998f1400c1543f3a36b71acb579054d43c2d0feca1b4e03237f4a153b0
 WHIRLPOOL 
5ae6763455e898e4d6268402f867d67cd61bd561a76e55dc9b914ba3700825dec36d8e82d6f209d7dc8fb8bfa14cf08329f6bc00165e44cbc644f9cfe032a88e

diff --git a/www-apps/moodle/moodle-3.0.2.ebuild 
b/www-apps/moodle/moodle-3.0.3.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.2.ebuild
rename to www-apps/moodle/moodle-3.0.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-03-12 Thread Anthony G. Basile
commit: bac51060d118818e05c1b9135a337d83d1f12b25
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Mar 12 11:42:25 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Mar 12 11:46:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac51060

www-apps/moodle: version bump to 2.9.5, drop older 2.9

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-2.9.4.ebuild => moodle-2.9.5.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 0e68615..e463f13 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.13.tgz 35003234 SHA256 
397c04f5365d94490498c71cc7289203050a693b0aeed5bc3db8c45f016faafb SHA512 
b9b52d28d9c87aef0d87f2f97b421c68ff8b2b00ce18dccf5eefcda8874eb29e93e6635835bc730d923a56c31bef233043c7588e401c96ad70f40891a41bdb0c
 WHIRLPOOL 
c4a937c5ebb04bc23a621bfe584c887980d9630ab51d7caa3315a27a07842d66c3990d78c25d0e88d2bbf5b69e156e2c5a25aaeade5fa9ded5d964f7dcd8f9e6
 DIST moodle-2.8.11.tgz 35999389 SHA256 
ed9e2b7d16ad3571b796d47cc22024bb794021b3da5d396d1216a217c59225c7 SHA512 
f431d30d317807477c1ed7aa3f5b9916b6449634036bd1cc1a55bf391526253f6be04b1b9e8342b5d5acc3a38850ded99873b71eec5474b98a87d70b52533714
 WHIRLPOOL 
813882ab67ef47b773b94c311134223925dfda284197807c7746abf20adfb099c0a82675294a5ebe47d94cda4a971266ab323685f41ed841769e2ca6ee0d8a08
-DIST moodle-2.9.4.tgz 36513561 SHA256 
f4e087e34fc34207a74d85758e8d064a667d9b2ae17ee8c055e94e9172ae67f9 SHA512 
f63bdc8a9984a53911383a784d6d7b61c94c4686a1db3e62d734245e981ba4d2b52bf44a74893a39dd0bc8708deb2f0f829d9488a8ccd0a89ed75c3c74913611
 WHIRLPOOL 
3ece0728df140e206ee13137b3befc78467fc9446807b79112fade0129c8d57a4504ec83389074c85ccac7d6d6fa6c87833531157d9c329cc8032400685c4da2
+DIST moodle-2.9.5.tgz 36560684 SHA256 
af84e1a893737330ab75fa8985e14b78214f0f98e02091017a5494ef2c7683fc SHA512 
621206668aaf5cb103e494c110366beada549049ee87084eb770f0538b80d90e622959968b6dab0dcde9c320d34c083b4d7ef2379765d252919f651f33591777
 WHIRLPOOL 
22cb87c13d6f746bcf4d0409a42bed4823511c68eac17b309cfb60923d3cda9496d4fa0bdad312d33524211c9e6dc67e737fd4baf89864b3dbecab0dc52581b0
 DIST moodle-3.0.2.tgz 38045086 SHA256 
6f6eb95f0e354dc519067538ce60c54151b998efed6f981084ec929266d1b149 SHA512 
1c37bcb3f7a6b861c85a22c64a09bcbb2d0dddf8e8dabc63c616034bfd98dc4780222c7d31ab65d19a16f8ab471ba9d25d4bce3b3b04875e12fdde8404bc1aee
 WHIRLPOOL 
142cc7404ecaec943f5a5cae0e180d2867bbdf248194bc867ed7398b763f38c9898ec60313573276b5407b3c401a243f97e119ed5d8e65ac60ff7ce3bf8e29a2

diff --git a/www-apps/moodle/moodle-2.9.4.ebuild 
b/www-apps/moodle/moodle-2.9.5.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.9.4.ebuild
rename to www-apps/moodle/moodle-2.9.5.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-01-12 Thread Anthony G. Basile
commit: 8a02ac616e4162a47ba02bce342a252e67acac02
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Tue Jan 12 09:54:48 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Tue Jan 12 09:56:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a02ac61

www-apps/moodle: version bump to 3.0.2

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest | 2 +-
 www-apps/moodle/{moodle-3.0.1.ebuild => moodle-3.0.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 9e52c61..df2a4f4 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,4 @@
 DIST moodle-2.7.12.tgz 35001038 SHA256 
198b67819c96811f5d335c8991678bc4b9eccb51897e808c9c328e4ecb867024 SHA512 
f2da0a807b0d8d5614bb80c9aa355bdfecbdb2e36bb4658eaed4ab75c6f98d19bee74e4431731d7d6e61311dd17db851c7787d02f9c3ccf06805150762375e84
 WHIRLPOOL 
7a2798be6bdb52d36c576442e5f23979bc97bce3f82c093ddfab3e35fa18ca82194d460ed345fc9f8e2928cb77b6a10ae5f804ec2dd392eec2b94ac8d180e02d
 DIST moodle-2.8.10.tgz 35989148 SHA256 
e213cf8e3290d00470a8e5174b854fa8b4992da553416d74629cdd1810287930 SHA512 
8c72a7d31b4fc1cb9e3c9bf8f02e4dc0bf9d51b6ada2021acb98ea3949282d6385fc027f7922b0afb8e006450f39faa80f2b1a3b389cc74780b4045e67c344d1
 WHIRLPOOL 
1b88727b42f19243a9b5a998a4368d35bc33959c6c447342160c1e772629782e2fc46e59dbec4cdc29eec2f51f777ab81e2b5ba33cabe4a3cab99d412f8b9403
 DIST moodle-2.9.4.tgz 36513561 SHA256 
f4e087e34fc34207a74d85758e8d064a667d9b2ae17ee8c055e94e9172ae67f9 SHA512 
f63bdc8a9984a53911383a784d6d7b61c94c4686a1db3e62d734245e981ba4d2b52bf44a74893a39dd0bc8708deb2f0f829d9488a8ccd0a89ed75c3c74913611
 WHIRLPOOL 
3ece0728df140e206ee13137b3befc78467fc9446807b79112fade0129c8d57a4504ec83389074c85ccac7d6d6fa6c87833531157d9c329cc8032400685c4da2
-DIST moodle-3.0.1.tgz 38019687 SHA256 
3570ea84acd02d33b31cc013b700cbc14a69426302104fdb6826a240fe86b704 SHA512 
09bacd3012eb2d8e97a183c184dab10dd8c98f11938aea54e30646dc8de64892c73f5694e32ae284ce8b9fd60d28671c6c8a6efb2a2f1a8f915f058ee1e64afd
 WHIRLPOOL 
bc0ee738319fa0f369f3aae97ba5f20d497a70487f52ef125ffc55375ad3c25a790a5baa0017d426b023632fd33a196dea79de875d1bd613f76db0a071c3de5a
+DIST moodle-3.0.2.tgz 38045086 SHA256 
6f6eb95f0e354dc519067538ce60c54151b998efed6f981084ec929266d1b149 SHA512 
1c37bcb3f7a6b861c85a22c64a09bcbb2d0dddf8e8dabc63c616034bfd98dc4780222c7d31ab65d19a16f8ab471ba9d25d4bce3b3b04875e12fdde8404bc1aee
 WHIRLPOOL 
142cc7404ecaec943f5a5cae0e180d2867bbdf248194bc867ed7398b763f38c9898ec60313573276b5407b3c401a243f97e119ed5d8e65ac60ff7ce3bf8e29a2

diff --git a/www-apps/moodle/moodle-3.0.1.ebuild 
b/www-apps/moodle/moodle-3.0.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-3.0.1.ebuild
rename to www-apps/moodle/moodle-3.0.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2016-01-09 Thread Anthony G. Basile
commit: 5bd290ae532a7d225cd92a408bdbdc2191530e59
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Jan  9 11:52:52 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Jan  9 11:53:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bd290ae

www-apps/moodle: version bumps 2.7.12, 2.8.10, 2.9.4, 3.0.1

Package-Manager: portage-2.2.26

 www-apps/moodle/Manifest   | 7 ---
 www-apps/moodle/{moodle-2.7.11.ebuild => moodle-2.7.12.ebuild} | 2 +-
 www-apps/moodle/{moodle-2.8.9.ebuild => moodle-2.8.10.ebuild}  | 2 +-
 www-apps/moodle/{moodle-2.9.3.ebuild => moodle-2.9.4.ebuild}   | 2 +-
 www-apps/moodle/{moodle-2.8.9.ebuild => moodle-3.0.1.ebuild}   | 2 +-
 5 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 9b3ac9a..9e52c61 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
-DIST moodle-2.7.11.tgz 34998741 SHA256 
8e7daf0d492dc78cbc3a50651b67b22c836329d696c5453bf0839c3fdd8b5838 SHA512 
1fb085bc7e64be22479df568e73496d01042e1197b8d2d5f42a40341a0ec48b5127c1f18b96cb65af09dd8d7314cec35ad25372041399e2e436cb17ec3838101
 WHIRLPOOL 
27d64a1d65dc804bc8b5080782fbbd397aa4891fd3013964744bc64a1c9cd024ae5712f258554a42fa6f975a0310a514c6ea3b01f3f290d5e3fcd12ff3833130
-DIST moodle-2.8.9.tgz 35992485 SHA256 
09fca589cdf4b63052e5319931e8c42ca2e0e53d5eeb12cab852ef84bb50f034 SHA512 
6357d3902657056f2da685fb0ac230511c04f2ed54ceb380e637c06ee37e0c6765221aacebdc8c8901c6b646a0043d5c23ed91fd87eda2ebce0cc6128102e515
 WHIRLPOOL 
f2631ba8f4aa01ec052f90ec8f9df37e93287493e0c11194a76422115ceb0a11631afb8d46402906c423a8d5667b0cbf23ee63a5fe112f232075d3788604fb52
-DIST moodle-2.9.3.tgz 36476693 SHA256 
48f59bd77df53fb5f608da492f09c21eb7c8994c3ddce39fa7a9fd8e3e0e8f46 SHA512 
fe98155f8ad3ddeab571aa6ecf71bb9f44e87801a3de8cca64b5341ed1a13f21d843804187016951dd105f1eec6ea25a95d53a405c3def5a5ac6ac738d14e0d7
 WHIRLPOOL 
c64b2cb7033db84c4e0f7a9479b6bf74b2c615a8382168cb93f75825dc6c3b3760a8abfc0d99261a5c1e528b64a42113b8c9c19c20a68684eb50bd0072514c30
+DIST moodle-2.7.12.tgz 35001038 SHA256 
198b67819c96811f5d335c8991678bc4b9eccb51897e808c9c328e4ecb867024 SHA512 
f2da0a807b0d8d5614bb80c9aa355bdfecbdb2e36bb4658eaed4ab75c6f98d19bee74e4431731d7d6e61311dd17db851c7787d02f9c3ccf06805150762375e84
 WHIRLPOOL 
7a2798be6bdb52d36c576442e5f23979bc97bce3f82c093ddfab3e35fa18ca82194d460ed345fc9f8e2928cb77b6a10ae5f804ec2dd392eec2b94ac8d180e02d
+DIST moodle-2.8.10.tgz 35989148 SHA256 
e213cf8e3290d00470a8e5174b854fa8b4992da553416d74629cdd1810287930 SHA512 
8c72a7d31b4fc1cb9e3c9bf8f02e4dc0bf9d51b6ada2021acb98ea3949282d6385fc027f7922b0afb8e006450f39faa80f2b1a3b389cc74780b4045e67c344d1
 WHIRLPOOL 
1b88727b42f19243a9b5a998a4368d35bc33959c6c447342160c1e772629782e2fc46e59dbec4cdc29eec2f51f777ab81e2b5ba33cabe4a3cab99d412f8b9403
+DIST moodle-2.9.4.tgz 36513561 SHA256 
f4e087e34fc34207a74d85758e8d064a667d9b2ae17ee8c055e94e9172ae67f9 SHA512 
f63bdc8a9984a53911383a784d6d7b61c94c4686a1db3e62d734245e981ba4d2b52bf44a74893a39dd0bc8708deb2f0f829d9488a8ccd0a89ed75c3c74913611
 WHIRLPOOL 
3ece0728df140e206ee13137b3befc78467fc9446807b79112fade0129c8d57a4504ec83389074c85ccac7d6d6fa6c87833531157d9c329cc8032400685c4da2
+DIST moodle-3.0.1.tgz 38019687 SHA256 
3570ea84acd02d33b31cc013b700cbc14a69426302104fdb6826a240fe86b704 SHA512 
09bacd3012eb2d8e97a183c184dab10dd8c98f11938aea54e30646dc8de64892c73f5694e32ae284ce8b9fd60d28671c6c8a6efb2a2f1a8f915f058ee1e64afd
 WHIRLPOOL 
bc0ee738319fa0f369f3aae97ba5f20d497a70487f52ef125ffc55375ad3c25a790a5baa0017d426b023632fd33a196dea79de875d1bd613f76db0a071c3de5a

diff --git a/www-apps/moodle/moodle-2.7.11.ebuild 
b/www-apps/moodle/moodle-2.7.12.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-2.7.11.ebuild
rename to www-apps/moodle/moodle-2.7.12.ebuild
index 969d4d5..21a783e 100644
--- a/www-apps/moodle/moodle-2.7.11.ebuild
+++ b/www-apps/moodle/moodle-2.7.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/www-apps/moodle/moodle-2.8.9.ebuild 
b/www-apps/moodle/moodle-2.8.10.ebuild
similarity index 98%
copy from www-apps/moodle/moodle-2.8.9.ebuild
copy to www-apps/moodle/moodle-2.8.10.ebuild
index 2ca2710..ccdb5ad 100644
--- a/www-apps/moodle/moodle-2.8.9.ebuild
+++ b/www-apps/moodle/moodle-2.8.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/www-apps/moodle/moodle-2.9.3.ebuild 
b/www-apps/moodle/moodle-2.9.4.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-2.9.3.ebuild
rename to www-apps/moodle/moodle-2.9.4.ebuild
index 2ca2710..ccdb5ad 100644
--- a/www-apps/moodle/moodle-2.9.3.ebuild
+++ b/www-apps/moodle/moodle-2.9.4.ebuild
@@ -1,4 +1,4 @@
-# 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2015-11-07 Thread Anthony G. Basile
commit: e742812555901a795681f5af22ba9752c63ce15a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov  8 00:18:25 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov  8 00:21:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7428125

www-apps/moodle: version bump to 2.9.3

Package-Manager: portage-2.2.20.1

 www-apps/moodle/Manifest|   1 +
 www-apps/moodle/moodle-2.9.3.ebuild | 128 
 2 files changed, 129 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 02dbc8c..cd9761c 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -3,3 +3,4 @@ DIST moodle-2.7.11.tgz 34998741 SHA256 
8e7daf0d492dc78cbc3a50651b67b22c836329d69
 DIST moodle-2.8.8.tgz 35960643 SHA256 
e5f9289edc847e84159a99767bf6621ddd930ef0aa1fd43d41d484e06f58d6f5 SHA512 
bce2c99ad9f0bd4eea1a5d6896a4dc6e3deca08f34ef4e52a2905ca181191a606e6e92602cbdf0635e8d736e658633967e867f9816bf4a74a33af9b7eadf1010
 WHIRLPOOL 
3c4c028707ee059881eadf0ff18e58323da26102461a267e2219619b9ceeda96fad78a1f5e0102ebbbfa933975384682a5732040969fce410040502ed86323da
 DIST moodle-2.8.9.tgz 35992485 SHA256 
09fca589cdf4b63052e5319931e8c42ca2e0e53d5eeb12cab852ef84bb50f034 SHA512 
6357d3902657056f2da685fb0ac230511c04f2ed54ceb380e637c06ee37e0c6765221aacebdc8c8901c6b646a0043d5c23ed91fd87eda2ebce0cc6128102e515
 WHIRLPOOL 
f2631ba8f4aa01ec052f90ec8f9df37e93287493e0c11194a76422115ceb0a11631afb8d46402906c423a8d5667b0cbf23ee63a5fe112f232075d3788604fb52
 DIST moodle-2.9.2.tgz 36435068 SHA256 
14599e518b95269aa770d00c29b45b8d3acab6308f6112197564205674b171c2 SHA512 
5897c9ddc3f98e0c6f80f051684f9cf0f4da75f4ed7dd9e551000edf711d6e1ca2848af44677b0e93f80506f258d4eda5f236cbe00c1e0a264bae86f07621996
 WHIRLPOOL 
c387f11751e4643c7aa30cb254abce1a8035c5108a1f827d2be8cbaa174f102a40b66bd218db74b53e1c5a36a0e94aaeab3ca9e69f716d2425249e5f233f
+DIST moodle-2.9.3.tgz 36476693 SHA256 
48f59bd77df53fb5f608da492f09c21eb7c8994c3ddce39fa7a9fd8e3e0e8f46 SHA512 
fe98155f8ad3ddeab571aa6ecf71bb9f44e87801a3de8cca64b5341ed1a13f21d843804187016951dd105f1eec6ea25a95d53a405c3def5a5ac6ac738d14e0d7
 WHIRLPOOL 
c64b2cb7033db84c4e0f7a9479b6bf74b2c615a8382168cb93f75825dc6c3b3760a8abfc0d99261a5c1e528b64a42113b8c9c19c20a68684eb50bd0072514c30

diff --git a/www-apps/moodle/moodle-2.9.3.ebuild 
b/www-apps/moodle/moodle-2.9.3.ebuild
new file mode 100644
index 000..2ca2710
--- /dev/null
+++ b/www-apps/moodle/moodle-2.9.3.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org;
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2015-11-07 Thread Anthony G. Basile
commit: 24a62c0e7d9df3e5f8fc949673e680746510cf47
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov  8 00:13:52 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov  8 00:21:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a62c0e

www-apps/moodle: version bump to 2.7.11

Package-Manager: portage-2.2.20.1

 www-apps/moodle/Manifest |   1 +
 www-apps/moodle/moodle-2.7.11.ebuild | 128 +++
 2 files changed, 129 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 42349a1..359402e 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,4 @@
 DIST moodle-2.7.10.tgz 34992167 SHA256 
0cc41106b462b244cb4aac02999f099ede4b10c721e07df0d0f6860403fa4f4c SHA512 
b4f5aadd8fd9dbed33e1ebd85623bce4ea4c9d1e1bca64529b0122b2ba3c0e3d997327ba5f3e301643cc311ee2a711fa47ff8197564f75392a7f0f4d547c678a
 WHIRLPOOL 
424535889add84e79b8643695d5d295a05142fa0291675b114364e62b8a01497cbf9f27ec6d18f37fec8ea12b5e0bf28c395907aa45a7b7d9bcc9c4a32fd4c1d
+DIST moodle-2.7.11.tgz 34998741 SHA256 
8e7daf0d492dc78cbc3a50651b67b22c836329d696c5453bf0839c3fdd8b5838 SHA512 
1fb085bc7e64be22479df568e73496d01042e1197b8d2d5f42a40341a0ec48b5127c1f18b96cb65af09dd8d7314cec35ad25372041399e2e436cb17ec3838101
 WHIRLPOOL 
27d64a1d65dc804bc8b5080782fbbd397aa4891fd3013964744bc64a1c9cd024ae5712f258554a42fa6f975a0310a514c6ea3b01f3f290d5e3fcd12ff3833130
 DIST moodle-2.8.8.tgz 35960643 SHA256 
e5f9289edc847e84159a99767bf6621ddd930ef0aa1fd43d41d484e06f58d6f5 SHA512 
bce2c99ad9f0bd4eea1a5d6896a4dc6e3deca08f34ef4e52a2905ca181191a606e6e92602cbdf0635e8d736e658633967e867f9816bf4a74a33af9b7eadf1010
 WHIRLPOOL 
3c4c028707ee059881eadf0ff18e58323da26102461a267e2219619b9ceeda96fad78a1f5e0102ebbbfa933975384682a5732040969fce410040502ed86323da
 DIST moodle-2.9.2.tgz 36435068 SHA256 
14599e518b95269aa770d00c29b45b8d3acab6308f6112197564205674b171c2 SHA512 
5897c9ddc3f98e0c6f80f051684f9cf0f4da75f4ed7dd9e551000edf711d6e1ca2848af44677b0e93f80506f258d4eda5f236cbe00c1e0a264bae86f07621996
 WHIRLPOOL 
c387f11751e4643c7aa30cb254abce1a8035c5108a1f827d2be8cbaa174f102a40b66bd218db74b53e1c5a36a0e94aaeab3ca9e69f716d2425249e5f233f

diff --git a/www-apps/moodle/moodle-2.7.11.ebuild 
b/www-apps/moodle/moodle-2.7.11.ebuild
new file mode 100644
index 000..969d4d5
--- /dev/null
+++ b/www-apps/moodle/moodle-2.7.11.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org;
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-7* )
+# which may live on another server
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror "No database selected in your USE flags,"
+   #   eerror "You must select at least one."
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror
+   #   die
+   #fi
+
+   if [[ ${DB_COUNT} -gt 1 ]]; then
+   MYDB=""
+   ewarn
+   ewarn 
"\033[1;33m**\033[00m"
+   ewarn "Multiple databases selected in your USE flags,"
+   ewarn "You will have to choose your database manually."
+   ewarn 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2015-11-07 Thread Anthony G. Basile
commit: 5b322959b87f70c675cb6eac3d1340aa6fc026aa
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov  8 00:16:55 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov  8 00:21:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b322959

www-apps/moodle: version bump to 2.8.9

Package-Manager: portage-2.2.20.1

 www-apps/moodle/Manifest|   1 +
 www-apps/moodle/moodle-2.8.9.ebuild | 128 
 2 files changed, 129 insertions(+)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 359402e..02dbc8c 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,4 +1,5 @@
 DIST moodle-2.7.10.tgz 34992167 SHA256 
0cc41106b462b244cb4aac02999f099ede4b10c721e07df0d0f6860403fa4f4c SHA512 
b4f5aadd8fd9dbed33e1ebd85623bce4ea4c9d1e1bca64529b0122b2ba3c0e3d997327ba5f3e301643cc311ee2a711fa47ff8197564f75392a7f0f4d547c678a
 WHIRLPOOL 
424535889add84e79b8643695d5d295a05142fa0291675b114364e62b8a01497cbf9f27ec6d18f37fec8ea12b5e0bf28c395907aa45a7b7d9bcc9c4a32fd4c1d
 DIST moodle-2.7.11.tgz 34998741 SHA256 
8e7daf0d492dc78cbc3a50651b67b22c836329d696c5453bf0839c3fdd8b5838 SHA512 
1fb085bc7e64be22479df568e73496d01042e1197b8d2d5f42a40341a0ec48b5127c1f18b96cb65af09dd8d7314cec35ad25372041399e2e436cb17ec3838101
 WHIRLPOOL 
27d64a1d65dc804bc8b5080782fbbd397aa4891fd3013964744bc64a1c9cd024ae5712f258554a42fa6f975a0310a514c6ea3b01f3f290d5e3fcd12ff3833130
 DIST moodle-2.8.8.tgz 35960643 SHA256 
e5f9289edc847e84159a99767bf6621ddd930ef0aa1fd43d41d484e06f58d6f5 SHA512 
bce2c99ad9f0bd4eea1a5d6896a4dc6e3deca08f34ef4e52a2905ca181191a606e6e92602cbdf0635e8d736e658633967e867f9816bf4a74a33af9b7eadf1010
 WHIRLPOOL 
3c4c028707ee059881eadf0ff18e58323da26102461a267e2219619b9ceeda96fad78a1f5e0102ebbbfa933975384682a5732040969fce410040502ed86323da
+DIST moodle-2.8.9.tgz 35992485 SHA256 
09fca589cdf4b63052e5319931e8c42ca2e0e53d5eeb12cab852ef84bb50f034 SHA512 
6357d3902657056f2da685fb0ac230511c04f2ed54ceb380e637c06ee37e0c6765221aacebdc8c8901c6b646a0043d5c23ed91fd87eda2ebce0cc6128102e515
 WHIRLPOOL 
f2631ba8f4aa01ec052f90ec8f9df37e93287493e0c11194a76422115ceb0a11631afb8d46402906c423a8d5667b0cbf23ee63a5fe112f232075d3788604fb52
 DIST moodle-2.9.2.tgz 36435068 SHA256 
14599e518b95269aa770d00c29b45b8d3acab6308f6112197564205674b171c2 SHA512 
5897c9ddc3f98e0c6f80f051684f9cf0f4da75f4ed7dd9e551000edf711d6e1ca2848af44677b0e93f80506f258d4eda5f236cbe00c1e0a264bae86f07621996
 WHIRLPOOL 
c387f11751e4643c7aa30cb254abce1a8035c5108a1f827d2be8cbaa174f102a40b66bd218db74b53e1c5a36a0e94aaeab3ca9e69f716d2425249e5f233f

diff --git a/www-apps/moodle/moodle-2.8.9.ebuild 
b/www-apps/moodle/moodle-2.8.9.ebuild
new file mode 100644
index 000..2ca2710
--- /dev/null
+++ b/www-apps/moodle/moodle-2.8.9.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit versionator webapp
+
+AVC=( $(get_version_components) )
+MY_BRANCH="stable${AVC[0]}${AVC[1]}"
+
+DESCRIPTION="The Moodle Course Management System"
+HOMEPAGE="http://moodle.org;
+SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+#SLOT empty due to webapp
+
+DB_FLAGS="mysqli?,mssql?,postgres?"
+DB_TYPES=${DB_FLAGS//\?/}
+DB_TYPES=${DB_TYPES//,/ }
+
+AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
+AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
+AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
+
+PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
+PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
+PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
+
+IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
+REQUIRED_USE="|| ( ${DB_TYPES} )"
+
+# No forced dependency on
+#  mssql? - lives on a windows server
+#  mysql? ( virtual/mysql )
+#  postgres? ( dev-db/postgresql-server-9* )
+# which may live on another server.  These USE flags affect the configuration
+# file and the dependency on php.  However other dbs are possible.  See 
config.php
+# and the moodle documentation for other possibilities.
+DEPEND=""
+RDEPEND="
+   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
+   virtual/httpd-php
+   virtual/cron"
+
+pkg_setup() {
+   webapp_pkg_setup
+
+   # How many dbs were selected? If one and only one, which one is it?
+   MYDB=""
+   DB_COUNT=0
+   for db in ${DB_TYPES}; do
+   if use ${db}; then
+   MYDB=${db}
+   DB_COUNT=$(($DB_COUNT+1))
+   fi
+   done
+
+   # REQUIRED_USE above guarantees that ${DB_COUNT} cannot be zero
+   #if [[ ${DB_COUNT} -eq 0 ]]; then
+   #   eerror
+   #   eerror 
"\033[1;31m**\033[00m"
+   #   eerror "No database selected in 

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2015-11-07 Thread Anthony G. Basile
commit: 9dc1919591a8bbe10b7f9468486bc888abe48367
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Nov  8 00:20:38 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Nov  8 00:22:00 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc19195

www-apps/moodle: remove older versions.

Package-Manager: portage-2.2.20.1

 www-apps/moodle/Manifest |   3 -
 www-apps/moodle/moodle-2.7.10.ebuild | 128 ---
 www-apps/moodle/moodle-2.8.8.ebuild  | 128 ---
 www-apps/moodle/moodle-2.9.2.ebuild  | 128 ---
 4 files changed, 387 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index cd9761c..9b3ac9a 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,6 +1,3 @@
-DIST moodle-2.7.10.tgz 34992167 SHA256 
0cc41106b462b244cb4aac02999f099ede4b10c721e07df0d0f6860403fa4f4c SHA512 
b4f5aadd8fd9dbed33e1ebd85623bce4ea4c9d1e1bca64529b0122b2ba3c0e3d997327ba5f3e301643cc311ee2a711fa47ff8197564f75392a7f0f4d547c678a
 WHIRLPOOL 
424535889add84e79b8643695d5d295a05142fa0291675b114364e62b8a01497cbf9f27ec6d18f37fec8ea12b5e0bf28c395907aa45a7b7d9bcc9c4a32fd4c1d
 DIST moodle-2.7.11.tgz 34998741 SHA256 
8e7daf0d492dc78cbc3a50651b67b22c836329d696c5453bf0839c3fdd8b5838 SHA512 
1fb085bc7e64be22479df568e73496d01042e1197b8d2d5f42a40341a0ec48b5127c1f18b96cb65af09dd8d7314cec35ad25372041399e2e436cb17ec3838101
 WHIRLPOOL 
27d64a1d65dc804bc8b5080782fbbd397aa4891fd3013964744bc64a1c9cd024ae5712f258554a42fa6f975a0310a514c6ea3b01f3f290d5e3fcd12ff3833130
-DIST moodle-2.8.8.tgz 35960643 SHA256 
e5f9289edc847e84159a99767bf6621ddd930ef0aa1fd43d41d484e06f58d6f5 SHA512 
bce2c99ad9f0bd4eea1a5d6896a4dc6e3deca08f34ef4e52a2905ca181191a606e6e92602cbdf0635e8d736e658633967e867f9816bf4a74a33af9b7eadf1010
 WHIRLPOOL 
3c4c028707ee059881eadf0ff18e58323da26102461a267e2219619b9ceeda96fad78a1f5e0102ebbbfa933975384682a5732040969fce410040502ed86323da
 DIST moodle-2.8.9.tgz 35992485 SHA256 
09fca589cdf4b63052e5319931e8c42ca2e0e53d5eeb12cab852ef84bb50f034 SHA512 
6357d3902657056f2da685fb0ac230511c04f2ed54ceb380e637c06ee37e0c6765221aacebdc8c8901c6b646a0043d5c23ed91fd87eda2ebce0cc6128102e515
 WHIRLPOOL 
f2631ba8f4aa01ec052f90ec8f9df37e93287493e0c11194a76422115ceb0a11631afb8d46402906c423a8d5667b0cbf23ee63a5fe112f232075d3788604fb52
-DIST moodle-2.9.2.tgz 36435068 SHA256 
14599e518b95269aa770d00c29b45b8d3acab6308f6112197564205674b171c2 SHA512 
5897c9ddc3f98e0c6f80f051684f9cf0f4da75f4ed7dd9e551000edf711d6e1ca2848af44677b0e93f80506f258d4eda5f236cbe00c1e0a264bae86f07621996
 WHIRLPOOL 
c387f11751e4643c7aa30cb254abce1a8035c5108a1f827d2be8cbaa174f102a40b66bd218db74b53e1c5a36a0e94aaeab3ca9e69f716d2425249e5f233f
 DIST moodle-2.9.3.tgz 36476693 SHA256 
48f59bd77df53fb5f608da492f09c21eb7c8994c3ddce39fa7a9fd8e3e0e8f46 SHA512 
fe98155f8ad3ddeab571aa6ecf71bb9f44e87801a3de8cca64b5341ed1a13f21d843804187016951dd105f1eec6ea25a95d53a405c3def5a5ac6ac738d14e0d7
 WHIRLPOOL 
c64b2cb7033db84c4e0f7a9479b6bf74b2c615a8382168cb93f75825dc6c3b3760a8abfc0d99261a5c1e528b64a42113b8c9c19c20a68684eb50bd0072514c30

diff --git a/www-apps/moodle/moodle-2.7.10.ebuild 
b/www-apps/moodle/moodle-2.7.10.ebuild
deleted file mode 100644
index 969d4d5..000
--- a/www-apps/moodle/moodle-2.7.10.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="http://moodle.org;
-SRC_URI="http://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-#SLOT empty due to webapp
-
-DB_FLAGS="mysqli?,postgres?"
-DB_TYPES=${DB_FLAGS//\?/}
-DB_TYPES=${DB_TYPES//,/ }
-
-AUTHENTICATION_FLAGS="imap?,ldap?,odbc?"
-AUTHENTICATION_MODES=${AUTHENTICATION_FLAGS//\?/}
-AUTHENTICATION_MODES=${AUTHENTICATION_MODES//,/ }
-
-PHP_REQUIRED_FLAGS="ctype,curl,iconv,json,session,simplexml,xml,zip"
-PHP_OPTIONAL_FLAGS="gd,intl,soap,ssl,tokenizer,xmlrpc"
-PHP_FLAGS="${PHP_REQUIRED_FLAGS},${PHP_OPTIONAL_FLAGS}"
-
-IUSE="${DB_TYPES} ${AUTHENTICATION_MODES} vhosts"
-REQUIRED_USE="|| ( ${DB_TYPES} )"
-
-# No forced dependency on
-#  mysql? ( virtual/mysql )
-#  postgres? ( dev-db/postgresql-server-7* )
-# which may live on another server
-DEPEND=""
-RDEPEND="
-   >=dev-lang/php-5.4.4[${DB_FLAGS},${AUTHENTICATION_FLAGS},${PHP_FLAGS}]
-   virtual/httpd-php
-   virtual/cron"
-
-pkg_setup() {
-   webapp_pkg_setup
-
-   # How many dbs were selected? If one and only one, which one is it?
-   MYDB=""
-   DB_COUNT=0
-   for db in ${DB_TYPES}; do
-   if use ${db}; then
-   MYDB=${db}
-   

[gentoo-commits] repo/gentoo:master commit in: www-apps/moodle/

2015-09-12 Thread Anthony G. Basile
commit: bb1f90e09e35f23246e0c961569b563dd0acfa7e
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Sep 12 09:19:13 2015 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Sep 12 09:19:35 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1f90e0

www-apps/moodle: version bumps, drop older.

Package-Manager: portage-2.2.20.1

 www-apps/moodle/Manifest  | 6 +++---
 www-apps/moodle/{moodle-2.7.9.ebuild => moodle-2.7.10.ebuild} | 0
 www-apps/moodle/{moodle-2.9.1.ebuild => moodle-2.8.8.ebuild}  | 0
 www-apps/moodle/{moodle-2.8.7.ebuild => moodle-2.9.2.ebuild}  | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 82bf15d..42349a1 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,3 +1,3 @@
-DIST moodle-2.7.9.tgz 34986369 SHA256 
d746bfacd44bc7b33ed7cff12b7189bd2021e809a4a64836f124c4ae75d08a7d SHA512 
76d74dc0b19959b935c12138d81501f55cf34bdf8b62c82d21ac4f02e4290ceecac2b9f17adb7b07b2ec72f1d39a3f2b5a42b01b03a7fce58a6d242a945ff626
 WHIRLPOOL 
baee4892b49c580a2c9de060b7ccd3e6eb397e24bdf8ac69accb46d2553ac651546af86be7537b28ce36f9378d35eeb75d569fb81acba94cd7bb9a0493ca72c3
-DIST moodle-2.8.7.tgz 35867384 SHA256 
cd4cf38bb329cad3575d32e6692c9cdba97b25d7b09d2aaf0b20aa5fac2878f4 SHA512 
4c6d71225c825568ab9a4137153274cedb30905ff70b58c35299606c7101b45e8f32c969cdaada6e5fe86d015de94b057389597dea017ac7d8d5122b71e90cab
 WHIRLPOOL 
66bad29da03d0c7f8d2a009efb1b241289a56c193180f13ab1c5bb7953e03c03f326af6e96365a23192443197d9edae0d65980c7c85a97a5634092ab7d1e557f
-DIST moodle-2.9.1.tgz 36340544 SHA256 
bfc9398904809ed6041e8bcbdb75d7bc1917d5a0ff47fd0069812d783e03c020 SHA512 
5875c78bc7f16eca15df5dc052eee8748e26799337e76b344d49a6c7b79c1fc1c3acddf716df37cd38cfb595e3deab24aee88b3198d4b1076ce09ea2316d0456
 WHIRLPOOL 
2b1ea95ea90baaa92f236ab9a2701bcb330be8b85c3a23d5c4fffb677b899f5e7a1847be4a6c0410300167b41e8bea03b0240e137d3bbdb4bb7475d48ff642d7
+DIST moodle-2.7.10.tgz 34992167 SHA256 
0cc41106b462b244cb4aac02999f099ede4b10c721e07df0d0f6860403fa4f4c SHA512 
b4f5aadd8fd9dbed33e1ebd85623bce4ea4c9d1e1bca64529b0122b2ba3c0e3d997327ba5f3e301643cc311ee2a711fa47ff8197564f75392a7f0f4d547c678a
 WHIRLPOOL 
424535889add84e79b8643695d5d295a05142fa0291675b114364e62b8a01497cbf9f27ec6d18f37fec8ea12b5e0bf28c395907aa45a7b7d9bcc9c4a32fd4c1d
+DIST moodle-2.8.8.tgz 35960643 SHA256 
e5f9289edc847e84159a99767bf6621ddd930ef0aa1fd43d41d484e06f58d6f5 SHA512 
bce2c99ad9f0bd4eea1a5d6896a4dc6e3deca08f34ef4e52a2905ca181191a606e6e92602cbdf0635e8d736e658633967e867f9816bf4a74a33af9b7eadf1010
 WHIRLPOOL 
3c4c028707ee059881eadf0ff18e58323da26102461a267e2219619b9ceeda96fad78a1f5e0102ebbbfa933975384682a5732040969fce410040502ed86323da
+DIST moodle-2.9.2.tgz 36435068 SHA256 
14599e518b95269aa770d00c29b45b8d3acab6308f6112197564205674b171c2 SHA512 
5897c9ddc3f98e0c6f80f051684f9cf0f4da75f4ed7dd9e551000edf711d6e1ca2848af44677b0e93f80506f258d4eda5f236cbe00c1e0a264bae86f07621996
 WHIRLPOOL 
c387f11751e4643c7aa30cb254abce1a8035c5108a1f827d2be8cbaa174f102a40b66bd218db74b53e1c5a36a0e94aaeab3ca9e69f716d2425249e5f233f

diff --git a/www-apps/moodle/moodle-2.7.9.ebuild 
b/www-apps/moodle/moodle-2.7.10.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.7.9.ebuild
rename to www-apps/moodle/moodle-2.7.10.ebuild

diff --git a/www-apps/moodle/moodle-2.9.1.ebuild 
b/www-apps/moodle/moodle-2.8.8.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.9.1.ebuild
rename to www-apps/moodle/moodle-2.8.8.ebuild

diff --git a/www-apps/moodle/moodle-2.8.7.ebuild 
b/www-apps/moodle/moodle-2.9.2.ebuild
similarity index 100%
rename from www-apps/moodle/moodle-2.8.7.ebuild
rename to www-apps/moodle/moodle-2.9.2.ebuild