public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcgroup/
Date: Mon, 25 Sep 2023 03:29:42 +0000 (UTC)	[thread overview]
Message-ID: <1695612569.2a4354ef585892bed4cf5d534cc938c29d1ac90b.sam@gentoo> (raw)

commit:     2a4354ef585892bed4cf5d534cc938c29d1ac90b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 25 03:28:47 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 03:29:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4354ef

dev-libs/libcgroup: drop 2.0

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

 dev-libs/libcgroup/Manifest             |  1 -
 dev-libs/libcgroup/libcgroup-2.0.ebuild | 98 ---------------------------------
 2 files changed, 99 deletions(-)

diff --git a/dev-libs/libcgroup/Manifest b/dev-libs/libcgroup/Manifest
index 169245e7cdd3..48d5b3481552 100644
--- a/dev-libs/libcgroup/Manifest
+++ b/dev-libs/libcgroup/Manifest
@@ -1,4 +1,3 @@
 DIST libcgroup-0.41.tar.bz2 500120 BLAKE2B 3410b430aa58613b5b9abedba05bef99b1b8a1fd619d55fb446ab951e052a336efc918879217055bceee886a03d97c3ff46028a87e8231212653a886cfb80521 SHA512 1aedb02cd2ce3bc2e2a328a247a92976ad0978ca4d3aee4eb671fbcc6bb270348efc78dcf84f27fc500f8bfb9bb57c7d6e4d429ef2bc69e4e5118b7cd895a6bd
-DIST libcgroup-2.0.tar.bz2 953191 BLAKE2B d4fe008a51a4f90047210a3c8e4ce48b1c4a126111ccc7fe919404b1782ea764404894a43a651e0d6b2674d02fb031cb56cf7a689c57600d856c03536524bb63 SHA512 b2c5d1128536bf49782415df2d1530cf48bdb287e5d2abdee68f9fa780d995d9bae79f97da5f0c437130d66054c96301b319cd1631a3b0efbc5bfe1e3414dc4b
 DIST libcgroup-3.0.0.tar.gz 1125800 BLAKE2B 5d4999ac513de756ffe741d2e959c01d8500a2000f521dff31832e1ef545869fb9c8ae1c78d05aaa051e7e6e68266bd57a751ba3aa897966a83ff50128090ba5 SHA512 1e8a7c9a71d928ab0e354254b007b30fc159a30e441bd52a03ded142420c94e130594bb512680c62fc22f5193934fb78afc31453342b032d1db3197fd4c3e606
 DIST libcgroup-3.1.0.tar.gz 1223547 BLAKE2B 3cd3ca779b4453df71aba584ad8fe654fb55478ad89b36ba5deccf46e3ef331b11dc32a9a72dfa525784558701a72fd0777e05275233e599015ae93269661534 SHA512 84272e811422f2105e275ccadbd333fe6da495da5504cd97acd3101718e27b52e0f56b62f847933b32d613e15c170d1b998d85a89c1591e8ce37c33043f3e00b

diff --git a/dev-libs/libcgroup/libcgroup-2.0.ebuild b/dev-libs/libcgroup/libcgroup-2.0.ebuild
deleted file mode 100644
index 989fc89b4af8..000000000000
--- a/dev-libs/libcgroup/libcgroup-2.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic linux-info pam systemd
-
-DESCRIPTION="Tools and libraries to configure and manage kernel control groups"
-HOMEPAGE="https://github.com/libcgroup/libcgroup"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-IUSE="+daemon pam static-libs test +tools"
-REQUIRED_USE="daemon? ( tools )"
-
-# Use mount cgroup to build directory
-# sandbox restricted to trivial build,
-RESTRICT="test"
-
-BDEPEND="
-	sys-devel/bison
-	sys-devel/flex
-	elibc_musl? ( sys-libs/fts-standalone )
-"
-DEPEND="pam? ( sys-libs/pam )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-	local CONFIG_CHECK="~CGROUPS"
-	if use daemon; then
-		CONFIG_CHECK="${CONFIG_CHECK} ~CONNECTOR ~PROC_EVENTS"
-	fi
-	linux-info_pkg_setup
-}
-
-src_prepare() {
-	default
-
-	# Change rules file location
-	find src -name *.c -o -name *.h \
-		| xargs sed -i '/^#define/s:/etc/cg:/etc/cgroup/cg:'
-	sed -i 's:/etc/cg:/etc/cgroup/cg:' \
-		doc/man/cg* samples/*.conf README* || die "sed failed"
-
-	# Drop native libcgconfig init config
-	sed -i '/^man_MANS/s:cgred.conf.5::' \
-		doc/man/Makefile.am || die "sed failed"
-
-	# If we're not running tests, don't bother building them.
-	if ! use test; then
-		sed -i '/^SUBDIRS/s:tests::' Makefile.am || die
-	fi
-
-	eautoreconf
-}
-
-src_configure() {
-	local my_conf
-
-	if use pam; then
-		my_conf=" --enable-pam-module-dir=$(getpam_mod_dir) "
-	fi
-
-	use elibc_musl && append-ldflags "-lfts"
-	econf \
-		$(use_enable static-libs static) \
-		$(use_enable daemon) \
-		$(use_enable pam) \
-		$(use_enable tools) \
-		${my_conf}
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-
-	insinto /etc/cgroup
-	doins samples/cgconfig.conf
-	doins samples/cgrules.conf
-	doins samples/cgsnapshot_blacklist.conf
-
-	keepdir /etc/cgroup/cgconfig.d
-	keepdir /etc/cgroup/cgrules.d
-
-	if use tools; then
-		newconfd "${FILESDIR}"/cgconfig.confd-r1 cgconfig
-		newinitd "${FILESDIR}"/cgconfig.initd-r1 cgconfig
-		systemd_dounit "${FILESDIR}"/cgconfig.service
-		systemd_dounit "${FILESDIR}"/cgrules.service
-	fi
-
-	if use daemon; then
-		newconfd "${FILESDIR}"/cgred.confd-r2 cgred
-		newinitd "${FILESDIR}"/cgred.initd-r1 cgred
-	fi
-}


             reply	other threads:[~2023-09-25  3:29 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-25  3:29 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-12-09  7:15 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcgroup/ Joonas Niilola
2023-12-08  8:51 Arthur Zamarin
2023-12-08  8:48 Arthur Zamarin
2023-12-08  8:48 Arthur Zamarin
2023-09-27  4:06 Sam James
2023-09-27  4:03 Sam James
2023-09-25  3:29 Sam James
2023-09-25  3:29 Sam James
2023-03-17 17:22 Sam James
2023-03-17 17:00 Sam James
2023-03-17 16:28 Arthur Zamarin
2023-03-17 16:12 Arthur Zamarin
2022-07-29  3:08 Sam James
2021-09-18 22:25 Anthony G. Basile
2021-08-15 21:06 Andreas Sturmlechner
2021-07-05 19:38 Marek Szuba
2021-05-04 19:13 Sam James
2021-05-01 18:11 Sam James
2021-05-01 18:11 Sam James
2021-05-01 17:13 Sam James
2019-10-12 18:58 Mikle Kolyada
2019-09-21  9:15 Michał Górny
2019-04-21  2:34 Anthony G. Basile
2019-04-16 12:48 Anthony G. Basile
2019-01-03  9:16 Mike Frysinger
2018-11-07  6:23 Anthony G. Basile
2018-08-23  0:39 Anthony G. Basile
2018-08-23  0:37 Anthony G. Basile
2018-08-23  0:28 Anthony G. Basile
2018-08-15 22:53 Anthony G. Basile
2018-04-21 11:15 Anthony G. Basile
2017-12-21 21:32 Anthony G. Basile
2017-12-21 21:32 Anthony G. Basile
2017-12-21 21:32 Anthony G. Basile
2016-10-10 13:28 Anthony G. Basile
2015-09-06 16:40 Anthony G. Basile
2015-09-06 15:49 Anthony G. Basile

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=1695612569.2a4354ef585892bed4cf5d534cc938c29d1ac90b.sam@gentoo \
    --to=sam@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