Gentoo Archives: gentoo-commits

From: Yixun Lan <dlan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/
Date: Tue, 26 Apr 2022 22:10:13
Message-Id: 1651010986.566b049528b9d7bf5f0ce55f418403f7ad5b9b64.dlan@gentoo
1 commit: 566b049528b9d7bf5f0ce55f418403f7ad5b9b64
2 Author: Raymond Wong <infiwang <AT> pm <DOT> me>
3 AuthorDate: Tue Apr 26 13:48:54 2022 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 22:09:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566b0495
7
8 dev-util/lttng-tools: add 2.12.11
9
10 Cloese: https://github.com/gentoo/gentoo/pull/25211
11 Signed-off-by: Raymond Wong <infiwang <AT> pm.me>
12 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
13
14 dev-util/lttng-tools/Manifest | 1 +
15 dev-util/lttng-tools/lttng-tools-2.12.11.ebuild | 34 +++++++++++++++++++++++++
16 2 files changed, 35 insertions(+)
17
18 diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
19 index fc68a0494d43..110ca1ba0126 100644
20 --- a/dev-util/lttng-tools/Manifest
21 +++ b/dev-util/lttng-tools/Manifest
22 @@ -1,3 +1,4 @@
23 +DIST lttng-tools-2.12.11.tar.bz2 1587429 BLAKE2B 9c8bc7803dad413f1c16d0e0bb25adab312734c57b591404e79d53706fe06cde96856ebe132590b60c42578368627196c1f60cc6247a8dcc6142ede69b696ae3 SHA512 c1ff07831508848ede2a69a4350ba6eeef2b9bea0faa9de4a3d9e8a0df81e22258d25131ccab57d1800fcac239a4bc25aa66d5d421d9e5c76d7cb6b9794ae4cd
24 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad SHA512 f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
25 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f SHA512 5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
26 DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27 SHA512 e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d
27
28 diff --git a/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild b/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
29 new file mode 100644
30 index 000000000000..b80ebb281a36
31 --- /dev/null
32 +++ b/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
33 @@ -0,0 +1,34 @@
34 +# Copyright 1999-2022 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=8
38 +
39 +MY_P="${P/_rc/-rc}"
40 +MY_SLOT="$(ver_cut 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-2.12.0:= )
55 +"
56 +RDEPEND="${DEPEND}"
57 +
58 +S="${WORKDIR}/${MY_P}"
59 +
60 +src_configure() {
61 + econf $(usex ust "" --without-lttng-ust) --disable-static
62 +}
63 +
64 +src_install() {
65 + default
66 + find "${ED}" -name '*.la' -delete || die
67 +}