[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/files/, dev-util/lttng-tools/

2024-04-15 Thread Joonas Niilola
commit: 0d90e8ffabbb45afe3f8bb6137172265153313bd
Author: orbea  riseup  net>
AuthorDate: Tue Mar 19 00:57:54 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Apr 15 06:32:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d90e8ff

dev-util/lttng-tools: fix build with slibtool

Closes: https://bugs.gentoo.org/858095
Closes: https://bugs.gentoo.org/924437
Upstream-PR: https://github.com/lttng/lttng-tools/pull/169
Upstream-Commit: 
https://github.com/lttng/lttng-tools/commit/bb1c9fc3f89c2faffb0228c0b77e32653e018a23
Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35825
Signed-off-by: Joonas Niilola  gentoo.org>

 .../files/lttng-tools-2.13.9-slibtool.patch| 87 ++
 dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 13 +++-
 2 files changed, 99 insertions(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/files/lttng-tools-2.13.9-slibtool.patch 
b/dev-util/lttng-tools/files/lttng-tools-2.13.9-slibtool.patch
new file mode 100644
index ..634bd388b44c
--- /dev/null
+++ b/dev-util/lttng-tools/files/lttng-tools-2.13.9-slibtool.patch
@@ -0,0 +1,87 @@
+https://github.com/lttng/lttng-tools/pull/169
+https://github.com/lttng/lttng-tools/commit/bb1c9fc3f89c2faffb0228c0b77e32653e018a23
+
+From bb1c9fc3f89c2faffb0228c0b77e32653e018a23 Mon Sep 17 00:00:00 2001
+From: orbea 
+Date: Fri, 8 Mar 2024 08:17:37 -0800
+Subject: [PATCH] Fix: baddr-statedump: use $(LIBTOOL) --mode=execute
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+GNU libtool inconsistently places the compiled executable in the source
+directory or in the .libs directory where a libtool wrapper script is
+placed in the source directory.
+
+While slibtool will always place the compiled executable in the .libs
+directory and a wrapper script in the source directory.
+
+This will result with a build error when using slibtool since objcopy
+needs the executable and not the shell wrapper script, but this can be
+solved for both implementations by using $(LIBTOOL) --mode=execute on all
+commands that operate on the libtool compiled executables.
+
+Gentoo issue: https://bugs.gentoo.org/858095
+
+The GNU libtool --mode=excute is documented upstream.
+
+https://www.gnu.org/software/libtool/manual/html_node/Execute-mode.html
+https://www.gnu.org/software/libtool/manual/html_node/Debugging-executables.html
+
+And the GNU libtool behavior of when to create a wrapper script is
+documented in the 'Linking Executables' section.
+
+  "Notice that the executable, hell, was actually created in the .libs
+  subdirectory. Then, a wrapper script (or, on certain platforms, a
+  wrapper executable see Wrapper executables) was created in the current
+  directory.
+
+  Since libtool created a wrapper script, you should use libtool to
+  install it and debug it too. However, since the program does not depend
+  on any uninstalled libtool library, it is probably usable even without
+  the wrapper script."
+
+https://www.gnu.org/software/libtool/manual/html_node/Linking-executables.html
+
+And the inconsistency between GNU libtool and slibtool is documented at
+the Gentoo wiki.
+
+  "One difference between GNU libtool and slibtool is that the former will
+  conditionally place the compiled executable or a shell wrapper script in
+  the build directory, depending on whether or not the executable depends
+  on a build-local libtool library (e.g. libfoo.la). Where slibtool will
+  always place a compatible wrapper script in the build directory where
+  GNU libtool would have conditionally placed the executable. When the
+  wrapper script is created both GNU libtool and slibtool will place the
+  executable in the .libs directory within the build directory.
+  Consequently build systems, ebuilds, and other users should take care to
+  avoid scenarios like installing the wrapper script to the system instead
+  of the executable. In these cases ideally the executable would be
+  installed by the same libtool implementation that compiled it."
+
+https: 
//wiki.gentoo.org/wiki/Slibtool#Installing_or_using_binaries_created_by_libtool_manually
+Signed-off-by: orbea 
+Signed-off-by: Jérémie Galarneau 
+Change-Id: I03102ed78af835daa9b9a5836c2979a5f5d4bd8c
+---
+ tests/regression/ust/baddr-statedump/Makefile.am | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/tests/regression/ust/baddr-statedump/Makefile.am 
b/tests/regression/ust/baddr-statedump/Makefile.am
+index f8fe26395..d37dbb6dd 100644
+--- a/tests/regression/ust/baddr-statedump/Makefile.am
 b/tests/regression/ust/baddr-statedump/Makefile.am
+@@ -19,11 +19,11 @@ EXTRA_DIST = test_baddr-statedump test_baddr-statedump.py
+ 
+ # Extract debug symbols
+ prog.debug: prog
+-  $(objcopy_verbose)$(OBJCOPY) --only-keep-debug prog prog.debug
++  $(objcopy_verbose)$(LIBTOOL) --mode=execute $(OBJCOPY) 
--only-keep-debug prog prog.debug
+ 
+ # 

[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2024-03-06 Thread Andreas K. Hüttel
commit: 5805cc6a36fae4888673210de5f8e33b3cdb5001
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Mar  6 21:50:12 2024 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Mar  6 21:50:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5805cc6a

dev-util/lttng-tools: Apply musl-1.2.4 largefile workaround

Bug: https://bugs.gentoo.org/906928
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
index 1edf4a57fd84..9375115c5205 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
+inherit flag-o-matic
+
 # Please bump the following packages together:
 # dev-util/lttng-modules
 # dev-util/lttng-tools
@@ -36,6 +38,9 @@ QA_CONFIG_IMPL_DECL_SKIP=(
 )
 
 src_configure() {
+   # bug 906928
+   use elibc_musl && append-cppflags -D_LARGEFILE64_SOURCE
+
econf $(usex ust "" --without-lttng-ust)
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2024-03-06 Thread Andreas K. Hüttel
commit: 430c35316533c5d3a252a12f38d93d8d49032456
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Mar  6 21:44:54 2024 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Mar  6 21:46:23 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430c3531

dev-util/lttng-tools: drop 2.12.3, 2.12.5, 2.12.11, 2.13.7, 2.13.8

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-util/lttng-tools/Manifest   |  5 
 dev-util/lttng-tools/lttng-tools-2.12.11.ebuild | 34 ---
 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild  | 36 -
 dev-util/lttng-tools/lttng-tools-2.12.5.ebuild  | 34 ---
 dev-util/lttng-tools/lttng-tools-2.13.7.ebuild  | 34 ---
 dev-util/lttng-tools/lttng-tools-2.13.8.ebuild  | 35 
 6 files changed, 178 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index ad62b55a4f77..ab07ce3f261c 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,6 +1 @@
-DIST lttng-tools-2.12.11.tar.bz2 1587429 BLAKE2B 
9c8bc7803dad413f1c16d0e0bb25adab312734c57b591404e79d53706fe06cde96856ebe132590b60c42578368627196c1f60cc6247a8dcc6142ede69b696ae3
 SHA512 
c1ff07831508848ede2a69a4350ba6eeef2b9bea0faa9de4a3d9e8a0df81e22258d25131ccab57d1800fcac239a4bc25aa66d5d421d9e5c76d7cb6b9794ae4cd
-DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
-DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
-DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d
-DIST lttng-tools-2.13.8.tar.bz2 1905545 BLAKE2B 
59aab1ae627f6a0230fc716adb9b4722b0f0df599cd9b6b5bae4e44a22dae5d309c698fd5b84a88d1096ea27fd50fac6d53e89bb699294fd781cdbdd9d181bbd
 SHA512 
6daafb1fd458cfbaa7e19b3a8aaafa958116bb836f389febf7ac4035e5d7884d308a9fdefb4e9063329cb7d837853a79ddae0e263d3b58db1f87519bba2dcb3b
 DIST lttng-tools-2.13.9.tar.bz2 1892293 BLAKE2B 
51c4824435164196a77c8b6b3072810df83caf488c5fb692f9990b8d743ced2b07ba1e5a671149c75f3d96267f9c92f042c6c13503e03894f4c352c1733b
 SHA512 
ff7a395d9af3fc44561be24163a84ce27ddd1338f7df2805037645b98c4ad17496553f17b8f0ede7bee967d630b53000c080a91ea8e1ced25ce86b010941b94e

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
deleted file mode 100644
index b80ebb281a36..
--- a/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( >=dev-util/lttng-ust-2.12.0:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust) --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
deleted file mode 100644
index 5c8999530745..
--- a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( >=dev-util/lttng-ust-2.12.0:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust) --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name 

[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-10-09 Thread Joonas Niilola
commit: 31947e0807bbf7e34b969fb9ed205f606cd0cbf2
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Oct 10 05:34:27 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Oct 10 05:34:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31947e08

dev-util/lttng-tools: Stabilize 2.13.9 amd64, #915434

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
index d0828ba404ec..39198de46bdd 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+ust"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-10-09 Thread Joonas Niilola
commit: c817d0a009ed49c0e6fef1eec2a9007f39085920
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Oct 10 05:35:08 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Oct 10 05:35:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c817d0a0

dev-util/lttng-tools: Stabilize 2.13.9 x86, #915434

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
index 39198de46bdd..1edf4a57fd84 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+ust"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-06-26 Thread Sam James
commit: 86b49bb8babb6859c27b1d6f68a7086253c250c4
Author: Sam James  gentoo  org>
AuthorDate: Mon Jun 26 17:44:19 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jun 26 17:44:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86b49bb8

dev-util/lttng-tools: add 2.13.9

Signed-off-by: Sam James  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.13.9.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 8faf415458e0..ad62b55a4f77 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -3,3 +3,4 @@ DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af705208
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
 DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d
 DIST lttng-tools-2.13.8.tar.bz2 1905545 BLAKE2B 
59aab1ae627f6a0230fc716adb9b4722b0f0df599cd9b6b5bae4e44a22dae5d309c698fd5b84a88d1096ea27fd50fac6d53e89bb699294fd781cdbdd9d181bbd
 SHA512 
6daafb1fd458cfbaa7e19b3a8aaafa958116bb836f389febf7ac4035e5d7884d308a9fdefb4e9063329cb7d837853a79ddae0e263d3b58db1f87519bba2dcb3b
+DIST lttng-tools-2.13.9.tar.bz2 1892293 BLAKE2B 
51c4824435164196a77c8b6b3072810df83caf488c5fb692f9990b8d743ced2b07ba1e5a671149c75f3d96267f9c92f042c6c13503e03894f4c352c1733b
 SHA512 
ff7a395d9af3fc44561be24163a84ce27ddd1338f7df2805037645b98c4ad17496553f17b8f0ede7bee967d630b53000c080a91ea8e1ced25ce86b010941b94e

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
new file mode 100644
index ..d0828ba404ec
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.13.9.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please bump the following packages together:
+# dev-util/lttng-modules
+# dev-util/lttng-tools
+# dev-util/lttng-ust
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="
+   >=dev-libs/userspace-rcu-0.11.0:=
+   dev-libs/popt
+   >=dev-libs/libxml2-2.7.6
+   ust? ( >=dev-util/lttng-ust-${MY_SLOT}.0:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+QA_CONFIG_IMPL_DECL_SKIP=(
+   pthread_get_name_np # different from pthread_getname_*, not on linux
+   pthread_set_name_np # different from pthread_setname_*, not on linux
+)
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust)
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-03-20 Thread Joonas Niilola
commit: 56e1355f19aa087cbbe4213113ea2416ba6162b1
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar 20 06:34:13 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar 20 06:34:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e1355f

dev-util/lttng-tools: add missing BDEP to 2.13.8

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.8.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
index da53b8a61108..5d7ae7e0e446 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -21,6 +21,7 @@ DEPEND="dev-libs/userspace-rcu:=
ust? ( >=dev-util/lttng-ust-2.13.0:= )
 "
 RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 S="${WORKDIR}/${MY_P}"
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-03-20 Thread Joonas Niilola
commit: c8d2d4aa4e690daab0b8acc89cdd414f08586339
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar 20 06:34:51 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar 20 06:34:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d2d4aa

dev-util/lttng-tools: Stabilize 2.13.8 amd64, #901891

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
index 5d7ae7e0e446..7e432d7aaba3 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2023-03-20 Thread Joonas Niilola
commit: d903f954a29bb4946fc23209b60455ed2be33f29
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Mar 20 06:41:49 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Mar 20 06:41:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d903f954

dev-util/lttng-tools: Stabilize 2.13.8 x86, #901891

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.13.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
index 7e432d7aaba3..858c34bbaa90 100644
--- a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2022-12-27 Thread Sam James
commit: 29f35ebfcf68e1315817497f28826edfcdf834d9
Author: Igor V. Kovalenko  gmail  com>
AuthorDate: Sat Dec 24 15:08:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 27 10:21:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29f35ebf

dev-util/lttng-tools: add 2.13.8

Signed-off-by: Igor V. Kovalenko  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28786
Signed-off-by: Sam James  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.13.8.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 110ca1ba0126..8faf415458e0 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -2,3 +2,4 @@ DIST lttng-tools-2.12.11.tar.bz2 1587429 BLAKE2B 
9c8bc7803dad413f1c16d0e0bb25ada
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
 DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d
+DIST lttng-tools-2.13.8.tar.bz2 1905545 BLAKE2B 
59aab1ae627f6a0230fc716adb9b4722b0f0df599cd9b6b5bae4e44a22dae5d309c698fd5b84a88d1096ea27fd50fac6d53e89bb699294fd781cdbdd9d181bbd
 SHA512 
6daafb1fd458cfbaa7e19b3a8aaafa958116bb836f389febf7ac4035e5d7884d308a9fdefb4e9063329cb7d837853a79ddae0e263d3b58db1f87519bba2dcb3b

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
new file mode 100644
index ..da53b8a61108
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.13.8.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.13.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2022-11-05 Thread Sam James
commit: 558ce51d122a8d64bdeb66e391eb6f91c39399e2
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov  5 05:56:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov  5 06:10:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558ce51d

dev-util/lttng-tools: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

 dev-util/lttng-tools/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/lttng-tools/metadata.xml 
b/dev-util/lttng-tools/metadata.xml
index 1eb9a06b1909..70a66c71a336 100644
--- a/dev-util/lttng-tools/metadata.xml
+++ b/dev-util/lttng-tools/metadata.xml
@@ -8,4 +8,7 @@

Support LTTng-UST (Userspace Tracing)

+   
+   lttng/lttng-tools
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2022-04-26 Thread Yixun Lan
commit: 566b049528b9d7bf5f0ce55f418403f7ad5b9b64
Author: Raymond Wong  pm  me>
AuthorDate: Tue Apr 26 13:48:54 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Apr 26 22:09:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566b0495

dev-util/lttng-tools: add 2.12.11

Cloese: https://github.com/gentoo/gentoo/pull/25211
Signed-off-by: Raymond Wong  pm.me>
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest   |  1 +
 dev-util/lttng-tools/lttng-tools-2.12.11.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index fc68a0494d43..110ca1ba0126 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,3 +1,4 @@
+DIST lttng-tools-2.12.11.tar.bz2 1587429 BLAKE2B 
9c8bc7803dad413f1c16d0e0bb25adab312734c57b591404e79d53706fe06cde96856ebe132590b60c42578368627196c1f60cc6247a8dcc6142ede69b696ae3
 SHA512 
c1ff07831508848ede2a69a4350ba6eeef2b9bea0faa9de4a3d9e8a0df81e22258d25131ccab57d1800fcac239a4bc25aa66d5d421d9e5c76d7cb6b9794ae4cd
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
 DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
new file mode 100644
index ..b80ebb281a36
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.12.11.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2022-04-26 Thread Yixun Lan
commit: 604f55d7a54ac1697094bc20900d1730a72a3e37
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Apr 26 08:01:15 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Apr 26 08:01:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604f55d7

dev-util/lttng-tools: drop 2.11.6, 2.12.0, 2.13.0

Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  3 ---
 dev-util/lttng-tools/lttng-tools-2.11.6.ebuild | 36 --
 dev-util/lttng-tools/lttng-tools-2.12.0.ebuild | 36 --
 dev-util/lttng-tools/lttng-tools-2.13.0.ebuild | 34 
 4 files changed, 109 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index e2ae18419452..fc68a0494d43 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,6 +1,3 @@
-DIST lttng-tools-2.11.6.tar.bz2 1484146 BLAKE2B 
ed2f60f87ebf6d8049814e761f9493d35858745caf144132cc71759b9b37f2127d858f2882825d5357648e3c46316399a3d9430f788f2c92dc0001f2a58cc242
 SHA512 
4536e8c39b66d0a0f62543ee6b729585322ee1758507719ed60f0dfc10b95362497f49faeae4dbc8fb3a44336616a54f1c2f55a23aeecfe43c4271ffcd485094
-DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c628fe2e23fd0a82517a8d5bb15a8cc3b84965d21b2f528a20530fb6ca8213e320d0dd6f36de09b34a53863c46ee272a470
 SHA512 
87613de34141c75b7ff0eb7b4292d26eea5381a7f298130cf5e802255aa7b0e55f43268dffed71b51d1e5dcd96b92cd517e13557fe64ee121bf1b419b2935a24
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
-DIST lttng-tools-2.13.0.tar.bz2 1850423 BLAKE2B 
fbd5f2528d2dd262cbdbac5559b2cac1d7aa82adddf2118dde6b9f3956e582566406590d1646ccac9c9c496c8e07fd9f7fd7a5fdaa90f528745e2ddea8f0269b
 SHA512 
bcd824b21a6e186caba7d0cfa472b173681995c4c9680ab03d2f33c21f9e003c0ae22cea14f65e9f240ed48e3a679f940b8634a72fc5120fc2a5f47b067b6f07
 DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d

diff --git a/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild
deleted file mode 100644
index ba3e986df0bc..
--- a/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( >=dev-util/lttng-ust-2.12.0:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust) --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild
deleted file mode 100644
index be88227c25ae..
--- a/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( >=dev-util/lttng-ust-2.12.0:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust) --disable-static
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.0.ebuild
deleted file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2022-04-26 Thread Yixun Lan
commit: 8a079db8c9205a63bf3a808fe3b4e8bf782fc399
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Apr 26 07:54:08 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Apr 26 08:01:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a079db8

dev-util/lttng-tools: add 2.13.7

Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.13.7.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index f7de4cb7076d..e2ae18419452 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -3,3 +3,4 @@ DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c62
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
 DIST lttng-tools-2.13.0.tar.bz2 1850423 BLAKE2B 
fbd5f2528d2dd262cbdbac5559b2cac1d7aa82adddf2118dde6b9f3956e582566406590d1646ccac9c9c496c8e07fd9f7fd7a5fdaa90f528745e2ddea8f0269b
 SHA512 
bcd824b21a6e186caba7d0cfa472b173681995c4c9680ab03d2f33c21f9e003c0ae22cea14f65e9f240ed48e3a679f940b8634a72fc5120fc2a5f47b067b6f07
+DIST lttng-tools-2.13.7.tar.bz2 1885363 BLAKE2B 
20a48a75b53045a54e0293ff17e25cc940040f3be95917c3cd3cc5245d6afd0d58a4eb2915665eb35773cdcbd84f317398028c4b8481bc2df7f78175eaa10c27
 SHA512 
e5730cb600d39f4e5608fc14f5a211628c3eb1de043cf36fdd021c5d3d0e5e9f1d95bbde554c7ad33b5c1c817ae6a8a893f5cf52a678adf82a2f2c95565a127d

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.7.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.7.ebuild
new file mode 100644
index ..da53b8a61108
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.13.7.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.13.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2021-11-22 Thread Jakov Smolić
commit: c4235e4f23224afe3cc67e821d6630c03d239083
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Nov 22 13:57:43 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Nov 22 14:12:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4235e4f

dev-util/lttng-tools: drop 2.7.1

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-util/lttng-tools/Manifest |  1 -
 dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 05cf60a28b50..f7de4cb7076d 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -3,4 +3,3 @@ DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c62
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
 DIST lttng-tools-2.13.0.tar.bz2 1850423 BLAKE2B 
fbd5f2528d2dd262cbdbac5559b2cac1d7aa82adddf2118dde6b9f3956e582566406590d1646ccac9c9c496c8e07fd9f7fd7a5fdaa90f528745e2ddea8f0269b
 SHA512 
bcd824b21a6e186caba7d0cfa472b173681995c4c9680ab03d2f33c21f9e003c0ae22cea14f65e9f240ed48e3a679f940b8634a72fc5120fc2a5f47b067b6f07
-DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
deleted file mode 100644
index 6dea2846cbc0..
--- a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit linux-info versionator
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(get_version_component_range 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "   the session daemon. There were introduce in the 
2.6.27"
-   fi
-}
-
-src_configure() {
-   econf $(use_enable ust lttng-ust)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2021-09-26 Thread Yixun Lan
commit: ed276774561592063bc5ae74d5b29f3e1dcc493e
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Sep 24 07:39:01 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Sep 26 08:49:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed276774

dev-util/lttng-tools: version bump, 2.12.5/2.13.0

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  2 ++
 dev-util/lttng-tools/lttng-tools-2.12.5.ebuild | 34 ++
 dev-util/lttng-tools/lttng-tools-2.13.0.ebuild | 34 ++
 3 files changed, 70 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 482a0f15771..05cf60a28b5 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,4 +1,6 @@
 DIST lttng-tools-2.11.6.tar.bz2 1484146 BLAKE2B 
ed2f60f87ebf6d8049814e761f9493d35858745caf144132cc71759b9b37f2127d858f2882825d5357648e3c46316399a3d9430f788f2c92dc0001f2a58cc242
 SHA512 
4536e8c39b66d0a0f62543ee6b729585322ee1758507719ed60f0dfc10b95362497f49faeae4dbc8fb3a44336616a54f1c2f55a23aeecfe43c4271ffcd485094
 DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c628fe2e23fd0a82517a8d5bb15a8cc3b84965d21b2f528a20530fb6ca8213e320d0dd6f36de09b34a53863c46ee272a470
 SHA512 
87613de34141c75b7ff0eb7b4292d26eea5381a7f298130cf5e802255aa7b0e55f43268dffed71b51d1e5dcd96b92cd517e13557fe64ee121bf1b419b2935a24
 DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
+DIST lttng-tools-2.12.5.tar.bz2 1576936 BLAKE2B 
d5e0590ef97b899988a9c2be916fc742e025eb986fe6537528eb98ff342ad301721fa3c4142937400b1deed59e725581f693f4adae1cb85da7ee1f7287283b4f
 SHA512 
5b7295443681f3faa0409b6385f2aea07bd07b0c01f03c9a0f21d5055d73987b9bc34116e6b0e742f7fb17b5e93fc435d578e658813f1a11261b317ceabb136f
+DIST lttng-tools-2.13.0.tar.bz2 1850423 BLAKE2B 
fbd5f2528d2dd262cbdbac5559b2cac1d7aa82adddf2118dde6b9f3956e582566406590d1646ccac9c9c496c8e07fd9f7fd7a5fdaa90f528745e2ddea8f0269b
 SHA512 
bcd824b21a6e186caba7d0cfa472b173681995c4c9680ab03d2f33c21f9e003c0ae22cea14f65e9f240ed48e3a679f940b8634a72fc5120fc2a5f47b067b6f07
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.5.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.5.ebuild
new file mode 100644
index 000..9dc516b5538
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.12.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/dev-util/lttng-tools/lttng-tools-2.13.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.13.0.ebuild
new file mode 100644
index 000..9dc516b5538
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.13.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2021-09-19 Thread Sam James
commit: 6a6d9635a9645416857b2d59befd0b789c64c069
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a6d9635

dev-util/lttng-tools: Stabilize 2.12.3 x86, #763564

Signed-off-by: Sam James  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
index 10a3868eca0..5c899953074 100644
--- a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2021-09-19 Thread Sam James
commit: b07123fdce8f71349d06f12ea0f65a683b456d00
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07123fd

dev-util/lttng-tools: Stabilize 2.12.3 amd64, #763564

Signed-off-by: Sam James  gentoo.org>

 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
index ba3e986df0b..10a3868eca0 100644
--- a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2021-03-30 Thread Yixun Lan
commit: 554473b87fbc0a3bf0aa4b0338a6110f639f1728
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Mar 30 15:10:35 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Mar 30 15:11:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554473b8

dev-util/lttng-tools: version bump 2.11/12

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  2 ++
 dev-util/lttng-tools/lttng-tools-2.11.6.ebuild | 36 ++
 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild | 36 ++
 3 files changed, 74 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 33ae296a49a..482a0f15771 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,2 +1,4 @@
+DIST lttng-tools-2.11.6.tar.bz2 1484146 BLAKE2B 
ed2f60f87ebf6d8049814e761f9493d35858745caf144132cc71759b9b37f2127d858f2882825d5357648e3c46316399a3d9430f788f2c92dc0001f2a58cc242
 SHA512 
4536e8c39b66d0a0f62543ee6b729585322ee1758507719ed60f0dfc10b95362497f49faeae4dbc8fb3a44336616a54f1c2f55a23aeecfe43c4271ffcd485094
 DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c628fe2e23fd0a82517a8d5bb15a8cc3b84965d21b2f528a20530fb6ca8213e320d0dd6f36de09b34a53863c46ee272a470
 SHA512 
87613de34141c75b7ff0eb7b4292d26eea5381a7f298130cf5e802255aa7b0e55f43268dffed71b51d1e5dcd96b92cd517e13557fe64ee121bf1b419b2935a24
+DIST lttng-tools-2.12.3.tar.bz2 1550901 BLAKE2B 
0f4a5ac780e26f6ef16f4c71af7052083b4889664962712bf248cc6a7c05e8448a40b12dd9fe615e41519924e285b629e7ed535cf551581b26890a2b8fd58cad
 SHA512 
f997e94a5d6126845b914d8b80a5e1512d49799e84c6cc82903187b988da2b0f157d65d7fe8f14d01fd3b5352aa317c5305bcd6b56f81d03a85a561a18be2a0c
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild
new file mode 100644
index 000..ba3e986df0b
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.11.6.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
new file mode 100644
index 000..ba3e986df0b
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2020-12-29 Thread David Seifert
commit: d53e2d51e7fde728c5312da548d4f437e1079f64
Author: Jakov Smolic  sartura  hr>
AuthorDate: Tue Dec 29 13:37:49 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Dec 29 13:37:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d53e2d51

dev-util/lttng-tools: cleanup old versions

Closes: https://github.com/gentoo/gentoo/pull/18461
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 dev-util/lttng-tools/Manifest  |  2 --
 dev-util/lttng-tools/lttng-tools-2.10.9.ebuild | 39 --
 dev-util/lttng-tools/lttng-tools-2.11.0.ebuild | 39 --
 3 files changed, 80 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 22cd0b9a9ff..33ae296a49a 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,4 +1,2 @@
-DIST lttng-tools-2.10.9.tar.bz2 1254174 BLAKE2B 
1666aab83bbdeb48a0c5764b359760346cfd9b55ee1677eac87a5d16f00c6c9e0f0952bf84486e0cbf9052ac1b485b276e230b36097b5366040db4e3112a3086
 SHA512 
2e390eb53bfbc874afd1c0c8273f9546fbe08da79fd2c9430eee8e348c05afba34bb6fe365165bf7468b284f7d88dcc16c37803d807109042c51cac1d8c2df1a
-DIST lttng-tools-2.11.0.tar.bz2 1479411 BLAKE2B 
5abe2613c8a35b18587c75d75be8af85a37b52daa9ff36bf0126385e5f736f7084cac7815e858e48c26c1e3fe4bc9b00b8ebaf0ce339689bd9a0e177a518d51e
 SHA512 
2b183296201cc62faa1f5afef3fdb67f089996479987d9e6e52e6286301f57a1015f017cc8b743496c30500579fcabde2945db3b7879ae5bd0a6723cfbdf99fb
 DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c628fe2e23fd0a82517a8d5bb15a8cc3b84965d21b2f528a20530fb6ca8213e320d0dd6f36de09b34a53863c46ee272a470
 SHA512 
87613de34141c75b7ff0eb7b4292d26eea5381a7f298130cf5e802255aa7b0e55f43268dffed71b51d1e5dcd96b92cd517e13557fe64ee121bf1b419b2935a24
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild
deleted file mode 100644
index fb1f24e3f84..000
--- a/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "   the session daemon. There were introduce in the 
2.6.27"
-   fi
-}
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust)
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild
deleted file mode 100644
index fb1f24e3f84..000
--- a/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="https://lttng.org;
-SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "   the session daemon. There were introduce in the 
2.6.27"
-   fi
-}
-
-src_configure() {
-   econf $(usex ust "" --without-lttng-ust)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2020-12-29 Thread David Seifert
commit: 1af99288044f0d9e79befb4f5e6d1bde0db7df61
Author: Jakov Smolic  sartura  hr>
AuthorDate: Tue Dec 29 13:37:48 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Dec 29 13:37:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af99288

dev-util/lttng-tools: bump to 2.12.0

Closes: https://bugs.gentoo.org/706864
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.12.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 7e230f46309..22cd0b9a9ff 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,3 +1,4 @@
 DIST lttng-tools-2.10.9.tar.bz2 1254174 BLAKE2B 
1666aab83bbdeb48a0c5764b359760346cfd9b55ee1677eac87a5d16f00c6c9e0f0952bf84486e0cbf9052ac1b485b276e230b36097b5366040db4e3112a3086
 SHA512 
2e390eb53bfbc874afd1c0c8273f9546fbe08da79fd2c9430eee8e348c05afba34bb6fe365165bf7468b284f7d88dcc16c37803d807109042c51cac1d8c2df1a
 DIST lttng-tools-2.11.0.tar.bz2 1479411 BLAKE2B 
5abe2613c8a35b18587c75d75be8af85a37b52daa9ff36bf0126385e5f736f7084cac7815e858e48c26c1e3fe4bc9b00b8ebaf0ce339689bd9a0e177a518d51e
 SHA512 
2b183296201cc62faa1f5afef3fdb67f089996479987d9e6e52e6286301f57a1015f017cc8b743496c30500579fcabde2945db3b7879ae5bd0a6723cfbdf99fb
+DIST lttng-tools-2.12.0.tar.bz2 1544515 BLAKE2B 
642047348ef7bfe72c5ec718b4029c628fe2e23fd0a82517a8d5bb15a8cc3b84965d21b2f528a20530fb6ca8213e320d0dd6f36de09b34a53863c46ee272a470
 SHA512 
87613de34141c75b7ff0eb7b4292d26eea5381a7f298130cf5e802255aa7b0e55f43268dffed71b51d1e5dcd96b92cd517e13557fe64ee121bf1b419b2935a24
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild
new file mode 100644
index 000..be88227c25a
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.12.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="https://lttng.org;
+SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( >=dev-util/lttng-ust-2.12.0:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf $(usex ust "" --without-lttng-ust) --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2019-10-23 Thread Yixun Lan
commit: cbbabffebcc254732831444973abec6337a57249
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Oct 23 09:43:25 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Oct 23 09:43:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbabffe

dev-util/lttng-tools: drop old

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  4 ---
 dev-util/lttng-tools/lttng-tools-2.10.5.ebuild | 41 --
 dev-util/lttng-tools/lttng-tools-2.6.1.ebuild  | 39 
 dev-util/lttng-tools/lttng-tools-2.7.3.ebuild  | 39 
 dev-util/lttng-tools/lttng-tools-2.8.0.ebuild  | 39 
 5 files changed, 162 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 048724be1cd..7e230f46309 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,7 +1,3 @@
-DIST lttng-tools-2.10.5.tar.bz2 1243054 BLAKE2B 
e8f912f8051e75d7338b360574e32f0a98dcfcbaf7ba99aab5a157bfa3f28b4b163cf1ede5a4a5a6b59a8f9e6544f9fc81d6e36ed63057816a83e3122a55ed43
 SHA512 
30689be92331fb3421ecb67150dab29c182c2febd5db77113dc0439c2289cdadb645043b4a95c6da40dbf8bbc258dd775e22b908e9514fbeffc450312a5b
 DIST lttng-tools-2.10.9.tar.bz2 1254174 BLAKE2B 
1666aab83bbdeb48a0c5764b359760346cfd9b55ee1677eac87a5d16f00c6c9e0f0952bf84486e0cbf9052ac1b485b276e230b36097b5366040db4e3112a3086
 SHA512 
2e390eb53bfbc874afd1c0c8273f9546fbe08da79fd2c9430eee8e348c05afba34bb6fe365165bf7468b284f7d88dcc16c37803d807109042c51cac1d8c2df1a
 DIST lttng-tools-2.11.0.tar.bz2 1479411 BLAKE2B 
5abe2613c8a35b18587c75d75be8af85a37b52daa9ff36bf0126385e5f736f7084cac7815e858e48c26c1e3fe4bc9b00b8ebaf0ce339689bd9a0e177a518d51e
 SHA512 
2b183296201cc62faa1f5afef3fdb67f089996479987d9e6e52e6286301f57a1015f017cc8b743496c30500579fcabde2945db3b7879ae5bd0a6723cfbdf99fb
-DIST lttng-tools-2.6.1.tar.bz2 956120 BLAKE2B 
2d0b641ae11989a90f54fc9955c18c26faeda621ce44c304ca88262329c2e048a839fb24c6cf59bfb0021cb0d43d5f7fb38f5aba8c9769ac7d1f0ac0c6196671
 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
-DIST lttng-tools-2.7.3.tar.bz2 986692 BLAKE2B 
4632781abe699a4cec6c311ade314d8c1dd5264fe46b6ee14a4e982a52a6bfc738bcceb42c2d58f93052088b1c9a5cd3b024cbfa85418782e75ca25f9c7a6d0c
 SHA512 
17568232b24028757b623c63bf40fc2929e700ecafe3e759d891373fc7342458c3d26c2199fcbbde6deeb1746b6bc8e7e95b7c19bb33c40f4c97339c4c04c459
-DIST lttng-tools-2.8.0.tar.bz2 1118863 BLAKE2B 
96eb5f8fd43851ad39f0e51bd66fd7c5b7a53e52c4a50e2e22d44abd2a4407912a4b71b0eeae707502e7f0590f08038eb0fc1344e5b5119b8b5df994f0eb8cb5
 SHA512 
2a49b9f83b2a53dda653d8bf7cf35cbc67173912a38d9d52e2eb9313deb8a64ec9b5f7751055dc56cd972aaf412694088a7cc63297338448418872da5791d7a2

diff --git a/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
deleted file mode 100644
index 0f0562f2e52..000
--- a/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(ver_cut 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="http://lttng.org;
-SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu:=
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "   the session daemon. There were introduce in the 
2.6.27"
-   fi
-}
-
-src_configure() {
-   econf \
-   $(usex ust "" --without-lttng-ust) \
-   --docdir=/usr/share/doc/${PF}
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
deleted file mode 100644
index a538527aec4..000
--- a/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit linux-info versionator
-
-MY_P="${P/_rc/-rc}"
-MY_SLOT="$(get_version_component_range 1-2)"
-
-DESCRIPTION="Linux Trace Toolkit - 

[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2019-10-23 Thread Yixun Lan
commit: 42d2a48ad299fbaed792507176387f2725d6d868
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Oct 23 09:42:11 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Oct 23 09:42:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d2a48a

dev-util/lttng-tools: version bump, 2.10.9

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.10.9.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 4bc9800cdeb..048724be1cd 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,4 +1,5 @@
 DIST lttng-tools-2.10.5.tar.bz2 1243054 BLAKE2B 
e8f912f8051e75d7338b360574e32f0a98dcfcbaf7ba99aab5a157bfa3f28b4b163cf1ede5a4a5a6b59a8f9e6544f9fc81d6e36ed63057816a83e3122a55ed43
 SHA512 
30689be92331fb3421ecb67150dab29c182c2febd5db77113dc0439c2289cdadb645043b4a95c6da40dbf8bbc258dd775e22b908e9514fbeffc450312a5b
+DIST lttng-tools-2.10.9.tar.bz2 1254174 BLAKE2B 
1666aab83bbdeb48a0c5764b359760346cfd9b55ee1677eac87a5d16f00c6c9e0f0952bf84486e0cbf9052ac1b485b276e230b36097b5366040db4e3112a3086
 SHA512 
2e390eb53bfbc874afd1c0c8273f9546fbe08da79fd2c9430eee8e348c05afba34bb6fe365165bf7468b284f7d88dcc16c37803d807109042c51cac1d8c2df1a
 DIST lttng-tools-2.11.0.tar.bz2 1479411 BLAKE2B 
5abe2613c8a35b18587c75d75be8af85a37b52daa9ff36bf0126385e5f736f7084cac7815e858e48c26c1e3fe4bc9b00b8ebaf0ce339689bd9a0e177a518d51e
 SHA512 
2b183296201cc62faa1f5afef3fdb67f089996479987d9e6e52e6286301f57a1015f017cc8b743496c30500579fcabde2945db3b7879ae5bd0a6723cfbdf99fb
 DIST lttng-tools-2.6.1.tar.bz2 956120 BLAKE2B 
2d0b641ae11989a90f54fc9955c18c26faeda621ce44c304ca88262329c2e048a839fb24c6cf59bfb0021cb0d43d5f7fb38f5aba8c9769ac7d1f0ac0c6196671
 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d

diff --git a/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild
new file mode 100644
index 000..671fae56339
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.10.9.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf \
+   $(usex ust "" --without-lttng-ust) \
+   --docdir=/usr/share/doc/${PF}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2019-10-22 Thread Yixun Lan
commit: d734919e61ef5f712a80fbe78e2889c105f9f915
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Oct 22 09:54:11 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Oct 22 09:54:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d734919e

dev-util/lttng-tools: version bump, 2.11.0

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.11.0.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 52eee5a0a9c..4bc9800cdeb 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,4 +1,5 @@
 DIST lttng-tools-2.10.5.tar.bz2 1243054 BLAKE2B 
e8f912f8051e75d7338b360574e32f0a98dcfcbaf7ba99aab5a157bfa3f28b4b163cf1ede5a4a5a6b59a8f9e6544f9fc81d6e36ed63057816a83e3122a55ed43
 SHA512 
30689be92331fb3421ecb67150dab29c182c2febd5db77113dc0439c2289cdadb645043b4a95c6da40dbf8bbc258dd775e22b908e9514fbeffc450312a5b
+DIST lttng-tools-2.11.0.tar.bz2 1479411 BLAKE2B 
5abe2613c8a35b18587c75d75be8af85a37b52daa9ff36bf0126385e5f736f7084cac7815e858e48c26c1e3fe4bc9b00b8ebaf0ce339689bd9a0e177a518d51e
 SHA512 
2b183296201cc62faa1f5afef3fdb67f089996479987d9e6e52e6286301f57a1015f017cc8b743496c30500579fcabde2945db3b7879ae5bd0a6723cfbdf99fb
 DIST lttng-tools-2.6.1.tar.bz2 956120 BLAKE2B 
2d0b641ae11989a90f54fc9955c18c26faeda621ce44c304ca88262329c2e048a839fb24c6cf59bfb0021cb0d43d5f7fb38f5aba8c9769ac7d1f0ac0c6196671
 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
 DIST lttng-tools-2.7.3.tar.bz2 986692 BLAKE2B 
4632781abe699a4cec6c311ade314d8c1dd5264fe46b6ee14a4e982a52a6bfc738bcceb42c2d58f93052088b1c9a5cd3b024cbfa85418782e75ca25f9c7a6d0c
 SHA512 
17568232b24028757b623c63bf40fc2929e700ecafe3e759d891373fc7342458c3d26c2199fcbbde6deeb1746b6bc8e7e95b7c19bb33c40f4c97339c4c04c459

diff --git a/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild
new file mode 100644
index 000..671fae56339
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.11.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu:=
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf \
+   $(usex ust "" --without-lttng-ust) \
+   --docdir=/usr/share/doc/${PF}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2018-10-26 Thread Sven Wegener
commit: bfc05e996ddaf99358dc377cc318aa7c8ab9af7f
Author: Sven Wegener  gentoo  org>
AuthorDate: Fri Oct 26 18:56:28 2018 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Oct 26 18:56:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc05e99

dev-util/lttng-tools: Add sub-slot dependency for userspace-rcu

Signed-off-by: Sven Wegener  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 dev-util/lttng-tools/lttng-tools-2.10.5.ebuild | 4 ++--
 dev-util/lttng-tools/lttng-tools-2.6.1.ebuild  | 4 ++--
 dev-util/lttng-tools/lttng-tools-2.7.1.ebuild  | 4 ++--
 dev-util/lttng-tools/lttng-tools-2.7.3.ebuild  | 4 ++--
 dev-util/lttng-tools/lttng-tools-2.8.0.ebuild  | 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
index d42ffde22d8..0f0562f2e52 100644
--- a/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ SLOT="0/${MY_SLOT}"
 KEYWORDS="~amd64 ~x86"
 IUSE="+ust"
 
-DEPEND="dev-libs/userspace-rcu
+DEPEND="dev-libs/userspace-rcu:=
dev-libs/popt
dev-libs/libxml2
ust? ( dev-util/lttng-ust:= )

diff --git a/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
index 9f1c5e6a680..a538527aec4 100644
--- a/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ SLOT="0/${MY_SLOT}"
 KEYWORDS="~amd64 ~x86"
 IUSE="+ust"
 
-DEPEND="dev-libs/userspace-rcu
+DEPEND="dev-libs/userspace-rcu:=
dev-libs/popt
dev-libs/libxml2
ust? ( dev-util/lttng-ust:= )

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
index 37b1fe1b01d..8186e365564 100644
--- a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ SLOT="0/${MY_SLOT}"
 KEYWORDS="amd64 x86"
 IUSE="+ust"
 
-DEPEND="dev-libs/userspace-rcu
+DEPEND="dev-libs/userspace-rcu:=
dev-libs/popt
dev-libs/libxml2
ust? ( dev-util/lttng-ust:= )

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild
index 9f1c5e6a680..a538527aec4 100644
--- a/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ SLOT="0/${MY_SLOT}"
 KEYWORDS="~amd64 ~x86"
 IUSE="+ust"
 
-DEPEND="dev-libs/userspace-rcu
+DEPEND="dev-libs/userspace-rcu:=
dev-libs/popt
dev-libs/libxml2
ust? ( dev-util/lttng-ust:= )

diff --git a/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild
index 9f1c5e6a680..a538527aec4 100644
--- a/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ SLOT="0/${MY_SLOT}"
 KEYWORDS="~amd64 ~x86"
 IUSE="+ust"
 
-DEPEND="dev-libs/userspace-rcu
+DEPEND="dev-libs/userspace-rcu:=
dev-libs/popt
dev-libs/libxml2
ust? ( dev-util/lttng-ust:= )



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2018-08-25 Thread Michael Weber
commit: 0adfc6b25db8ac2b521f988e2db4004bd212b1ca
Author: Michael Weber  gentoo  org>
AuthorDate: Sat Aug 25 17:27:13 2018 +
Commit: Michael Weber  gentoo  org>
CommitDate: Sat Aug 25 17:37:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0adfc6b2

dev-util/lttng-tools: Version bump

- Fix docdir to ${PF}
- Fix USE=ust unkown configure option

Closes: https://bugs.gentoo.org/663826
Package-Manager: Portage-2.3.45, Repoman-2.3.10

 dev-util/lttng-tools/Manifest  |  1 +
 dev-util/lttng-tools/lttng-tools-2.10.5.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 23168e8e82d..52eee5a0a9c 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,3 +1,4 @@
+DIST lttng-tools-2.10.5.tar.bz2 1243054 BLAKE2B 
e8f912f8051e75d7338b360574e32f0a98dcfcbaf7ba99aab5a157bfa3f28b4b163cf1ede5a4a5a6b59a8f9e6544f9fc81d6e36ed63057816a83e3122a55ed43
 SHA512 
30689be92331fb3421ecb67150dab29c182c2febd5db77113dc0439c2289cdadb645043b4a95c6da40dbf8bbc258dd775e22b908e9514fbeffc450312a5b
 DIST lttng-tools-2.6.1.tar.bz2 956120 BLAKE2B 
2d0b641ae11989a90f54fc9955c18c26faeda621ce44c304ca88262329c2e048a839fb24c6cf59bfb0021cb0d43d5f7fb38f5aba8c9769ac7d1f0ac0c6196671
 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 DIST lttng-tools-2.7.1.tar.bz2 984351 BLAKE2B 
51d61857c56c3bffcaec80d8b57c18c96c3125d56f7feaa70e3ad44d108987a663734c17cf2553b1979061ae400c1e5bd0a30de4bf3bf5af28846403a3e055c1
 SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
 DIST lttng-tools-2.7.3.tar.bz2 986692 BLAKE2B 
4632781abe699a4cec6c311ade314d8c1dd5264fe46b6ee14a4e982a52a6bfc738bcceb42c2d58f93052088b1c9a5cd3b024cbfa85418782e75ca25f9c7a6d0c
 SHA512 
17568232b24028757b623c63bf40fc2929e700ecafe3e759d891373fc7342458c3d26c2199fcbbde6deeb1746b6bc8e7e95b7c19bb33c40f4c97339c4c04c459

diff --git a/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
new file mode 100644
index 000..d42ffde22d8
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.10.5.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(ver_cut 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf \
+   $(usex ust "" --without-lttng-ust) \
+   --docdir=/usr/share/doc/${PF}
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2016-06-30 Thread Yixun Lan
commit: d032c8126f0b9252214967f35ddbd7333d5587a5
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Jul  1 02:41:18 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Jul  1 02:42:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d032c812

dev-util/lttng-tools: amd64 x86 stable

Gentoo-Bug: 586128

Package-Manager: portage-2.3.0_rc1

 dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
index 7f5af9a..939dea8 100644
--- a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2016-06-21 Thread Yixun Lan
commit: 10a2ee6b3580e28884aab6469e5bf3e5e2df121e
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue Jun 21 12:40:34 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue Jun 21 12:40:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a2ee6b

dev-util/lttng-tools: version bump 2.7.3, 2.8.0

Package-Manager: portage-2.3.0_rc1

 dev-util/lttng-tools/Manifest |  2 ++
 dev-util/lttng-tools/lttng-tools-2.7.3.ebuild | 40 +++
 dev-util/lttng-tools/lttng-tools-2.8.0.ebuild | 40 +++
 3 files changed, 82 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index cd63a29..1972973 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,2 +1,4 @@
 DIST lttng-tools-2.6.1.tar.bz2 956120 SHA256 
70ec8e24f8ea12f593d77c6bdc5348e4124dcb4897e8c0eb6fba25048fd31137 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 WHIRLPOOL 
22596b4572ffddd025c89c51eb234096105526614e2c5616bdc0f0ee97c83aab03852cd02af6890c2cb590b6c003dcd8a02ab87c849d792763624442f45c3b00
 DIST lttng-tools-2.7.1.tar.bz2 984351 SHA256 
0c799fb21dfa42475feaa1507ded934608b2e531039b46c40e944a5b81c7b21c SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
 WHIRLPOOL 
cfe0db0679e12dfe0061bfaeb5b8b337900a1b1e84cf1aaafec230638e67744cc0873f2959456f3cc1c91e6c9c9458f64a10c2fe835e34af4bf2778b956b
+DIST lttng-tools-2.7.3.tar.bz2 986692 SHA256 
e477997036e1337a6fa97dd11109d28a64d8c99d4f4af3cfa698f68a5db74a61 SHA512 
17568232b24028757b623c63bf40fc2929e700ecafe3e759d891373fc7342458c3d26c2199fcbbde6deeb1746b6bc8e7e95b7c19bb33c40f4c97339c4c04c459
 WHIRLPOOL 
5aa6c840517a9bd5da7881410551dc45a47f8ba48d1c8bf1544a75de2598dc9afb1fae3af684b97e52a7ba463ef1d188724c9cf15fe56bc9fe03ce780083549d
+DIST lttng-tools-2.8.0.tar.bz2 1118863 SHA256 
2651a6c30bf26ebbdc218fdf75772b834ee42cccf0d6e14d7dac4c575fd02bd5 SHA512 
2a49b9f83b2a53dda653d8bf7cf35cbc67173912a38d9d52e2eb9313deb8a64ec9b5f7751055dc56cd972aaf412694088a7cc63297338448418872da5791d7a2
 WHIRLPOOL 
4aec0419dc8bb74502ec6b952398d082b0ec0a9abd5ab76ad6551b01b64b63949dfbb39ac015de944512200d65bd60d3992c31005f8575425bd9eeef208e15ee

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild
new file mode 100644
index 000..7f5af9a
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.7.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-info versionator
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(get_version_component_range 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf $(use_enable ust lttng-ust)
+}

diff --git a/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild
new file mode 100644
index 000..7f5af9a
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.8.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-info versionator
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(get_version_component_range 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf $(use_enable ust lttng-ust)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2016-02-17 Thread Yixun Lan
commit: 1c9034e30acdfc4cfa9da6eb7012ce5bbb1b5e22
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Feb 18 07:42:13 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Feb 18 07:43:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c9034e3

dev-util/lttng-tools: drop old

Package-Manager: portage-2.2.27

 dev-util/lttng-tools/Manifest |  3 --
 dev-util/lttng-tools/lttng-tools-2.5.0.ebuild | 38 ---
 dev-util/lttng-tools/lttng-tools-2.5.2.ebuild | 38 ---
 dev-util/lttng-tools/lttng-tools-2.6.0_rc3.ebuild | 38 ---
 4 files changed, 117 deletions(-)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index 5d84612..cd63a29 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,5 +1,2 @@
-DIST lttng-tools-2.5.0.tar.bz2 867879 SHA256 
dad8b8f9d7209dcf91b2bf6ec34a0b31d1cf3c6a81698492a6e9cff2d11e1ca7 SHA512 
91ccdcd2f02999c97bb218147aab28a4e8c5e6b4813e97c690da965f8f54c312fc1e0487a200558e2101938096f2ba3e22f09fbbcd6b7abcdd800215f328dfd5
 WHIRLPOOL 
d9af3d5c4267acaadb5296db42322e7a475e1366f4ff7f83b3dcfe7fa5507261eb938920c2bdc95395eff528a1022cee33665f1781a2172958b4e57d96ab764c
-DIST lttng-tools-2.5.2.tar.bz2 876344 SHA256 
1f52d342fb5b56a6675748f0b8e8557ec7c4e90732c3d8f5732bd10b920b233d SHA512 
c556b54d1b571f9f5e3b95b729536ada179d899227b6fd0f0fb3482572ca775d4d8212aab4782d6048587df225846d90ba947730e1ca0101f4c54de0819f421d
 WHIRLPOOL 
e0552e68a2c3b4c50cefafd600c1dd6e5e586e16eb1c64d5b0b6749e197a754a982f2e8a3915ab5f76f92295cb4bcb9a20266a32a178bfbc4adc4c14a3ec3206
-DIST lttng-tools-2.6.0-rc3.tar.bz2 913287 SHA256 
c11d6158d8865b6329d9e1eabc938fc81f33b18634d7c9a2a27a82cea1c63f2d SHA512 
db40ee1fe0ec7d93a7e35a742f945cbb89399f56c406f276512e5f9a44907ce0dd195c5f6d763adb13015c8beef74e09019ca3535d7be619dd072e5cf5650dab
 WHIRLPOOL 
aa331e76cd4f9b035a50a2b65778cf602f9c7f34d318338d2ad20baa95cb798a9077518966fc4a14b5e288be21246ec9ac403c2fca2b37e277e26d0091bb0e48
 DIST lttng-tools-2.6.1.tar.bz2 956120 SHA256 
70ec8e24f8ea12f593d77c6bdc5348e4124dcb4897e8c0eb6fba25048fd31137 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 WHIRLPOOL 
22596b4572ffddd025c89c51eb234096105526614e2c5616bdc0f0ee97c83aab03852cd02af6890c2cb590b6c003dcd8a02ab87c849d792763624442f45c3b00
 DIST lttng-tools-2.7.1.tar.bz2 984351 SHA256 
0c799fb21dfa42475feaa1507ded934608b2e531039b46c40e944a5b81c7b21c SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
 WHIRLPOOL 
cfe0db0679e12dfe0061bfaeb5b8b337900a1b1e84cf1aaafec230638e67744cc0873f2959456f3cc1c91e6c9c9458f64a10c2fe835e34af4bf2778b956b

diff --git a/dev-util/lttng-tools/lttng-tools-2.5.0.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.5.0.ebuild
deleted file mode 100644
index b2fdfcd..000
--- a/dev-util/lttng-tools/lttng-tools-2.5.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="http://lttng.org;
-SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "   the session daemon. There were introduce in the 
2.6.27"
-   fi
-}
-
-src_configure() {
-   econf $(use_enable ust lttng-ust)
-}

diff --git a/dev-util/lttng-tools/lttng-tools-2.5.2.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.5.2.ebuild
deleted file mode 100644
index b2fdfcd..000
--- a/dev-util/lttng-tools/lttng-tools-2.5.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit linux-info
-
-MY_P="${P/_rc/-rc}"
-DESCRIPTION="Linux Trace Toolkit - next generation"
-HOMEPAGE="http://lttng.org;
-SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ust"
-
-DEPEND="dev-libs/userspace-rcu
-   dev-libs/popt
-   dev-libs/libxml2
-   ust? ( dev-util/lttng-ust )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if kernel_is -lt 2 6 27; then
-   ewarn "${PN} require Linux kernel >= 2.6.27"
-   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
-   ewarn "  

[gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/

2016-02-17 Thread Yixun Lan
commit: f049ef9cda34f1734d7482b50fee6f86b8cf83a7
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Feb 18 07:34:41 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Feb 18 07:43:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f049ef9c

dev-util/lttng-tools: version bump

Package-Manager: portage-2.2.27

 dev-util/lttng-tools/Manifest |  2 ++
 dev-util/lttng-tools/lttng-tools-2.6.1.ebuild | 40 +++
 dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | 40 +++
 3 files changed, 82 insertions(+)

diff --git a/dev-util/lttng-tools/Manifest b/dev-util/lttng-tools/Manifest
index df1c1c0..5d84612 100644
--- a/dev-util/lttng-tools/Manifest
+++ b/dev-util/lttng-tools/Manifest
@@ -1,3 +1,5 @@
 DIST lttng-tools-2.5.0.tar.bz2 867879 SHA256 
dad8b8f9d7209dcf91b2bf6ec34a0b31d1cf3c6a81698492a6e9cff2d11e1ca7 SHA512 
91ccdcd2f02999c97bb218147aab28a4e8c5e6b4813e97c690da965f8f54c312fc1e0487a200558e2101938096f2ba3e22f09fbbcd6b7abcdd800215f328dfd5
 WHIRLPOOL 
d9af3d5c4267acaadb5296db42322e7a475e1366f4ff7f83b3dcfe7fa5507261eb938920c2bdc95395eff528a1022cee33665f1781a2172958b4e57d96ab764c
 DIST lttng-tools-2.5.2.tar.bz2 876344 SHA256 
1f52d342fb5b56a6675748f0b8e8557ec7c4e90732c3d8f5732bd10b920b233d SHA512 
c556b54d1b571f9f5e3b95b729536ada179d899227b6fd0f0fb3482572ca775d4d8212aab4782d6048587df225846d90ba947730e1ca0101f4c54de0819f421d
 WHIRLPOOL 
e0552e68a2c3b4c50cefafd600c1dd6e5e586e16eb1c64d5b0b6749e197a754a982f2e8a3915ab5f76f92295cb4bcb9a20266a32a178bfbc4adc4c14a3ec3206
 DIST lttng-tools-2.6.0-rc3.tar.bz2 913287 SHA256 
c11d6158d8865b6329d9e1eabc938fc81f33b18634d7c9a2a27a82cea1c63f2d SHA512 
db40ee1fe0ec7d93a7e35a742f945cbb89399f56c406f276512e5f9a44907ce0dd195c5f6d763adb13015c8beef74e09019ca3535d7be619dd072e5cf5650dab
 WHIRLPOOL 
aa331e76cd4f9b035a50a2b65778cf602f9c7f34d318338d2ad20baa95cb798a9077518966fc4a14b5e288be21246ec9ac403c2fca2b37e277e26d0091bb0e48
+DIST lttng-tools-2.6.1.tar.bz2 956120 SHA256 
70ec8e24f8ea12f593d77c6bdc5348e4124dcb4897e8c0eb6fba25048fd31137 SHA512 
7b2de0a42975e3c8ced67ed877417684892322c477a35a310c13ddbf84fcf125ee87156bae56b802eacec7757a927388d764e917ce8da8e57bfd33fdae3da469
 WHIRLPOOL 
22596b4572ffddd025c89c51eb234096105526614e2c5616bdc0f0ee97c83aab03852cd02af6890c2cb590b6c003dcd8a02ab87c849d792763624442f45c3b00
+DIST lttng-tools-2.7.1.tar.bz2 984351 SHA256 
0c799fb21dfa42475feaa1507ded934608b2e531039b46c40e944a5b81c7b21c SHA512 
b0cafa5b74182a077232dbe2b73ed4e2267a921a62163367f0e7e14463e176d4538fc6ec27b8737f55fc417734677e5d22efc65685f885fa5f892f7900ee0e2d
 WHIRLPOOL 
cfe0db0679e12dfe0061bfaeb5b8b337900a1b1e84cf1aaafec230638e67744cc0873f2959456f3cc1c91e6c9c9458f64a10c2fe835e34af4bf2778b956b

diff --git a/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
new file mode 100644
index 000..7f5af9a
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.6.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-info versionator
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(get_version_component_range 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and SOCK_CLOEXEC are needed 
to run"
+   ewarn "   the session daemon. There were introduce in the 
2.6.27"
+   fi
+}
+
+src_configure() {
+   econf $(use_enable ust lttng-ust)
+}

diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
new file mode 100644
index 000..7f5af9a
--- /dev/null
+++ b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-info versionator
+
+MY_P="${P/_rc/-rc}"
+MY_SLOT="$(get_version_component_range 1-2)"
+
+DESCRIPTION="Linux Trace Toolkit - next generation"
+HOMEPAGE="http://lttng.org;
+SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0/${MY_SLOT}"
+KEYWORDS="~amd64 ~x86"
+IUSE="+ust"
+
+DEPEND="dev-libs/userspace-rcu
+   dev-libs/popt
+   dev-libs/libxml2
+   ust? ( dev-util/lttng-ust:= )
+"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if kernel_is -lt 2 6 27; then
+   ewarn "${PN} require Linux kernel >= 2.6.27"
+   ewarn "   pipe2(), epoll_create1() and