public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Marek Szuba" <marecki@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sysstat/
Date: Wed, 31 Aug 2022 15:33:44 +0000 (UTC)	[thread overview]
Message-ID: <1661960018.af9911eda3a57070cee70f09b6f732f886aa39da.marecki@gentoo> (raw)

commit:     af9911eda3a57070cee70f09b6f732f886aa39da
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 31 15:22:15 2022 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Aug 31 15:33:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af9911ed

app-admin/sysstat: drop 12.5.4, 12.5.5

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 app-admin/sysstat/Manifest              |  2 -
 app-admin/sysstat/sysstat-12.5.4.ebuild | 87 ---------------------------------
 app-admin/sysstat/sysstat-12.5.5.ebuild | 87 ---------------------------------
 3 files changed, 176 deletions(-)

diff --git a/app-admin/sysstat/Manifest b/app-admin/sysstat/Manifest
index 2266ddcd5477..8990d74b24f2 100644
--- a/app-admin/sysstat/Manifest
+++ b/app-admin/sysstat/Manifest
@@ -1,3 +1 @@
-DIST sysstat-12.5.4.tar.gz 1474379 BLAKE2B 73bd4ebc44cc57cd3dba4fecbcd45026929bdbeab6b99c5b13db7d37252dff8da987ee5ac00d545aebdc72f924d0100166e9e876f6684e064f7020f3fa7a7cb5 SHA512 c051f136d404684a21b11e968968e34f0f114b4568369c6449c64b7745269065a3dc492039ded7c415fe39970aca54cc81646589b0959ade43e9be6f6cd4c0dc
-DIST sysstat-12.5.5.tar.gz 1481620 BLAKE2B baf4d57eb369d75787e3fce48b29909f90ad5e981996930538ff0a60e668853457440bcea8323cfa10d86f7069b0f4e24e27d62aa09572bd1c9535c2bd730451 SHA512 66ccbf0fbaf783fac3cf2b52daf53a8d5bc6d182a66fa0b2965717cf5afc5e54590f08711948f18806b9b95c9f06a45376a1d18b5081d63a5214bc55f81f5696
 DIST sysstat-12.6.0.tar.gz 1454167 BLAKE2B 84213e1d63e6d44e889e9763c9f47c769805baf65715199b1ddb3472ce68c37b3b46229af43ecf0cd85d6c09be85273e90b96a975304cf2f6695298b3e552630 SHA512 f4d0e0dead0cce84782e985c8074871c45e77949c2bcfefd5642280e961f39e9eaa9f9fc93c013d79deba6e3703626894dd665ff64db72550d1c24f404780a5f

