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-ust/
Date: Tue, 30 Mar 2021 15:12:12
Message-Id: 1617117101.a9ff156aff8438fec56e118807c992ebb4e987a8.dlan@gentoo
1 commit: a9ff156aff8438fec56e118807c992ebb4e987a8
2 Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 30 15:09:15 2021 +0000
4 Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 15:11:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ff156a
7
8 dev-util/lttng-ust: version bump, 2.11/12
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
12
13 dev-util/lttng-ust/Manifest | 2 ++
14 dev-util/lttng-ust/lttng-ust-2.11.3.ebuild | 38 +++++++++++++++++++++++++++
15 dev-util/lttng-ust/lttng-ust-2.12.1.ebuild | 42 ++++++++++++++++++++++++++++++
16 3 files changed, 82 insertions(+)
17
18 diff --git a/dev-util/lttng-ust/Manifest b/dev-util/lttng-ust/Manifest
19 index c19ca764241..7d94580f928 100644
20 --- a/dev-util/lttng-ust/Manifest
21 +++ b/dev-util/lttng-ust/Manifest
22 @@ -1,3 +1,5 @@
23 DIST lttng-ust-2.11.0.tar.bz2 824285 BLAKE2B 161d50282a95cce47ab3811216241ade73e2002d8f03aa2266b5add36d06552f5620b912eeecff1173f43eec107b385f1b93783905f36a42baf5a63c37ea35fc SHA512 fb7258961a7e913487806a7e0129c95becff8c631382b119ff1d78f95cdd7460ec24e62671642160fdb006a3a292b2b10f35c8424f0367ce7c6a41cbcca77a09
24 +DIST lttng-ust-2.11.3.tar.bz2 846839 BLAKE2B 4ef6918588d139e1ca15f477194796d974f8442a44c7e18768582199ba1e0f467c796d2b10ea9936554e589c91b49e1a07c29b619d74b77b884b081868484ea3 SHA512 2483bb7c57f0e99b9e0d6431114c74f6e5af295a73643307716f5abb6fc20e7dec8bfe7fe3e074ca96bad72ca5f6042b6340d1a67928e885753fecfa8a136eb4
25 DIST lttng-ust-2.12.0.tar.bz2 853127 BLAKE2B 6a6655a4aa33ec6318255d05d0e000c19fb66d4049873f091b8e19f3f9ea0c15731db70af77dbab1d597edcafcd745f1dae2670cd38759c9b54ea38b1135b590 SHA512 d69772170f57b9669b99cea372ca537777151a31b82002e1e5ec80da3ceb302c23f0f85d63a2c95c90a375b879e266aa5297e7d6444050dd40feb1253d863801
26 +DIST lttng-ust-2.12.1.tar.bz2 859667 BLAKE2B 474d03ac0d3c1102ef085230659545f3e12bc0847cebab598f2998741741cb98ac139812a296992614dd90ed9478040ee0567822eb20e960e0a6489836274394 SHA512 6d5116a88be601f96513535ef7dfda409780cbacaab0831dc76b86070da60d5eac719d7020f70a6821e1c6dbbfae05ddf5a431662ef5a714fc200c2216eeb80e
27 DIST lttng-ust-2.8.1.tar.bz2 743271 BLAKE2B d6adac00525ab747306288dd71f27ce982dd93e4ff42b9938064ae1435ad1c0867acebe3030a33748dc9aa78b6200ba2c47631e4359a963772fc4685472d21ae SHA512 15c459620cb73ef5be8c7df2ef02663ef650555b973a3d1ed976ae38068b53a8c83143a611bcb53e91a3f211361c44cd2a331cb41dd53d28a69924f7ac44cc95
28
29 diff --git a/dev-util/lttng-ust/lttng-ust-2.11.3.ebuild b/dev-util/lttng-ust/lttng-ust-2.11.3.ebuild
30 new file mode 100644
31 index 00000000000..36218ac0453
32 --- /dev/null
33 +++ b/dev-util/lttng-ust/lttng-ust-2.11.3.ebuild
34 @@ -0,0 +1,38 @@
35 +# Copyright 1999-2021 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +inherit autotools
41 +
42 +MY_P="${P/_rc/-rc}"
43 +MY_SLOT="$(ver_cut 1-2)"
44 +
45 +DESCRIPTION="Linux Trace Toolkit - UST library"
46 +HOMEPAGE="https://lttng.org"
47 +SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0/${MY_SLOT}"
51 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
52 +IUSE="examples numa"
53 +
54 +DEPEND="
55 + dev-libs/userspace-rcu:=
56 + numa? ( sys-process/numactl )
57 + "
58 +RDEPEND="${DEPEND}"
59 +
60 +S="${WORKDIR}"/${MY_P}
61 +
62 +src_prepare() {
63 + default
64 + if ! use examples; then
65 + sed -i -e '/SUBDIRS/s:examples::' doc/Makefile.am || die
66 + fi
67 + eautoreconf
68 +}
69 +
70 +src_configure() {
71 + econf $(use_enable numa)
72 +}
73
74 diff --git a/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
75 new file mode 100644
76 index 00000000000..623e9c254e4
77 --- /dev/null
78 +++ b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
79 @@ -0,0 +1,42 @@
80 +# Copyright 1999-2021 Gentoo Authors
81 +# Distributed under the terms of the GNU General Public License v2
82 +
83 +EAPI=7
84 +
85 +inherit autotools
86 +
87 +MY_P="${P/_rc/-rc}"
88 +MY_SLOT="$(ver_cut 1-2)"
89 +
90 +DESCRIPTION="Linux Trace Toolkit - UST library"
91 +HOMEPAGE="https://lttng.org"
92 +SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2"
93 +
94 +LICENSE="GPL-2"
95 +SLOT="0/${MY_SLOT}"
96 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
97 +IUSE="examples numa"
98 +
99 +DEPEND="
100 + dev-libs/userspace-rcu:=
101 + numa? ( sys-process/numactl )"
102 +RDEPEND="${DEPEND}"
103 +
104 +S="${WORKDIR}"/${MY_P}
105 +
106 +src_prepare() {
107 + default
108 + if ! use examples; then
109 + sed -i -e '/SUBDIRS/s:examples::' doc/Makefile.am || die
110 + fi
111 + eautoreconf
112 +}
113 +
114 +src_configure() {
115 + econf $(use_enable numa)
116 +}
117 +
118 +src_install() {
119 + default
120 + find "${ED}" -name '*.la' -delete || die
121 +}