From 0178952189e827e80444bcba2e7bbaac7774aa87 Mon Sep 17 00:00:00 2001 From: Marcin Deranek Date: Sun, 18 Aug 2019 17:11:10 +0200 Subject: Version bump --- www-apps/joomla/Manifest | 4 +-- www-apps/joomla/joomla-3.9.11.ebuild | 50 ++++++++++++++++++++++++++++++++++++ www-apps/joomla/joomla-3.9.6.ebuild | 50 ------------------------------------ 3 files changed, 52 insertions(+), 52 deletions(-) create mode 100644 www-apps/joomla/joomla-3.9.11.ebuild delete mode 100644 www-apps/joomla/joomla-3.9.6.ebuild (limited to 'www-apps') diff --git a/www-apps/joomla/Manifest b/www-apps/joomla/Manifest index b39e0c3..1831f73 100644 --- a/www-apps/joomla/Manifest +++ b/www-apps/joomla/Manifest @@ -1,4 +1,4 @@ AUX postinstall-en.txt 916 BLAKE2B 0f89355cd8a1f9507de8a231c519930d25887717ae9519b90f5d77e9f928d8846585236a7c7cf5f48349508e5a811288f5833fd175d10d1c119c6a772c9ef12b SHA512 d53b2d2b2d9cb1cb83bf452f71d7098e5c6a460bdfa914e7d9bf57090544931eeeae249cf0e738a73c351f06854f7e3490e1c5d84271be43e45bec91a32c732a AUX postinstall-sv.txt 764 BLAKE2B 6cf5780b60c39b35845557d4e386ca4e2f2c5ca9e7fa45fd67feedf108d57ac5d1a11b80bb68861a14f30c83f55302f9cc49a4dff25015faec5ebac2a4c1a071 SHA512 4a7110fd497d5330fd289743942a9339bd7b7ffa0812578c4552ae539774576ca7ce6df8bc8ed45ca6bb4d61d7183c1094d6a2480988497e131f3687274b3e0b -DIST Joomla_3.9.6-Stable-Full_Package.tar.bz2 7946091 BLAKE2B e66cc6070c8952e4c87df7ddd3cc49d5b9f91530bb44f3d8f523051f4ce120e6e132af5c83cbdb26ffb660dee9d544be722120dd3d94fd2ec50e236f6f94d8b3 SHA512 f6edf4745c1e63de52504dbdc244ba9e424da663181fb149b597393c4841e47278563f50703abcf588a7e2b811c7e2b0033cbc5915b880e0a28425a498504ac4 -EBUILD joomla-3.9.6.ebuild 1495 BLAKE2B d1345412d9ef0aaec2c48eb15ae3c5bef4dc9208525727bf2d56dbb219cea8bee908d21a62e6bb8e99b71ab933354149050f6eb9ef46163da83de3623398c2d3 SHA512 25b5d1210902d8154b9201cbd99a326a5f099ec641af68430441d67412d953eb9b21ed58ea2ac9a458e04a3af088b12dd9c78b8d6cae96d0842c2023b296da51 +DIST Joomla_3.9.11-Stable-Full_Package.tar.bz2 7948739 BLAKE2B 5169cd2c92b875b5f9ce4a9a52cc0bf8d8ad141e75e8c839b0ad77c71dddf496f9e622be6a6a25b7f8c8e267e7598ce08aa09191b586754a8c6df1a97d1502f0 SHA512 f3676dc54a609d4f064b6ed8945c4ffdb6a17664d17e2dc919c21783ae9db4a7dc619ae3a7728f62e25c9ac926a8eba4f076e500cd5744c82d25fdcdb41784df +EBUILD joomla-3.9.11.ebuild 1495 BLAKE2B d1345412d9ef0aaec2c48eb15ae3c5bef4dc9208525727bf2d56dbb219cea8bee908d21a62e6bb8e99b71ab933354149050f6eb9ef46163da83de3623398c2d3 SHA512 25b5d1210902d8154b9201cbd99a326a5f099ec641af68430441d67412d953eb9b21ed58ea2ac9a458e04a3af088b12dd9c78b8d6cae96d0842c2023b296da51 diff --git a/www-apps/joomla/joomla-3.9.11.ebuild b/www-apps/joomla/joomla-3.9.11.ebuild new file mode 100644 index 0000000..e3ead25 --- /dev/null +++ b/www-apps/joomla/joomla-3.9.11.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit webapp versionator + +MY_PV=$(replace_version_separator '_' '-') + +DESCRIPTION="A powerful Open Source Content Management System" +HOMEPAGE="http://www.joomla.org/" +M_PN="Joomla_${MY_PV}-Stable-Full_Package" +SRC_URI="https://github.com/${PN}/${PN}-cms/releases/download/${MY_PV}/${M_PN}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +S="${WORKDIR}" +need_httpd_cgi + +RDEPEND=">=dev-lang/php-5.3.10[json,zlib,xml] + virtual/httpd-php + || ( dev-lang/php[mysql] dev-lang/php[postgres] )" + +src_install () { + webapp_src_preinst + + touch configuration.php + insinto "${MY_HTDOCSDIR}" + doins -r . + + local files=" administrator/cache administrator/components + administrator/language administrator/language/en-GB + administrator/manifests/packages + administrator/modules administrator/templates cache components images installation + images/banners language language/en-GB media modules plugins + plugins/authentication plugins/content plugins/editors plugins/editors-xtd + plugins/search plugins/system plugins/user plugins tmp templates" + + for file in ${files}; do + webapp_serverowned -R "${MY_HTDOCSDIR}"/${file} + done + + webapp_configfile "${MY_HTDOCSDIR}"/configuration.php + webapp_serverowned "${MY_HTDOCSDIR}"/configuration.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_postinst_txt sv "${FILESDIR}"/postinstall-sv.txt + webapp_src_install +} diff --git a/www-apps/joomla/joomla-3.9.6.ebuild b/www-apps/joomla/joomla-3.9.6.ebuild deleted file mode 100644 index e3ead25..0000000 --- a/www-apps/joomla/joomla-3.9.6.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit webapp versionator - -MY_PV=$(replace_version_separator '_' '-') - -DESCRIPTION="A powerful Open Source Content Management System" -HOMEPAGE="http://www.joomla.org/" -M_PN="Joomla_${MY_PV}-Stable-Full_Package" -SRC_URI="https://github.com/${PN}/${PN}-cms/releases/download/${MY_PV}/${M_PN}.tar.bz2" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" - -S="${WORKDIR}" -need_httpd_cgi - -RDEPEND=">=dev-lang/php-5.3.10[json,zlib,xml] - virtual/httpd-php - || ( dev-lang/php[mysql] dev-lang/php[postgres] )" - -src_install () { - webapp_src_preinst - - touch configuration.php - insinto "${MY_HTDOCSDIR}" - doins -r . - - local files=" administrator/cache administrator/components - administrator/language administrator/language/en-GB - administrator/manifests/packages - administrator/modules administrator/templates cache components images installation - images/banners language language/en-GB media modules plugins - plugins/authentication plugins/content plugins/editors plugins/editors-xtd - plugins/search plugins/system plugins/user plugins tmp templates" - - for file in ${files}; do - webapp_serverowned -R "${MY_HTDOCSDIR}"/${file} - done - - webapp_configfile "${MY_HTDOCSDIR}"/configuration.php - webapp_serverowned "${MY_HTDOCSDIR}"/configuration.php - - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt - webapp_postinst_txt sv "${FILESDIR}"/postinstall-sv.txt - webapp_src_install -} -- cgit v1.2.3