public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-08-29  1:14 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-08-29  1:14 UTC (permalink / raw
  To: gentoo-commits

commit:     1af069a682d3d4716a6154ac549de209a02c1099
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 01:11:02 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 01:11:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af069a6

dev-debug/drgn: fix dev-libs/libkdumpfile dep

The Python bindings from dev-libs/libkdumpfile aren't used.

Bug: https://bugs.gentoo.org/938584
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/{drgn-0.0.27.ebuild => drgn-0.0.27-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-debug/drgn/drgn-0.0.27.ebuild b/dev-debug/drgn/drgn-0.0.27-r1.ebuild
similarity index 96%
rename from dev-debug/drgn/drgn-0.0.27.ebuild
rename to dev-debug/drgn/drgn-0.0.27-r1.ebuild
index 7ee10c7c39b4..d3dfa2a25dd9 100644
--- a/dev-debug/drgn/drgn-0.0.27.ebuild
+++ b/dev-debug/drgn/drgn-0.0.27-r1.ebuild
@@ -23,7 +23,7 @@ IUSE="openmp"
 
 DEPEND="
 	>=dev-libs/elfutils-0.165
-	dev-libs/libkdumpfile[${PYTHON_USEDEP}]
+	dev-libs/libkdumpfile
 "
 RDEPEND="${DEPEND}"
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-09-21  5:32 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-09-21  5:32 UTC (permalink / raw
  To: gentoo-commits

commit:     0f43ab559b9997b42839ff29f5ea9e5605a0bd14
Author:     Omar Sandoval <osandov <AT> osandov <DOT> com>
AuthorDate: Sat Sep 21 05:00:51 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 05:28:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f43ab55

dev-debug/drgn: fix cross emerging

Pass --host to configure.

Closes: https://bugs.gentoo.org/939942
Signed-off-by: Omar Sandoval <osandov <AT> osandov.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/{drgn-0.0.27-r1.ebuild => drgn-0.0.27-r2.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-debug/drgn/drgn-0.0.27-r1.ebuild b/dev-debug/drgn/drgn-0.0.27-r2.ebuild
similarity index 97%
rename from dev-debug/drgn/drgn-0.0.27-r1.ebuild
rename to dev-debug/drgn/drgn-0.0.27-r2.ebuild
index d3dfa2a25dd9..cfa41f442363 100644
--- a/dev-debug/drgn/drgn-0.0.27-r1.ebuild
+++ b/dev-debug/drgn/drgn-0.0.27-r2.ebuild
@@ -65,5 +65,6 @@ src_configure() {
 	CONFIGURE_FLAGS="--disable-dependency-tracking --disable-silent-rules"
 	CONFIGURE_FLAGS+=" --with-libkdumpfile"
 	CONFIGURE_FLAGS+=" $(use_enable openmp)"
+	CONFIGURE_FLAGS+=" --host=${CHOST}"
 	distutils-r1_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-09-21  5:32 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-09-21  5:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f92ea535d4733b2714f97a7181ef8804e3dd4920
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 21 05:27:35 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 21 05:28:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f92ea535

dev-debug/drgn: pass --build and --target too for completeness

Bug: https://bugs.gentoo.org/939942
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/drgn-0.0.27-r2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-debug/drgn/drgn-0.0.27-r2.ebuild b/dev-debug/drgn/drgn-0.0.27-r2.ebuild
index cfa41f442363..48d3c3892ed1 100644
--- a/dev-debug/drgn/drgn-0.0.27-r2.ebuild
+++ b/dev-debug/drgn/drgn-0.0.27-r2.ebuild
@@ -65,6 +65,8 @@ src_configure() {
 	CONFIGURE_FLAGS="--disable-dependency-tracking --disable-silent-rules"
 	CONFIGURE_FLAGS+=" --with-libkdumpfile"
 	CONFIGURE_FLAGS+=" $(use_enable openmp)"
+	CONFIGURE_FLAGS+=" --build=${CBUILD}"
 	CONFIGURE_FLAGS+=" --host=${CHOST}"
+	CONFIGURE_FLAGS+=" --target=${CTARGET}"
 	distutils-r1_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-10-11  1:57 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-10-11  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b728054f630f7d4f487e3167fc9228906a8cfb0b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 11 01:53:18 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 11 01:53:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b728054f

dev-debug/drgn: add 0.0.29

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/Manifest           |  1 +
 dev-debug/drgn/drgn-0.0.29.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/dev-debug/drgn/Manifest b/dev-debug/drgn/Manifest
index 3f87369f6a99..cacae1a69363 100644
--- a/dev-debug/drgn/Manifest
+++ b/dev-debug/drgn/Manifest
@@ -1 +1,2 @@
 DIST drgn-0.0.27.tar.gz 1193358 BLAKE2B 9008c2784075dd2409d6a948474914f0b08bbd4ee0a7d537e77de5f9f34ebede20dab2fd371047708af5ded0ef395ae2361760edd5cbee2fac88140fcbb3d58e SHA512 fab4620eada3767184b48bf641fc700697b5897c9313ee15ff16aec1070d9e7e92a732e430d4a9d0d02d7071764961e7845b2f9ee6a87c661bdf0fc4d4ecb0f0
+DIST drgn-0.0.29.tar.gz 1242038 BLAKE2B a2f750ff9717f1990400d1e491bc83229d1ade87e32a6d14e395b889562088df32b3915ded97c3c6486bc7defdea7e1d58dbdccdcc3f6085dca12104569a71ef SHA512 2d13de5f4da2db106def4701b4de182c5a5781c12308bc169d6a9033f223b7c64fd4f83659c45a2861ac9aca56f31ba77d781452b9374bc29f50e1151a073741

diff --git a/dev-debug/drgn/drgn-0.0.29.ebuild b/dev-debug/drgn/drgn-0.0.29.ebuild
new file mode 100644
index 000000000000..466aac274efe
--- /dev/null
+++ b/dev-debug/drgn/drgn-0.0.29.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 multiprocessing pypi toolchain-funcs
+
+DESCRIPTION="Programmable debugger"
+HOMEPAGE="
+	https://github.com/osandov/drgn
+	https://pypi.org/project/drgn/
+	https://drgn.readthedocs.io/en/latest/
+"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="openmp"
+
+DEPEND="
+	>=dev-libs/elfutils-0.165
+	dev-libs/libkdumpfile
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( dev-libs/check )
+"
+
+distutils_enable_tests unittest
+
+pkg_pretend() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_configure() {
+	tc-export AR CC OBJCOPY OBJDUMP PKG_CONFIG RANLIB STRIP
+
+	cat >> setup.cfg <<-EOF || die
+	[build_ext]
+	parallel = $(makeopts_jobs)
+	EOF
+
+	# setuptools calls autotools (!)
+	export CONFIGURE_FLAGS
+	CONFIGURE_FLAGS="--disable-dependency-tracking --disable-silent-rules"
+	CONFIGURE_FLAGS+=" --with-libkdumpfile"
+	CONFIGURE_FLAGS+=" $(use_enable openmp)"
+	CONFIGURE_FLAGS+=" --build=${CBUILD}"
+	CONFIGURE_FLAGS+=" --host=${CHOST}"
+	CONFIGURE_FLAGS+=" --target=${CTARGET}"
+	distutils-r1_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-12-20  6:10 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-12-20  6:10 UTC (permalink / raw
  To: gentoo-commits

commit:     e8b3f7ab863c5f49d195a9ad108f80dfdbf760f0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 05:57:52 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 06:09:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b3f7ab

dev-debug/drgn: add 0.0.30

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/Manifest           |  1 +
 dev-debug/drgn/drgn-0.0.30.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/dev-debug/drgn/Manifest b/dev-debug/drgn/Manifest
index cacae1a69363..65fd86f12b15 100644
--- a/dev-debug/drgn/Manifest
+++ b/dev-debug/drgn/Manifest
@@ -1,2 +1,3 @@
 DIST drgn-0.0.27.tar.gz 1193358 BLAKE2B 9008c2784075dd2409d6a948474914f0b08bbd4ee0a7d537e77de5f9f34ebede20dab2fd371047708af5ded0ef395ae2361760edd5cbee2fac88140fcbb3d58e SHA512 fab4620eada3767184b48bf641fc700697b5897c9313ee15ff16aec1070d9e7e92a732e430d4a9d0d02d7071764961e7845b2f9ee6a87c661bdf0fc4d4ecb0f0
 DIST drgn-0.0.29.tar.gz 1242038 BLAKE2B a2f750ff9717f1990400d1e491bc83229d1ade87e32a6d14e395b889562088df32b3915ded97c3c6486bc7defdea7e1d58dbdccdcc3f6085dca12104569a71ef SHA512 2d13de5f4da2db106def4701b4de182c5a5781c12308bc169d6a9033f223b7c64fd4f83659c45a2861ac9aca56f31ba77d781452b9374bc29f50e1151a073741
+DIST drgn-0.0.30.tar.gz 1268753 BLAKE2B 28fc686771f0eebca4c8be6a4552e0d8ca060ea1d39d656768d807f8115323ca00f1a9311d3aa5208d2a609fa296cda691f350e545b1e23b5ef0b200a9d6f77b SHA512 6c17052baf5c2295167e41e5b7fd9899c1ca90af6f83704034371827953f690c034415780c4f45d20e1235085c198cf69e8ee9bdbf8081e22e3f860d21e839e9

diff --git a/dev-debug/drgn/drgn-0.0.30.ebuild b/dev-debug/drgn/drgn-0.0.30.ebuild
new file mode 100644
index 000000000000..466aac274efe
--- /dev/null
+++ b/dev-debug/drgn/drgn-0.0.30.ebuild
@@ -0,0 +1,61 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 multiprocessing pypi toolchain-funcs
+
+DESCRIPTION="Programmable debugger"
+HOMEPAGE="
+	https://github.com/osandov/drgn
+	https://pypi.org/project/drgn/
+	https://drgn.readthedocs.io/en/latest/
+"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="openmp"
+
+DEPEND="
+	>=dev-libs/elfutils-0.165
+	dev-libs/libkdumpfile
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	test? ( dev-libs/check )
+"
+
+distutils_enable_tests unittest
+
+pkg_pretend() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_configure() {
+	tc-export AR CC OBJCOPY OBJDUMP PKG_CONFIG RANLIB STRIP
+
+	cat >> setup.cfg <<-EOF || die
+	[build_ext]
+	parallel = $(makeopts_jobs)
+	EOF
+
+	# setuptools calls autotools (!)
+	export CONFIGURE_FLAGS
+	CONFIGURE_FLAGS="--disable-dependency-tracking --disable-silent-rules"
+	CONFIGURE_FLAGS+=" --with-libkdumpfile"
+	CONFIGURE_FLAGS+=" $(use_enable openmp)"
+	CONFIGURE_FLAGS+=" --build=${CBUILD}"
+	CONFIGURE_FLAGS+=" --host=${CHOST}"
+	CONFIGURE_FLAGS+=" --target=${CTARGET}"
+	distutils-r1_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/
@ 2024-12-26 10:59 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2024-12-26 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     9dd8934575b16138d1ddbd793e9cb67ee004f62c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 26 10:58:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 26 10:58:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd89345

dev-debug/drgn: subscribe to libkdumpfile subslot

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-debug/drgn/{drgn-0.0.30.ebuild => drgn-0.0.30-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-debug/drgn/drgn-0.0.30.ebuild b/dev-debug/drgn/drgn-0.0.30-r1.ebuild
similarity index 98%
rename from dev-debug/drgn/drgn-0.0.30.ebuild
rename to dev-debug/drgn/drgn-0.0.30-r1.ebuild
index 466aac274efe..3c44c435db50 100644
--- a/dev-debug/drgn/drgn-0.0.30.ebuild
+++ b/dev-debug/drgn/drgn-0.0.30-r1.ebuild
@@ -23,7 +23,7 @@ IUSE="openmp"
 
 DEPEND="
 	>=dev-libs/elfutils-0.165
-	dev-libs/libkdumpfile
+	dev-libs/libkdumpfile:=
 "
 RDEPEND="${DEPEND}"
 BDEPEND="


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

end of thread, other threads:[~2024-12-26 10:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-26 10:59 [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-12-20  6:10 Sam James
2024-10-11  1:57 Sam James
2024-09-21  5:32 Sam James
2024-09-21  5:32 Sam James
2024-08-29  1:14 Sam James

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