public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/musl:master commit in: dev-util/strace/
@ 2016-04-03  9:15 Anthony G. Basile
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile @ 2016-04-03  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     0527f42381821c3b999eb8ee84c7148a80e0ac7d
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  3 09:21:56 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Apr  3 09:21:56 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=0527f423

dev-util/strace: prepare 4.11 for musl

Package-Manager: portage-2.2.26

 dev-util/strace/Manifest               |  3 ++
 dev-util/strace/metadata.xml           | 19 +++++++++++
 dev-util/strace/strace-4.11-r99.ebuild | 58 ++++++++++++++++++++++++++++++++++
 3 files changed, 80 insertions(+)

diff --git a/dev-util/strace/Manifest b/dev-util/strace/Manifest
new file mode 100644
index 0000000..83d6db1
--- /dev/null
+++ b/dev-util/strace/Manifest
@@ -0,0 +1,3 @@
+DIST strace-4.11.tar.xz 679924 SHA256 e86a5f6cd8f941f67f3e4b28f4e60f3d9185c951cf266404533210a2e5cd8152 SHA512 e1e07ed427f504f53bcd117b61bb96a780b0f531010856ed157e4d8c2090371bf320ab59a02b88e67bf2afd443fba67e12f90e53afeab795188c89c6496daecd WHIRLPOOL eee2ae13670dc6f52c45e8275e54655216bd63f1bba2b056a31cb2ee1431f3f15060112a4807eb552a36429bee5d358a5ac3290d25f8875ffd818bb6fcb21a2f
+EBUILD strace-4.11-r99.ebuild 1533 SHA256 095e6eeb5f030a06458781f42f856d4188f995051df3886fd79c9386388df481 SHA512 02e867ee26a0f5b5b85dfb32d9166549b81b9332f52b3b6dc6ae3ff51aed5d5fe39ee91cadc090f06178f45de5390cf0a60a1ed3446cab2e591bb40e5653e991 WHIRLPOOL b24c5a5d32d397848ac9e39d7f387fbd6df5365c6117c60269a49886394a798d9aa27b21956ab7cf7745c418d1370e7bbd5054bdbbac292620fce1d93a9c6edd
+MISC metadata.xml 593 SHA256 e109b90d149d7f0a92316f83f9695c40f2d702625c274b3a9c48bfab2b38dd53 SHA512 67300cfcaba830a47e49cd327bf2d8490b084b016a321fd6e19e52d8dc28968395b3ffc114675a7d4dc723a9ddd7b57c3ede10207a226d60a2225f88aceb59e4 WHIRLPOOL 1af581a8525b849b93b4e2f1c7106fb4805c61818d374e451b5cdf88d7e0d87a41e5175d08e789daab6daf4832ed4b055e9b7de4ad7516220c9da0c203bdc910

