Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/
Date: Mon, 22 Nov 2021 14:12:40
Message-Id: 1637590346.c4235e4f23224afe3cc67e821d6630c03d239083.jsmolic@gentoo
1 commit: c4235e4f23224afe3cc67e821d6630c03d239083
2 Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 22 13:57:43 2021 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 22 14:12:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4235e4f
7
8 dev-util/lttng-tools: drop 2.7.1
9
10 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
11
12 dev-util/lttng-tools/Manifest | 1 -
13 dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | 39 ---------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
17 index 05cf60a28b50..f7de4cb7076d 100644
18 --- a/dev-util/lttng-tools/Manifest
19 +++ b/dev-util/lttng-tools/Manifest
20 @@ -3,4 +3,3 @@ DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 642047348ef7bfe72c5ec718b4029c62
21 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad SHA512 f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
22 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f SHA512 5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
23 DIST lttng-tools-2.13.0.tar.bz2 1850423 BLAKE2B fbd5f2528d2dd262cbdbac5559b2cac1d7aa82adddf2118dde6b9f3956e582566406590d1646ccac9c9c496c8e07fd9f7fd7a5fdaa90f528745e2ddea8f0269b SHA512 bcd824b21a6e186caba7d0cfa472b173681995c4c9680ab03d2f33c21f9e003c0ae22cea14f65e9f240ed48e3a679f940b8634a72fc5120fc2a5f47b067b6f07
24 -DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1 SHA512 b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
25
26 diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
27 deleted file mode 100644
28 index 6dea2846cbc0..000000000000
29 --- a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit linux-info versionator
38 -
39 -MY_P="${P/_rc/-rc}"
40 -MY_SLOT="$(get_version_component_range 1-2)"
41 -
42 -DESCRIPTION="Linux Trace Toolkit - next generation"
43 -HOMEPAGE="https://lttng.org"
44 -SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0/${MY_SLOT}"
48 -KEYWORDS="amd64 x86"
49 -IUSE="+ust"
50 -
51 -DEPEND="dev-libs/userspace-rcu:=
52 - dev-libs/popt
53 - dev-libs/libxml2
54 - ust? ( dev-util/lttng-ust:= )
55 -"
56 -RDEPEND="${DEPEND}"
57 -
58 -S="${WORKDIR}/${MY_P}"
59 -
60 -pkg_pretend() {
61 - if kernel_is -lt 2 6 27; then
62 - ewarn "${PN} require Linux kernel >= 2.6.27"
63 - ewarn " pipe2(), epoll_create1() and SOCK_CLOEXEC are needed to run"
64 - ewarn " the session daemon. There were introduce in the 2.6.27"
65 - fi
66 -}
67 -
68 -src_configure() {
69 - econf $(use_enable ust lttng-ust)
70 -}