diff --git a/app-admin/sysstat/sysstat-12.5.4.ebuild b/app-admin/sysstat/sysstat-12.5.4.ebuild
deleted file mode 100644
index ddcb57509fa0..000000000000
--- a/app-admin/sysstat/sysstat-12.5.4.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils flag-o-matic systemd toolchain-funcs
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-IUSE="dcron debug nls lm-sensors selinux static systemd"
-
-CDEPEND="
-	nls? ( virtual/libintl )
-	lm-sensors? ( sys-apps/lm-sensors:= )
-"
-DEPEND="
-	${CDEPEND}
-	nls? ( sys-devel/gettext )
-"
-RDEPEND="
-	${CDEPEND}
-	!dcron? ( !sys-process/dcron )
-	selinux? ( sec-policy/selinux-sysstat )
-"
-
-REQUIRED_USE="dcron? ( !systemd )"
-
-src_prepare() {
-	if use nls; then
-		strip-linguas -i nls/
-		local lingua pofile
-		for pofile in nls/*.po; do
-			lingua=${pofile/nls\/}
-			lingua=${lingua/.po}
-			if ! has ${lingua} ${LINGUAS}; then
-				rm "nls/${lingua}.po" || die
-			fi
-		done
-	fi
-
-	use dcron && { sed -i 's/@CRON_OWNER@ //g' cron/sysstat.crond.in || die ; }
-	default
-}
-
-src_configure() {
-	tc-export AR
-	use static && append-ldflags -static
-
-	sa_lib_dir=/usr/lib/sa \
-		conf_dir=/etc \
-		econf \
-			$(use_enable !systemd use-crond) \
-			$(use_enable lm-sensors sensors) \
-			$(use_enable nls) \
-			$(usex debug --enable-debuginfo '') \
-			--disable-compress-manpg \
-			--enable-copy-only \
-			--enable-documentation \
-			--enable-install-cron \
-			--with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-}
-
-src_compile() {
-	LFLAGS="${LDFLAGS}" default
-}
-
-src_install() {
-	keepdir /var/log/sa
-
-	emake \
-		CHOWN=true \
-		DESTDIR="${D}" \
-		DOC_DIR=/usr/share/doc/${PF} \
-		MANGRPARG='' \
-		install
-
-	dodoc -r contrib/
-
-	newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-	systemd_dounit ${PN}.service
-
-	rm "${D}"/usr/share/doc/${PF}/COPYING || die
-}

diff --git a/app-admin/sysstat/sysstat-12.5.5.ebuild b/app-admin/sysstat/sysstat-12.5.5.ebuild
deleted file mode 100644
index 655a3391632c..000000000000
--- a/app-admin/sysstat/sysstat-12.5.5.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils flag-o-matic systemd toolchain-funcs
-
-DESCRIPTION="System performance tools for Linux"
-HOMEPAGE="http://pagesperso-orange.fr/sebastien.godard/"
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-IUSE="dcron debug nls lm-sensors selinux static systemd"
-
-CDEPEND="
-	nls? ( virtual/libintl )
-	lm-sensors? ( sys-apps/lm-sensors:= )
-"
-DEPEND="
-	${CDEPEND}
-	nls? ( sys-devel/gettext )
-"
-RDEPEND="
-	${CDEPEND}
-	!dcron? ( !sys-process/dcron )
-	selinux? ( sec-policy/selinux-sysstat )
-"
-
-REQUIRED_USE="dcron? ( !systemd )"
-
-src_prepare() {
-	if use nls; then
-		strip-linguas -i nls/
-		local lingua pofile
-		for pofile in nls/*.po; do
-			lingua=${pofile/nls\/}
-			lingua=${lingua/.po}
-			if ! has ${lingua} ${LINGUAS}; then
-				rm "nls/${lingua}.po" || die
-			fi
-		done
-	fi
-
-	use dcron && { sed -i 's/@CRON_OWNER@ //g' cron/sysstat.crond.in || die ; }
-	default
-}
-
-src_configure() {
-	tc-export AR
-	use static && append-ldflags -static
-
-	sa_lib_dir=/usr/lib/sa \
-		conf_dir=/etc \
-		econf \
-			$(use_enable !systemd use-crond) \
-			$(use_enable lm-sensors sensors) \
-			$(use_enable nls) \
-			$(usex debug --enable-debuginfo '') \
-			--disable-compress-manpg \
-			--enable-copy-only \
-			--enable-documentation \
-			--enable-install-cron \
-			--with-systemdsystemunitdir=$(systemd_get_systemunitdir)
-}
-
-src_compile() {
-	LFLAGS="${LDFLAGS}" default
-}
-
-src_install() {
-	keepdir /var/log/sa
-
-	emake \
-		CHOWN=true \
-		DESTDIR="${D}" \
-		DOC_DIR=/usr/share/doc/${PF} \
-		MANGRPARG='' \
-		install
-
-	dodoc -r contrib/
-
-	newinitd "${FILESDIR}"/${PN}.init.d ${PN}
-	systemd_dounit ${PN}.service
-
-	rm "${D}"/usr/share/doc/${PF}/COPYING || die
-}


             reply	other threads:[~2022-08-31 15:33 UTC|newest]

Thread overview: 168+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-31 15:33 Marek Szuba [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-20  9:25 [gentoo-commits] repo/gentoo:master commit in: app-admin/sysstat/ Marek Szuba
2024-01-07 11:38 Michał Górny
2023-07-13  8:33 Marek Szuba
2023-07-12  6:39 Jakov Smolić
2023-05-29 20:18 Sam James
2023-05-28 19:00 Arthur Zamarin
2023-05-27 10:51 Arthur Zamarin
2023-05-27 10:13 Sam James
2023-05-26  7:15 Sam James
2023-05-24  8:18 Sam James
2023-04-02 22:20 Marek Szuba
2023-04-01 19:52 Sam James
2023-03-30 17:32 Arthur Zamarin
2023-03-30 17:22 Arthur Zamarin
2023-03-16 14:04 Arthur Zamarin
2023-03-10  8:21 Arthur Zamarin
2023-03-08 23:35 Sam James
2023-03-08 15:31 Arthur Zamarin
2023-02-02  8:57 Marek Szuba
2023-02-02  8:57 Marek Szuba
2022-11-20 22:17 Marek Szuba
2022-11-18 12:46 Arthur Zamarin
2022-11-18  7:04 Jakov Smolić
2022-11-16  5:30 Arthur Zamarin
2022-11-10  5:06 Arthur Zamarin
2022-11-10  5:06 Arthur Zamarin
2022-11-10  2:50 Sam James
2022-11-10  2:50 Sam James
2022-11-10  0:56 Marek Szuba
2022-08-31 15:33 Marek Szuba
2022-08-31 12:05 Agostino Sarubbo
2022-08-30 16:09 Sam James
2022-08-30 16:03 Jakov Smolić
2022-08-30  9:42 Arthur Zamarin
2022-08-30  9:42 Arthur Zamarin
2022-08-30  9:25 Jakov Smolić
2022-07-12 18:52 Georgy Yakovlev
2022-07-12 18:21 Georgy Yakovlev
2022-07-08  8:13 Marek Szuba
2021-12-21  2:45 Georgy Yakovlev
2021-07-17  1:11 Georgy Yakovlev
2021-07-14  3:12 Sam James
2021-07-13  4:02 Sam James
2021-07-06 18:02 Sam James
2021-07-06 11:03 Agostino Sarubbo
2021-07-06 11:02 Agostino Sarubbo
2021-07-06 11:02 Agostino Sarubbo
2021-07-06 11:01 Agostino Sarubbo
2021-06-12  3:08 Georgy Yakovlev
2021-05-25 21:11 Georgy Yakovlev
2021-05-25 21:11 Georgy Yakovlev
2021-05-25 11:06 Sam James
2021-05-25  5:40 Georgy Yakovlev
2021-05-24 20:47 Sam James
2021-05-24 20:47 Sam James
2021-05-24 13:19 Agostino Sarubbo
2021-05-24 13:05 Agostino Sarubbo
2021-03-27  4:52 Georgy Yakovlev
2020-11-24  2:02 Georgy Yakovlev
2020-11-24  2:02 Georgy Yakovlev
2020-11-24  2:02 Georgy Yakovlev
2020-11-11  8:03 Georgy Yakovlev
2020-11-11  7:59 Georgy Yakovlev
2020-11-03 21:56 Georgy Yakovlev
2020-07-31  8:46 Jeroen Roovers
2020-07-31  7:42 Jeroen Roovers
2020-05-08  8:50 Jeroen Roovers
2020-04-23  7:16 Sergei Trofimovich
2020-04-10  9:19 Jeroen Roovers
2020-02-10 11:12 Jeroen Roovers
2020-01-27 12:36 Mikle Kolyada
2020-01-27  9:53 Sergei Trofimovich
2020-01-27  9:33 Sergei Trofimovich
2020-01-26 20:55 Thomas Deutschmann
2020-01-25 17:36 Sergei Trofimovich
2020-01-24 15:57 Agostino Sarubbo
2019-12-27 17:13 Jeroen Roovers
2019-12-27 17:13 Jeroen Roovers
2019-11-11 20:46 Jeroen Roovers
2019-11-11  9:15 Jeroen Roovers
2019-11-11  9:15 Jeroen Roovers
2019-09-30  9:07 Jeroen Roovers
2019-09-30  9:07 Jeroen Roovers
2019-08-15  6:13 Jeroen Roovers
2019-08-15  6:13 Jeroen Roovers
2019-08-15  6:13 Jeroen Roovers
2019-07-28 20:26 Mikle Kolyada
2019-07-26 18:07 Jeroen Roovers
2019-07-26 18:04 Jeroen Roovers
2019-07-26  4:46 Jeroen Roovers
2019-06-08 13:32 Jeroen Roovers
2019-06-06  6:46 Agostino Sarubbo
2019-06-05  7:12 Agostino Sarubbo
2019-06-04 14:48 Agostino Sarubbo
2019-06-04 14:45 Thomas Deutschmann
2019-06-01  8:14 Sergei Trofimovich
2019-05-31  8:30 Jeroen Roovers
2019-05-31  8:05 Jeroen Roovers
2019-05-31  8:05 Jeroen Roovers
2019-04-26 15:42 Anthony G. Basile
2019-04-18  8:54 Jeroen Roovers
2019-04-18  8:54 Jeroen Roovers
2019-02-22  9:31 Jeroen Roovers
2019-02-18 22:18 Jeroen Roovers
2019-02-15 16:23 Jeroen Roovers
2019-02-15 16:23 Jeroen Roovers
2018-12-17 20:36 Jeroen Roovers
2018-12-17 20:36 Jeroen Roovers
2018-11-30  6:10 Thomas Deutschmann
2018-10-15  8:10 Jeroen Roovers
2018-10-15  8:10 Jeroen Roovers
2018-08-07  7:04 Jeroen Roovers
2018-08-07  7:04 Jeroen Roovers
2018-06-04 19:31 Jeroen Roovers
2018-06-04 19:31 Jeroen Roovers
2018-04-11 18:20 Jeroen Roovers
2018-02-15 15:16 Jeroen Roovers
2018-01-15 12:10 Jeroen Roovers
2018-01-15 12:10 Jeroen Roovers
2017-11-08 17:13 Jeroen Roovers
2017-11-08 17:13 Jeroen Roovers
2017-08-18 19:21 Jeroen Roovers
2017-08-18 19:21 Jeroen Roovers
2017-07-06 19:41 Jeroen Roovers
2017-05-15 22:10 Jeroen Roovers
2017-04-08 10:15 Jeroen Roovers
2017-03-01  7:48 Jeroen Roovers
2017-02-09  8:43 Jeroen Roovers
2017-02-08 23:49 Jeroen Roovers
2017-01-16 17:08 Thomas Deutschmann
2017-01-16 16:14 Jeroen Roovers
2017-01-16 16:14 Jeroen Roovers
2016-12-21 22:54 Thomas Deutschmann
2016-12-15 11:52 Jeroen Roovers
2016-11-05  9:55 Jeroen Roovers
2016-11-05  9:55 Jeroen Roovers
2016-11-05  9:55 Jeroen Roovers
2016-10-09  9:21 Jeroen Roovers
2016-10-01 12:41 Jeroen Roovers
2016-09-27  8:32 Jeroen Roovers
2016-09-24 13:38 Agostino Sarubbo
2016-09-21 17:48 Tobias Klausmann
2016-08-17  5:05 Jeroen Roovers
2016-08-17  5:05 Jeroen Roovers
2016-08-17  5:05 Jeroen Roovers
2016-07-11  5:09 Jeroen Roovers
2016-07-03 19:21 Jeroen Roovers
2016-07-03 19:21 Jeroen Roovers
2016-07-01  5:30 Jeroen Roovers
2016-06-30 17:22 Tobias Klausmann
2016-06-22  6:58 Jeroen Roovers
2016-06-21 12:30 Jeroen Roovers
2016-05-25  6:29 Matt Turner
2016-05-18  9:27 Jeroen Roovers
2016-04-13 10:57 Jeroen Roovers
2016-04-13 10:57 Jeroen Roovers
2016-03-19  7:03 Jeroen Roovers
2016-03-19  7:03 Jeroen Roovers
2016-02-26 12:32 Jeroen Roovers
2016-02-12  5:47 Jeroen Roovers
2016-01-02  6:22 Jeroen Roovers
2016-01-02  6:22 Jeroen Roovers
2015-11-24 21:01 Jeroen Roovers
2015-11-24 20:58 Jeroen Roovers
2015-10-26  5:11 Jeroen Roovers
2015-09-26  5:24 Jeroen Roovers
2015-08-26  4:31 Jeroen Roovers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1661960018.af9911eda3a57070cee70f09b6f732f886aa39da.marecki@gentoo \
    --to=marecki@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox