public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/
Date: Fri, 14 Mar 2025 06:32:16 +0000 (UTC)	[thread overview]
Message-ID: <1741933928.a0a9153bc97dc4ca36ecfbe3526f17afd13f13d3.mgorny@gentoo> (raw)

commit:     a0a9153bc97dc4ca36ecfbe3526f17afd13f13d3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 06:08:16 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 06:32:08 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a9153b

dev-python/dbus-python: Bump to 1.4.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/dbus-python/Manifest                 |  1 +
 dev-python/dbus-python/dbus-python-1.4.0.ebuild | 93 +++++++++++++++++++++++++
 2 files changed, 94 insertions(+)

diff --git a/dev-python/dbus-python/Manifest b/dev-python/dbus-python/Manifest
index a7ad92adada0..e6da63a6ee1a 100644
--- a/dev-python/dbus-python/Manifest
+++ b/dev-python/dbus-python/Manifest
@@ -1 +1,2 @@
 DIST dbus-python-1.3.2.tar.gz 605495 BLAKE2B 6c60217b3837d655ab4f833b9f21d8f76eb4129cfeaa26586ef7adc8be8f8c5f03464428ff9f281b2566fb0f89cbb5e4b5618bf7cc961faf9f638d9011874839 SHA512 9b2885c9c2914142c72487f766b1cdd28a255d9f5a87eaf8f4eb420c6e096a77f210ac5a4fac9843c6531974872880cc28b7e45940e198856e984dcc0715519a
+DIST dbus-python-1.4.0.tar.xz 168268 BLAKE2B 17ed4ed1d6f76acf4dc55dc9d281081d0bb412811f0b340edd8c2ef767802dd0386ffa39cdbc7a61870b916b20c89bee0d6a5b6b8e9355c84d2fdc846575e465 SHA512 defd5fba8348635ce52654b7e93e6cacf52966f6facfb7bb04fc77f2f82129e0b7673d4f3d483ef3321985172987d8c3265b27b9200c68c39c729567ffa21456

