public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Yixun Lan" <dlan@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/
Date: Tue, 21 Jun 2016 12:43:57 +0000 (UTC)	[thread overview]
Message-ID: <1466512834.10a2ee6b3580e28884aab6469e5bf3e5e2df121e.dlan@gentoo> (raw)

commit:     10a2ee6b3580e28884aab6469e5bf3e5e2df121e
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 21 12:40:34 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Jun 21 12:40:34 2016 +0000
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 cfe0db0679e128888dfe0061bfaeb5b8b337900a1b1e84cf1aaafec230638e67744cc0873f2959456f3cc1c91e6c9c9458f64a10c2fe835e34af4bf2778b956b
+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 0000000..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 0000000..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)
+}


             reply	other threads:[~2016-06-21 12:44 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-21 12:43 Yixun Lan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-27 20:23 [gentoo-commits] repo/gentoo:master commit in: dev-util/lttng-tools/ Florian Schmaus
2024-08-27 12:04 Florian Schmaus
2024-03-06 21:50 Andreas K. Hüttel
2024-03-06 21:46 Andreas K. Hüttel
2023-10-10  5:35 Joonas Niilola
2023-10-10  5:35 Joonas Niilola
2023-06-26 17:45 Sam James
2023-03-20  6:42 Joonas Niilola
2023-03-20  6:42 Joonas Niilola
2023-03-20  6:42 Joonas Niilola
2022-12-27 10:23 Sam James
2022-11-05  6:27 Sam James
2022-04-26 22:10 Yixun Lan
2022-04-26  8:06 Yixun Lan
2022-04-26  8:06 Yixun Lan
2021-11-22 14:12 Jakov Smolić
2021-09-26  8:50 Yixun Lan
2021-09-19 21:53 Sam James
2021-09-19 21:53 Sam James
2021-03-30 15:12 Yixun Lan
2020-12-29 13:38 David Seifert
2020-12-29 13:38 David Seifert
2019-10-23  9:47 Yixun Lan
2019-10-23  9:47 Yixun Lan
2019-10-22  9:58 Yixun Lan
2018-10-26 18:57 Sven Wegener
2018-08-25 17:38 Michael Weber
2016-07-01  2:44 Yixun Lan
2016-02-18  7:44 Yixun Lan
2016-02-18  7:44 Yixun Lan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1466512834.10a2ee6b3580e28884aab6469e5bf3e5e2df121e.dlan@gentoo \
    --to=dlan@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox