commit:     a192ab77c52d85509361070bac9300e719c9ecdd
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 24 02:23:16 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 24 02:53:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a192ab77

app-admin/logrotate: drop 3.19.0, 3.20.1-r1

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-admin/logrotate/Manifest                   |  3 -
 app-admin/logrotate/logrotate-3.19.0.ebuild    | 96 --------------------------
 app-admin/logrotate/logrotate-3.20.1-r1.ebuild | 96 --------------------------
 3 files changed, 195 deletions(-)

diff --git a/app-admin/logrotate/Manifest b/app-admin/logrotate/Manifest
index 8c9bb675f204..82484df4b0c6 100644
--- a/app-admin/logrotate/Manifest
+++ b/app-admin/logrotate/Manifest
@@ -1,5 +1,2 @@
-DIST logrotate-3.19.0.tar.xz 166276 BLAKE2B 
bb19690ca092905e527f6a0a7915373a65b29d3b50d97456ed31aa9b5b5698b3ae266c8e247a167198dcd8891a7e330f4913dfefa3563e5b2de7a6e0d067a6c3
 SHA512 
7838e14a5b147f6e5edf6efdf743deeca39fdb563fc6f14aa010ac5b7bdef9c2bb8005415481d1b042b31975052d5ed6e75c4bcd7e378003427ebe5ec02a1f2c
-DIST logrotate-3.20.1.tar.xz 166712 BLAKE2B 
8481e0d746c6bcbe10f2686a921334c6f957c8d92520927de7bc8fb0b7631a444fedaa80f35bc2de7961b3d5833ce4ab885b1298b235b7f8b33cc3ae05438da6
 SHA512 
a9ed5796ab254f511d0029a8f29ef7557f62e12e3ea9af24e30b5b9f348b1c1a16df26d44314b78299916fb3b5000b9cd9eed7cee2cee8df11cfd8e40c79b092
-DIST logrotate-3.20.1.tar.xz.asc 833 BLAKE2B 
afc02177335bcd580e0617af8c50846b371c2d00ecd8fe329c2e298dc8c48823137625f455cea3d983a0d9971733297fa2c4d98ba3c6f72d2c07f8f21108cfe4
 SHA512 
2dd207feec431b223ff12f09f6cce14409d45e5bb3abaf2275dd773c7ee7c59ed7d32395e5869bfed70c970be4158fd299e6e269838378843dcb63ca5ebfa029
 DIST logrotate-3.21.0.tar.xz 168532 BLAKE2B 
f7fa0050bde51e2517eac8456ecf87648bc8423621830894ceb2a3ff6b9dfe32c5b53df6a4ee59aa91bd563ed94376a635159535f4fdc170fbc673354bcef508
 SHA512 
c576df7d2bc1a1db2f99befdd0ea627aef2d97bdcd4a7cdea76870623ba92fb1f04f1af6d15b75e4a9085f4aef2ae5e9843c4094cdd01e24d89872ccaf9c0d4a
 DIST logrotate-3.21.0.tar.xz.asc 833 BLAKE2B 
b2099a0b8c15d1ea7f7325884027dff08dcc8305113411448797b8089d17026242a3f10bd6d7f3d865e3e339ec6fb5faf4ff48f8fd65bca3af4da8b335c3b5f1
 SHA512 
8f4c1853cd84f85c796b72b43048f4cf04e3409703e7669ee91e1d1aa5e9e5c04261fac1cdf85ec303508d5b6dbf126a44eb9ec819bcc772c664830d39e1068c

