public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/
Date: Sun, 10 May 2020 18:58:36 +0000 (UTC)	[thread overview]
Message-ID: <1589136625.ef409027b686247ac0c14b314c574505242e7e00.asturm@gentoo> (raw)

commit:     ef409027b686247ac0c14b314c574505242e7e00
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 10 18:50:25 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun May 10 18:50:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef409027

dev-python/dbus-python: Drop 1.2.12 and 1.2.14

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-python/dbus-python/Manifest                  |  2 -
 dev-python/dbus-python/dbus-python-1.2.12.ebuild | 78 ------------------------
 dev-python/dbus-python/dbus-python-1.2.14.ebuild | 77 -----------------------
 3 files changed, 157 deletions(-)

diff --git a/dev-python/dbus-python/Manifest b/dev-python/dbus-python/Manifest
index a2569e8baee..40ba4cdce24 100644
--- a/dev-python/dbus-python/Manifest
+++ b/dev-python/dbus-python/Manifest
@@ -1,3 +1 @@
-DIST dbus-python-1.2.12.tar.gz 574727 BLAKE2B e5516e7109fad089af51d3e5db3921d056f327c27f9b74a870b1b31b04ba952ad3c9ba5916a18d674ab1179b94cf516b24e046feded8f2e542b196d162038944 SHA512 6f90eaeeb74ea71a026a331d4c611911eda6dfb6c9086a0a80352f9963a9ae126db6f3e32d183916b8517f177fc947f1ddb15df83ff0b5c886532116868383b4
-DIST dbus-python-1.2.14.tar.gz 576181 BLAKE2B 4e36c3d0ed07ce6c7514e2699b6cf5d0a75332c8dab3ca90e2d451d6649c26f61b2173b4b7f230c54df2b9f4214d0f3c54a45c233d6e8fd38bf39a6312f480fc SHA512 773d66e40ab514639f1c5c619362659f290ddd5ae944eb8e09b5752624f3c86305b6c1d5562e290b36f1e6cf43f6d39cd4a227e18ff41499877546982ceebb51
 DIST dbus-python-1.2.16.tar.gz 576701 BLAKE2B 58d9f9ea092cd3a6b872c084a6159baf03f1aab615282e161a0e3da1d01ff5f4940862e693d21907b0c146d285b9067386759a1306ae2e6907f5e2ff4ef9944d SHA512 e76c00c5fd3fe6884e4c24f258987fd3b80d21bd4e0f96aa8fda152078a860b62321324f6efcbfe7226d5ab2521a14b5bda7cf2468d2cae5f376c124a71aa05c

diff --git a/dev-python/dbus-python/dbus-python-1.2.12.ebuild b/dev-python/dbus-python/dbus-python-1.2.12.ebuild
deleted file mode 100644
index f540a4a3c54..00000000000
--- a/dev-python/dbus-python/dbus-python-1.2.12.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
-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.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86"
-
-IUSE="doc examples test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="${PYTHON_DEPS}
-	>=sys-apps/dbus-1.8:=
-	>=dev-libs/glib-2.40
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	dev-python/setuptools[${PYTHON_USEDEP}]
-	virtual/pkgconfig
-	doc? ( $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]') )
-	test? ( dev-python/pygobject:3[${PYTHON_USEDEP}]
-		dev-python/tappy[${PYTHON_USEDEP}] )
-"
-
-python_check_deps() {
-	has_version "dev-python/sphinx[${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
-		)
-		[[ ${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
-}

diff --git a/dev-python/dbus-python/dbus-python-1.2.14.ebuild b/dev-python/dbus-python/dbus-python-1.2.14.ebuild
deleted file mode 100644
index b0cfa46ec0a..00000000000
--- a/dev-python/dbus-python/dbus-python-1.2.14.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
-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.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
-
-IUSE="doc examples test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="${PYTHON_DEPS}
-	>=sys-apps/dbus-1.8:=
-	>=dev-libs/glib-2.40
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	virtual/pkgconfig
-	doc? ( $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]') )
-	test? ( dev-python/pygobject:3[${PYTHON_USEDEP}]
-		dev-python/tappy[${PYTHON_USEDEP}] )
-"
-
-python_check_deps() {
-	has_version "dev-python/sphinx[${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
-		)
-		[[ ${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:[~2020-05-10 18:58 UTC|newest]

Thread overview: 91+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-10 18:58 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-18 20:40 [gentoo-commits] repo/gentoo:master commit in: dev-python/dbus-python/ Joonas Niilola
2025-03-14  6:32 Michał Górny
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 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=1589136625.ef409027b686247ac0c14b314c574505242e7e00.asturm@gentoo \
    --to=asturm@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