commit: 99c2c5626d3ef714714b872ed72cba9793542aba Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Feb 21 12:08:30 2026 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Mar 8 16:33:36 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99c2c562
www-apps/bugzilla: drop 5.0.6-r1 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> www-apps/bugzilla/bugzilla-5.0.6-r1.ebuild | 118 ----------------------------- 1 file changed, 118 deletions(-) diff --git a/www-apps/bugzilla/bugzilla-5.0.6-r1.ebuild b/www-apps/bugzilla/bugzilla-5.0.6-r1.ebuild deleted file mode 100644 index a148712eba8b..000000000000 --- a/www-apps/bugzilla/bugzilla-5.0.6-r1.ebuild +++ /dev/null @@ -1,118 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit optfeature webapp - -DESCRIPTION="Bugzilla is the Bug-Tracking System from the Mozilla project" -SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/webtools/${P}.tar.gz" -HOMEPAGE="https://www.bugzilla.org" - -LICENSE="MPL-2.0" -KEYWORDS="amd64 ~riscv x86" - -IUSE="apache2 doc mysql postgres +sqlite test" -RESTRICT="!test? ( test )" -REQUIRED_USE="|| ( mysql postgres sqlite )" - -# sorting is identical to upstream MYMETA.json, please don't change -# These are mandatory for checksetup.pl to configure bugzilla -BASIC_DEPS=" - dev-lang/perl - >=dev-perl/CGI-3.510.0 - >=dev-perl/DBI-1.614.0 - >=dev-perl/TimeDate-2.230.0 - >=dev-perl/DateTime-0.750.0 - >=dev-perl/DateTime-TimeZone-1.640.0 - virtual/perl-Digest-SHA - >=dev-perl/Email-MIME-1.904.0 - >=dev-perl/Email-Sender-1.300.11 - >=dev-perl/JSON-XS-2.10.0 - >=dev-perl/List-MoreUtils-0.320.0 - >=dev-perl/Math-Random-ISAAC-1.0.1 - >=dev-perl/Template-Toolkit-2.240.0 - >=dev-perl/URI-1.550.0 -" - -RDEPEND=" - ${BASIC_DEPS} - apache2? ( www-servers/apache[apache2_modules_access_compat] ) - !apache2? ( virtual/httpd-cgi ) - postgres? ( >=dev-perl/DBD-Pg-1.49 ) - mysql? ( >=dev-perl/DBD-mysql-4.0.5 ) - sqlite? ( >=dev-perl/DBD-SQLite-1.290.0 ) -" - -BDEPEND=" - test? ( ${BASIC_DEPS} ) - doc? ( - dev-python/sphinx - dev-perl/File-Copy-Recursive - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-5.0.6-leftbrace.patch" - "${FILESDIR}/${PN}-5.0.6-perl.patch" - "${FILESDIR}/${PN}-5.0.6-template.patch" -) - -src_prepare() { - default - - # Get rid of the bzr files - rm -r .bzr* || die - - # unconditionnally remove pod-coverage tests - rm t/011pod.t || die -} - -src_test() { - TZ=UTC perl -I. runtests.pl || die -} - -src_install() { - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r . - - webapp_postinst_txt en "${FILESDIR}/postinstall-${PV}-en.txt" - webapp_postupgrade_txt en "${FILESDIR}/postupgrade-${PV}-en.txt" - webapp_src_install - - if use doc; then - docs/makedocs.pl - dodoc -r docs/en/html - dodoc -r docs/en/txt - fi - - # openrc service file to enable mail queuing as a service - newinitd "${FILESDIR}"/bugzilla-queue.initd bugzilla-queue - - # must be executable and stay that way upon upgrading - fperms u+x "${MY_HTDOCSDIR}"/checksetup.pl -} - -pkg_postinst() { - optfeature "graphical reports, new charts, old charts" "dev-perl/GD dev-perl/Chart dev-perl/Template-GD dev-perl/GDTextUtil dev-perl/GDGraph" - optfeature "moving bugs between installations, automatic update notifications" "dev-perl/MIME-tools dev-perl/libwww-perl dev-perl/XML-Twig" - optfeature "patch viewer" "dev-perl/PatchReader" - optfeature "LDAP authentication" "dev-perl/perl-ldap" - optfeature "SMTP authentication" "dev-perl/Authen-SASL" - optfeature "XML-RPC Interface" "dev-perl/SOAP-Lite dev-perl/XMLRPC-Lite dev-perl/Test-Taint" - optfeature "JSON-RPC interface, REST interface" "dev-perl/JSON-RPC dev-perl/Test-Taint" - optfeature "more HTML in Product/Group description" "dev-perl/HTML-Scrubber" - optfeature "automatic charset detection for text attachments" "dev-perl/Encode-Detect" - optfeature "inbound email" "dev-perl/Email-Reply dev-perl/HTML-FormatText-WithLinks" - optfeature "mail queueing" "dev-perl/TheSchwarz dev-perl/Daemon-Generic" - optfeature "MIME type sniffing of attachments" "dev-perl/File-MimeInfo dev-perl/IO-stringy" - optfeature "Memcached support" "dev-perl/Cache-Memcached" - optfeature "SSL support for SMTP" "dev-perl/IO-Socket-SSL" - - ewarn "If Apache is the chosen webserver, please consider turning the apache2 use flag on" - ewarn "Not doing so may result in unexpected runtime errors" - - webapp_pkg_postinst -}