diff --git a/app-admin/logrotate/logrotate-3.19.0.ebuild 
b/app-admin/logrotate/logrotate-3.19.0.ebuild
deleted file mode 100644
index 461e26ab35da..000000000000
--- a/app-admin/logrotate/logrotate-3.19.0.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd tmpfiles
-
-DESCRIPTION="Rotates, compresses, and mails system logs"
-HOMEPAGE="https://github.com/logrotate/logrotate";
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE="acl +cron selinux"
-
-DEPEND=">=dev-libs/popt-1.5
-       selinux? ( sys-libs/libselinux )
-       acl? ( virtual/acl )"
-RDEPEND="${DEPEND}
-       selinux? ( sec-policy/selinux-logrotate )
-       cron? ( virtual/cron )"
-
-STATEFILE="${EPREFIX}/var/lib/misc/logrotate.status"
-OLDSTATEFILE="${EPREFIX}/var/lib/logrotate.status"
-
-PATCHES=(
-       "${FILESDIR}/${PN}-3.15.0-ignore-hidden.patch"
-)
-
-move_old_state_file() {
-       elog "logrotate state file is now located at ${STATEFILE}"
-       elog "See bug #357275"
-       if [[ -e "${OLDSTATEFILE}" ]] ; then
-               elog "Moving your current state file to new location: 
${STATEFILE}"
-               mv -n "${OLDSTATEFILE}" "${STATEFILE}" || die
-       fi
-}
-
-install_cron_file() {
-       exeinto /etc/cron.daily
-       newexe "${S}"/examples/logrotate.cron "${PN}"
-}
-
-src_prepare() {
-       default
-
-       sed -i -e 's#/usr/sbin/logrotate#/usr/bin/logrotate#' 
examples/logrotate.{cron,service} || die
-}
-
-src_configure() {
-       econf \
-               $(use_with acl) \
-               $(use_with selinux) \
-               --with-state-file-path="${STATEFILE}"
-}
-
-src_test() {
-       emake test
-}
-
-src_install() {
-       dobin logrotate
-       doman logrotate.8
-       dodoc ChangeLog.md
-
-       insinto /etc
-       doins "${FILESDIR}"/logrotate.conf
-
-       use cron && install_cron_file
-
-       systemd_dounit examples/logrotate.{service,timer}
-       newtmpfiles "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf
-
-       keepdir /etc/logrotate.d
-}
-
-pkg_postinst() {
-       elog
-       elog "The ${PN} binary is now installed under /usr/bin. Please"
-       elog "update your links"
-       elog
-
-       move_old_state_file
-
-       tmpfiles_process ${PN}.conf
-
-       if [[ -z ${REPLACING_VERSIONS} ]] ; then
-               elog "If you wish to have logrotate e-mail you updates, please"
-               elog "emerge virtual/mailx and configure logrotate in"
-               elog "/etc/logrotate.conf appropriately"
-               elog
-               elog "Additionally, /etc/logrotate.conf may need to be modified"
-               elog "for your particular needs. See man logrotate for details."
-       fi
-}

diff --git a/app-admin/logrotate/logrotate-3.20.1-r1.ebuild 
b/app-admin/logrotate/logrotate-3.20.1-r1.ebuild
deleted file mode 100644
index 83351a930bbc..000000000000
--- a/app-admin/logrotate/logrotate-3.20.1-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/kamildudka.asc
-inherit systemd tmpfiles verify-sig
-
-DESCRIPTION="Rotates, compresses, and mails system logs"
-HOMEPAGE="https://github.com/logrotate/logrotate";
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
-SRC_URI+=" verify-sig? ( 
https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz.asc )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-IUSE="acl +cron selinux"
-
-DEPEND=">=dev-libs/popt-1.5
-       selinux? ( sys-libs/libselinux )
-       acl? ( virtual/acl )"
-RDEPEND="${DEPEND}
-       selinux? ( sec-policy/selinux-logrotate )
-       cron? ( virtual/cron )"
-BDEPEND="verify-sig? ( sec-keys/openpgp-keys-kamildudka )"
-
-STATEFILE="${EPREFIX}/var/lib/misc/logrotate.status"
-OLDSTATEFILE="${EPREFIX}/var/lib/logrotate.status"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-3.15.0-ignore-hidden.patch
-       "${FILESDIR}"/${P}-log-changes.patch
-)
-
-move_old_state_file() {
-       elog "logrotate state file is now located at ${STATEFILE}"
-       elog "See bug #357275"
-       if [[ -e "${OLDSTATEFILE}" ]] ; then
-               elog "Moving your current state file to new location: 
${STATEFILE}"
-               mv -n "${OLDSTATEFILE}" "${STATEFILE}" || die
-       fi
-}
-
-install_cron_file() {
-       exeinto /etc/cron.daily
-       newexe "${S}"/examples/logrotate.cron "${PN}"
-}
-
-src_prepare() {
-       default
-
-       sed -i -e 's#/usr/sbin/logrotate#/usr/bin/logrotate#' 
examples/logrotate.{cron,service} || die
-}
-
-src_configure() {
-       econf \
-               $(use_with acl) \
-               $(use_with selinux) \
-               --with-state-file-path="${STATEFILE}"
-}
-
-src_install() {
-       dobin logrotate
-       doman logrotate.8
-       dodoc ChangeLog.md
-
-       insinto /etc
-       doins "${FILESDIR}"/logrotate.conf
-
-       use cron && install_cron_file
-
-       systemd_dounit examples/logrotate.{service,timer}
-       newtmpfiles "${FILESDIR}"/${PN}.tmpfiles ${PN}.conf
-
-       keepdir /etc/logrotate.d
-}
-
-pkg_postinst() {
-       elog
-       elog "The ${PN} binary is now installed under /usr/bin. Please"
-       elog "update your links"
-       elog
-
-       move_old_state_file
-
-       tmpfiles_process ${PN}.conf
-
-       if [[ -z ${REPLACING_VERSIONS} ]] ; then
-               elog "If you wish to have logrotate e-mail you updates, please"
-               elog "emerge virtual/mailx and configure logrotate in"
-               elog "/etc/logrotate.conf appropriately"
-               elog
-               elog "Additionally, /etc/logrotate.conf may need to be modified"
-               elog "for your particular needs. See man logrotate for details."
-       fi
-}

Reply via email to