diff --git a/dev-python/dbus-python/dbus-python-1.4.0.ebuild b/dev-python/dbus-python/dbus-python-1.4.0.ebuild
new file mode 100644
index 000000000000..d639a5a6848e
--- /dev/null
+++ b/dev-python/dbus-python/dbus-python-1.4.0.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit autotools python-r1
+
+DESCRIPTION="Python bindings for the D-Bus messagebus"
+HOMEPAGE="
+	https://www.freedesktop.org/wiki/Software/DBusBindings/
+	https://dbus.freedesktop.org/doc/dbus-python/
+"
+SRC_URI="https://dbus.freedesktop.org/releases/${PN}/${P}.tar.xz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="doc examples test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	${PYTHON_DEPS}
+	>=sys-apps/dbus-1.8:=
+	>=dev-libs/glib-2.40
+"
+RDEPEND="
+	${DEPEND}
+"
+BDEPEND="
+	virtual/pkgconfig
+	doc? (
+		$(python_gen_any_dep '
+			dev-python/sphinx[${PYTHON_USEDEP}]
+			dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]
+		')
+	)
+	test? (
+		dev-python/pygobject:3[${PYTHON_USEDEP}]
+		dev-python/tap-py[${PYTHON_USEDEP}]
+	)
+"
+
+python_check_deps() {
+	python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]" \
+		"dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}]"
+}
+
+src_prepare() {
+	default
+	# Update py-compile, bug 529502.
+	eautoreconf
+	python_copy_sources
+}
+
+src_configure() {
+	use doc && python_setup
+	local SPHINX_IMPL=${EPYTHON}
+
+	configuring() {
+		local myconf=(
+			--disable-documentation
+
+			# Work around broken AX_PYTHON_DEVEL macro.
+			# https://bugs.gentoo.org/815136
+			PYTHON_EXTRA_LIBS=' '
+		)
+		[[ ${EPYTHON} == ${SPHINX_IMPL} ]] &&
+			myconf+=( --enable-documentation )
+
+		econf "${myconf[@]}"
+	}
+	python_foreach_impl run_in_build_dir configuring
+}
+
+src_compile() {
+	python_foreach_impl run_in_build_dir default
+}
+
+src_test() {
+	unset DBUS_SESSION_BUS_ADDRESS
+	python_foreach_impl run_in_build_dir default
+}
+
+src_install() {
+	python_foreach_impl run_in_build_dir default
+	find "${D}" -name '*.la' -type f -delete || die
+
+	use examples && dodoc -r examples
+}


             reply	other threads:[~2025-03-14  6:32 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14  6:32 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-06-09  2:20 [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/ Sam James
2025-06-05 11:56 Sam James
2025-04-14  4:50 Michał Górny
2025-04-06  0:04 Sam James
2025-04-05 13:02 Arthur Zamarin
2025-04-05 13:02 Arthur Zamarin
2025-04-05 13:02 Arthur Zamarin
2025-04-05 11:51 Sam James
2025-04-05 11:17 Arthur Zamarin
2025-03-18 20:40 Joonas Niilola
2024-06-24  7:44 Petr Vaněk
2023-06-03  6:48 Michał Górny
2022-10-11 17:39 Michał Górny
2022-10-11 17:15 Arthur Zamarin
2022-10-10 19:54 Sam James
2022-10-10 19:54 Sam James
2022-10-10 18:39 Arthur Zamarin
2022-10-10 18:32 Arthur Zamarin
2022-10-10 18:24 Arthur Zamarin
2022-10-10 18:21 Arthur Zamarin
2022-10-10 18:21 Arthur Zamarin
2022-10-04 20:23 Arthur Zamarin
2022-09-09  7:23 Arthur Zamarin
2022-05-24 16:07 WANG Xuerui
2022-05-20 13:50 Andrew Ammerlaan
2021-11-10 15:19 Arthur Zamarin
2021-11-09 22:35 Sam James
2021-10-31 18:07 Sam James
2021-10-31 18:07 Sam James
2021-10-31 18:04 Sam James
2021-10-31 18:02 Sam James
2021-10-31 18:02 Sam James
2021-10-31 17:58 Sam James
2021-10-31 17:55 Sam James
2021-09-29 15:29 Mike Gilbert
2021-09-07 14:08 Pacho Ramos
2021-06-01 17:07 Andrew Ammerlaan
2021-05-29  0:03 Yixun Lan
2020-09-20  8:16 Michał Górny
2020-05-10 18:58 Andreas Sturmlechner
2020-05-10 18:58 Andreas Sturmlechner
2020-05-10 12:40 Andreas Sturmlechner
2020-05-08 20:58 Mart Raudsepp
2020-05-04 16:51 Agostino Sarubbo
2020-05-03 19:12 Agostino Sarubbo
2020-05-03 19:02 Agostino Sarubbo
2020-05-03 15:13 Agostino Sarubbo
2020-04-27 11:39 Agostino Sarubbo
2020-04-27 11:39 Agostino Sarubbo
2020-04-26 14:16 Agostino Sarubbo
2020-04-10 22:56 Sergei Trofimovich
2020-04-01 19:19 Mart Raudsepp
2020-03-29 14:45 Sergei Trofimovich
2020-02-26 12:56 Lars Wendler
2020-01-21  8:48 Agostino Sarubbo
2020-01-01 16:59 Mart Raudsepp
2019-12-24 14:59 Mikle Kolyada
2019-12-07 23:07 Matt Turner
2019-12-02 21:13 Aaron Bauman
2019-12-02 12:57 Lars Wendler
2019-12-02 12:57 Lars Wendler
2019-12-01 19:30 Andreas Sturmlechner
2019-11-24 19:32 Aaron Bauman
2019-11-23 15:12 Sergei Trofimovich
2019-10-20 14:40 Pacho Ramos
2019-10-20 14:40 Pacho Ramos
2019-05-15  4:48 Aaron Bauman
2019-04-08 22:03 Aaron Bauman
2019-01-27  9:49 Sergei Trofimovich
2019-01-18  8:08 Mikle Kolyada
2018-12-23  3:25 Matt Turner
2018-10-28 10:19 Sergei Trofimovich
2018-10-20 12:16 Sergei Trofimovich
2018-10-09  9:48 Mikle Kolyada
2018-08-09 10:11 Michał Górny
2018-08-06 20:50 Sergei Trofimovich
2018-07-27 18:49 Sergei Trofimovich
2018-07-24 12:48 Michał Górny
2018-07-24 12:48 Michał Górny
2018-07-24 12:45 Michał Górny
2018-07-24 12:20 Michał Górny
2018-07-24 12:19 Michał Górny
2018-07-24 12:19 Michał Górny
2018-07-24 12:19 Michał Górny
2018-07-24 12:19 Michał Górny
2018-07-24 12:19 Michał Górny
2018-04-02 11:16 Mart Raudsepp
2018-03-31 17:59 Sergei Trofimovich
2018-02-14 23:49 Manuel Rüger
2017-07-28  4:41 Markus Meier
2017-06-30 11:10 Agostino Sarubbo
2017-06-30  8:24 Sergei Trofimovich
2017-06-28 13:19 Agostino Sarubbo
2017-03-10 20:38 Zac Medico
2017-02-17  6:06 Mart Raudsepp
2016-04-10 17:27 Lars Wendler
2016-04-10 15:35 Lars Wendler
2015-11-12  8:56 Justin Lecher
2015-10-19 16:29 Justin Lecher

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=1741933928.a0a9153bc97dc4ca36ecfbe3526f17afd13f13d3.mgorny@gentoo \
    --to=mgorny@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