diff --git a/dev-util/strace/metadata.xml b/dev-util/strace/metadata.xml
new file mode 100644
index 0000000..869980f
--- /dev/null
+++ b/dev-util/strace/metadata.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>base-system@gentoo.org</email>
+    <name>Gentoo Base System</name>
+  </maintainer>
+  <use>
+    <flag name="aio">
+      Enable <pkg>dev-libs/libaio</pkg> support for tracing Asynchronous I/O operations
+    </flag>
+    <flag name="unwind">
+      Enable stack backtraces (-k flag) via <pkg>sys-libs/libunwind</pkg>
+    </flag>
+  </use>
+  <upstream>
+    <remote-id type="sourceforge">strace</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-util/strace/strace-4.11-r99.ebuild b/dev-util/strace/strace-4.11-r99.ebuild
new file mode 100644
index 0000000..b99f823
--- /dev/null
+++ b/dev-util/strace/strace-4.11-r99.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit flag-o-matic eutils
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="git://strace.git.sourceforge.net/gitroot/strace/strace"
+	inherit git-2 autotools
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
+fi
+
+DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
+HOMEPAGE="http://sourceforge.net/projects/strace/"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="aio perl static unwind"
+
+LIB_DEPEND="unwind? ( sys-libs/libunwind[static-libs(+)] )"
+# strace only uses the header from libaio to decode structs
+DEPEND="static? ( ${LIB_DEPEND} )
+	aio? ( >=dev-libs/libaio-0.3.106 )
+	sys-kernel/linux-headers"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+	perl? ( dev-lang/perl )"
+
+src_prepare() {
+	if epatch_user || [[ ! -e configure ]] ; then
+		# git generation
+		./xlat/gen.sh
+		eautoreconf
+		[[ ! -e CREDITS ]] && cp CREDITS{.in,}
+	fi
+
+	filter-lfs-flags # configure handles this sanely
+	use static && append-ldflags -static
+
+	export ac_cv_header_libaio_h=$(usex aio)
+	export ac_cv_header_stdc=no
+
+	# Stub out the -k test since it's known to be flaky. #545812
+	sed -i '1iexit 77' tests*/strace-k.test || die
+}
+
+src_configure() {
+	econf $(use_with unwind libunwind)
+}
+
+src_install() {
+	default
+	use perl || rm "${ED}"/usr/bin/strace-graph
+	dodoc CREDITS
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/musl:master commit in: dev-util/strace/
@ 2016-04-03  9:18 Anthony G. Basile
  0 siblings, 0 replies; 4+ messages in thread
From: Anthony G. Basile @ 2016-04-03  9:18 UTC (permalink / raw
  To: gentoo-commits

commit:     9ff7892ba6659212c0b5aac386ea06559599073f
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Apr  3 09:23:45 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Apr  3 09:25:03 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=9ff7892b

dev-util/strace: stable on amd64

Package-Manager: portage-2.2.26

 dev-util/strace/Manifest               | 2 +-
 dev-util/strace/strace-4.11-r99.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/strace/Manifest b/dev-util/strace/Manifest
index 83d6db1..ca018d8 100644
--- a/dev-util/strace/Manifest
+++ b/dev-util/strace/Manifest
@@ -1,3 +1,3 @@
 DIST strace-4.11.tar.xz 679924 SHA256 e86a5f6cd8f941f67f3e4b28f4e60f3d9185c951cf266404533210a2e5cd8152 SHA512 e1e07ed427f504f53bcd117b61bb96a780b0f531010856ed157e4d8c2090371bf320ab59a02b88e67bf2afd443fba67e12f90e53afeab795188c89c6496daecd WHIRLPOOL eee2ae13670dc6f52c45e8275e54655216bd63f1bba2b056a31cb2ee1431f3f15060112a4807eb552a36429bee5d358a5ac3290d25f8875ffd818bb6fcb21a2f
-EBUILD strace-4.11-r99.ebuild 1533 SHA256 095e6eeb5f030a06458781f42f856d4188f995051df3886fd79c9386388df481 SHA512 02e867ee26a0f5b5b85dfb32d9166549b81b9332f52b3b6dc6ae3ff51aed5d5fe39ee91cadc090f06178f45de5390cf0a60a1ed3446cab2e591bb40e5653e991 WHIRLPOOL b24c5a5d32d397848ac9e39d7f387fbd6df5365c6117c60269a49886394a798d9aa27b21956ab7cf7745c418d1370e7bbd5054bdbbac292620fce1d93a9c6edd
+EBUILD strace-4.11-r99.ebuild 1429 SHA256 6cf6c6334dfd175471ff430a3c68d302e576adf9052830171454e36d6ef6ad2f SHA512 0caca3d6e31726b26092bebe765d71f69dc550367477158339b9f3d9c00c1979fb02c79ceb13b6f4933992233de524e3f069202b8baa4fc15b20f098f59b949b WHIRLPOOL 901db0e1c1740a9cd5c986ea0bd15a05d0cd167d4dcdf99aa107994203cd540b8de7ccd8a3958690e59c99c9d076d511816eef769dc2517ff24a02b946d10014
 MISC metadata.xml 593 SHA256 e109b90d149d7f0a92316f83f9695c40f2d702625c274b3a9c48bfab2b38dd53 SHA512 67300cfcaba830a47e49cd327bf2d8490b084b016a321fd6e19e52d8dc28968395b3ffc114675a7d4dc723a9ddd7b57c3ede10207a226d60a2225f88aceb59e4 WHIRLPOOL 1af581a8525b849b93b4e2f1c7106fb4805c61818d374e451b5cdf88d7e0d87a41e5175d08e789daab6daf4832ed4b055e9b7de4ad7516220c9da0c203bdc910

diff --git a/dev-util/strace/strace-4.11-r99.ebuild b/dev-util/strace/strace-4.11-r99.ebuild
index b99f823..87e5477 100644
--- a/dev-util/strace/strace-4.11-r99.ebuild
+++ b/dev-util/strace/strace-4.11-r99.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ if [[ ${PV} == "9999" ]] ; then
 	inherit git-2 autotools
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
+	KEYWORDS="amd64 ~arm ~mips ~ppc ~x86"
 fi
 
 DESCRIPTION="A useful diagnostic, instructional, and debugging tool"


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/musl:master commit in: dev-util/strace/
@ 2016-12-05  5:46 Aric Belsito
  0 siblings, 0 replies; 4+ messages in thread
From: Aric Belsito @ 2016-12-05  5:46 UTC (permalink / raw
  To: gentoo-commits

commit:     8f518cf1cba4e2a9a6b3daeb5da00a5d4d36dd40
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Mon Dec  5 05:41:28 2016 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Mon Dec  5 05:41:28 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=8f518cf1

dev-util/strace: Sync with upstream

Drop r99 suffix

 dev-util/strace/Manifest                                      |  2 +-
 .../strace/{strace-4.11-r99.ebuild => strace-4.11.ebuild}     | 11 ++++++-----
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-util/strace/Manifest b/dev-util/strace/Manifest
index ca018d8..c432910 100644
--- a/dev-util/strace/Manifest
+++ b/dev-util/strace/Manifest
@@ -1,3 +1,3 @@
 DIST strace-4.11.tar.xz 679924 SHA256 e86a5f6cd8f941f67f3e4b28f4e60f3d9185c951cf266404533210a2e5cd8152 SHA512 e1e07ed427f504f53bcd117b61bb96a780b0f531010856ed157e4d8c2090371bf320ab59a02b88e67bf2afd443fba67e12f90e53afeab795188c89c6496daecd WHIRLPOOL eee2ae13670dc6f52c45e8275e54655216bd63f1bba2b056a31cb2ee1431f3f15060112a4807eb552a36429bee5d358a5ac3290d25f8875ffd818bb6fcb21a2f
-EBUILD strace-4.11-r99.ebuild 1429 SHA256 6cf6c6334dfd175471ff430a3c68d302e576adf9052830171454e36d6ef6ad2f SHA512 0caca3d6e31726b26092bebe765d71f69dc550367477158339b9f3d9c00c1979fb02c79ceb13b6f4933992233de524e3f069202b8baa4fc15b20f098f59b949b WHIRLPOOL 901db0e1c1740a9cd5c986ea0bd15a05d0cd167d4dcdf99aa107994203cd540b8de7ccd8a3958690e59c99c9d076d511816eef769dc2517ff24a02b946d10014
+EBUILD strace-4.11.ebuild 1467 SHA256 d7b27a303b5d43c8e53a4ed282372ce010229ea90ebc2112174ecce6a5d74e9b SHA512 f24b9649ad3baf40964675e13d939166b36b1fa9943c5433aa7d9feb193f15e720b13d34939b478fdbe2551725b5a8a0394c8946055c2cff2d8a9b7c59611c6b WHIRLPOOL d92169bcaccbc82ebbabceaaa0ec45b7556db82ab4b16036e7ab633b9162d11e6e725f8e208dbb3f4f0fc81167c02ed9f0babfce492b2f907c2f2a391319cec6
 MISC metadata.xml 593 SHA256 e109b90d149d7f0a92316f83f9695c40f2d702625c274b3a9c48bfab2b38dd53 SHA512 67300cfcaba830a47e49cd327bf2d8490b084b016a321fd6e19e52d8dc28968395b3ffc114675a7d4dc723a9ddd7b57c3ede10207a226d60a2225f88aceb59e4 WHIRLPOOL 1af581a8525b849b93b4e2f1c7106fb4805c61818d374e451b5cdf88d7e0d87a41e5175d08e789daab6daf4832ed4b055e9b7de4ad7516220c9da0c203bdc910

diff --git a/dev-util/strace/strace-4.11-r99.ebuild b/dev-util/strace/strace-4.11.ebuild
similarity index 86%
rename from dev-util/strace/strace-4.11-r99.ebuild
rename to dev-util/strace/strace-4.11.ebuild
index 87e5477..0139ab8 100644
--- a/dev-util/strace/strace-4.11-r99.ebuild
+++ b/dev-util/strace/strace-4.11.ebuild
@@ -1,13 +1,13 @@
 # Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Id$
 
-EAPI=5
+EAPI="5"
 
 inherit flag-o-matic eutils
 
 if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="git://strace.git.sourceforge.net/gitroot/strace/strace"
+	EGIT_REPO_URI="git://git.code.sf.net/p/strace/code"
+	EGIT_PROJECT="${PN}"
 	inherit git-2 autotools
 else
 	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
@@ -15,7 +15,7 @@ else
 fi
 
 DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
-HOMEPAGE="http://sourceforge.net/projects/strace/"
+HOMEPAGE="https://sourceforge.net/projects/strace/"
 
 LICENSE="BSD"
 SLOT="0"
@@ -32,7 +32,8 @@ RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
 src_prepare() {
 	if epatch_user || [[ ! -e configure ]] ; then
 		# git generation
-		./xlat/gen.sh
+		./xlat/gen.sh || die
+		./generate_mpers_am.sh || die
 		eautoreconf
 		[[ ! -e CREDITS ]] && cp CREDITS{.in,}
 	fi


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] proj/musl:master commit in: dev-util/strace/
@ 2017-03-19  0:57 Aric Belsito
  0 siblings, 0 replies; 4+ messages in thread
From: Aric Belsito @ 2017-03-19  0:57 UTC (permalink / raw
  To: gentoo-commits

commit:     4e3c136c3916ddf2e2dc55c87b0ddad7fc933e38
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun Mar 19 00:57:26 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sun Mar 19 00:57:26 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=4e3c136c

dev-util/strace: in-tree versions work

 dev-util/strace/Manifest           |  3 --
 dev-util/strace/metadata.xml       | 19 ------------
 dev-util/strace/strace-4.11.ebuild | 59 --------------------------------------
 3 files changed, 81 deletions(-)

diff --git a/dev-util/strace/Manifest b/dev-util/strace/Manifest
deleted file mode 100644
index c432910..0000000
--- a/dev-util/strace/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST strace-4.11.tar.xz 679924 SHA256 e86a5f6cd8f941f67f3e4b28f4e60f3d9185c951cf266404533210a2e5cd8152 SHA512 e1e07ed427f504f53bcd117b61bb96a780b0f531010856ed157e4d8c2090371bf320ab59a02b88e67bf2afd443fba67e12f90e53afeab795188c89c6496daecd WHIRLPOOL eee2ae13670dc6f52c45e8275e54655216bd63f1bba2b056a31cb2ee1431f3f15060112a4807eb552a36429bee5d358a5ac3290d25f8875ffd818bb6fcb21a2f
-EBUILD strace-4.11.ebuild 1467 SHA256 d7b27a303b5d43c8e53a4ed282372ce010229ea90ebc2112174ecce6a5d74e9b SHA512 f24b9649ad3baf40964675e13d939166b36b1fa9943c5433aa7d9feb193f15e720b13d34939b478fdbe2551725b5a8a0394c8946055c2cff2d8a9b7c59611c6b WHIRLPOOL d92169bcaccbc82ebbabceaaa0ec45b7556db82ab4b16036e7ab633b9162d11e6e725f8e208dbb3f4f0fc81167c02ed9f0babfce492b2f907c2f2a391319cec6
-MISC metadata.xml 593 SHA256 e109b90d149d7f0a92316f83f9695c40f2d702625c274b3a9c48bfab2b38dd53 SHA512 67300cfcaba830a47e49cd327bf2d8490b084b016a321fd6e19e52d8dc28968395b3ffc114675a7d4dc723a9ddd7b57c3ede10207a226d60a2225f88aceb59e4 WHIRLPOOL 1af581a8525b849b93b4e2f1c7106fb4805c61818d374e451b5cdf88d7e0d87a41e5175d08e789daab6daf4832ed4b055e9b7de4ad7516220c9da0c203bdc910

diff --git a/dev-util/strace/metadata.xml b/dev-util/strace/metadata.xml
deleted file mode 100644
index 869980f..0000000
--- a/dev-util/strace/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="project">
-    <email>base-system@gentoo.org</email>
-    <name>Gentoo Base System</name>
-  </maintainer>
-  <use>
-    <flag name="aio">
-      Enable <pkg>dev-libs/libaio</pkg> support for tracing Asynchronous I/O operations
-    </flag>
-    <flag name="unwind">
-      Enable stack backtraces (-k flag) via <pkg>sys-libs/libunwind</pkg>
-    </flag>
-  </use>
-  <upstream>
-    <remote-id type="sourceforge">strace</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/dev-util/strace/strace-4.11.ebuild b/dev-util/strace/strace-4.11.ebuild
deleted file mode 100644
index 0139ab8..0000000
--- a/dev-util/strace/strace-4.11.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit flag-o-matic eutils
-
-if [[ ${PV} == "9999" ]] ; then
-	EGIT_REPO_URI="git://git.code.sf.net/p/strace/code"
-	EGIT_PROJECT="${PN}"
-	inherit git-2 autotools
-else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm ~mips ~ppc ~x86"
-fi
-
-DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
-HOMEPAGE="https://sourceforge.net/projects/strace/"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="aio perl static unwind"
-
-LIB_DEPEND="unwind? ( sys-libs/libunwind[static-libs(+)] )"
-# strace only uses the header from libaio to decode structs
-DEPEND="static? ( ${LIB_DEPEND} )
-	aio? ( >=dev-libs/libaio-0.3.106 )
-	sys-kernel/linux-headers"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
-	perl? ( dev-lang/perl )"
-
-src_prepare() {
-	if epatch_user || [[ ! -e configure ]] ; then
-		# git generation
-		./xlat/gen.sh || die
-		./generate_mpers_am.sh || die
-		eautoreconf
-		[[ ! -e CREDITS ]] && cp CREDITS{.in,}
-	fi
-
-	filter-lfs-flags # configure handles this sanely
-	use static && append-ldflags -static
-
-	export ac_cv_header_libaio_h=$(usex aio)
-	export ac_cv_header_stdc=no
-
-	# Stub out the -k test since it's known to be flaky. #545812
-	sed -i '1iexit 77' tests*/strace-k.test || die
-}
-
-src_configure() {
-	econf $(use_with unwind libunwind)
-}
-
-src_install() {
-	default
-	use perl || rm "${ED}"/usr/bin/strace-graph
-	dodoc CREDITS
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-03-19  0:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-03  9:15 [gentoo-commits] proj/musl:master commit in: dev-util/strace/ Anthony G. Basile
  -- strict thread matches above, loose matches on Subject: below --
2016-04-03  9:18 Anthony G. Basile
2016-12-05  5:46 Aric Belsito
2017-03-19  0:57 Aric Belsito

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox