From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dbus-glib/
Date: Tue, 02 Sep 2025 19:23:51 +0000 (UTC) [thread overview]
Message-ID: <1756840675.4e53b2012eea46cb82c0f86c01e3704acc57da52.asturm@gentoo> (raw)
commit: 4e53b2012eea46cb82c0f86c01e3704acc57da52
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 2 17:19:30 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep 2 19:17:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e53b201
dev-libs/dbus-glib: drop 0.112
Bug: https://bugs.gentoo.org/960192
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-libs/dbus-glib/Manifest | 1 -
dev-libs/dbus-glib/dbus-glib-0.112.ebuild | 112 ------------------------------
2 files changed, 113 deletions(-)
diff --git a/dev-libs/dbus-glib/Manifest b/dev-libs/dbus-glib/Manifest
index 4f5bdd49a570..73ca95c56e5a 100644
--- a/dev-libs/dbus-glib/Manifest
+++ b/dev-libs/dbus-glib/Manifest
@@ -1,2 +1 @@
-DIST dbus-glib-0.112.tar.gz 715340 BLAKE2B 24e1c222f0116b32c109682816f6c35771647f4c63cab93a6621bd68b71ea4dca62fbf9e6bb360386b8658146dbf34b0d7dc471db7525585412d120340c4c969 SHA512 7c9f393f065dfb3d698f35e6554caf15fe539f5dd52d2b2bb6ed1770e130f5dab8e45379232520301455bae9bb77e25a109faf175153fcd4b9dd11d7de4a546e
DIST dbus-glib-0.114.tar.gz 737791 BLAKE2B d9e9284d9dc9c57826a11d1776634102bf03e9d3cef98da96f92b9da936787eb4508258dc33ed3d35f0af8a39df8cff6e4b46ee0559319a50a33a0b1260d90d7 SHA512 c341cc0778edbf776d3e1a6d3cd9c136766544cb4b7239d6affa2fa246fa9c5716fe4d674c9bb56b36ee140344663bf967f70841ad132f978a662a22cc9a3a0d
diff --git a/dev-libs/dbus-glib/dbus-glib-0.112.ebuild b/dev-libs/dbus-glib/dbus-glib-0.112.ebuild
deleted file mode 100644
index 0493ed8e4f11..000000000000
--- a/dev-libs/dbus-glib/dbus-glib-0.112.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools bash-completion-r1 flag-o-matic multilib-minimal toolchain-funcs
-
-DESCRIPTION="D-Bus bindings for glib"
-HOMEPAGE="https://dbus.freedesktop.org/"
-SRC_URI="https://dbus.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 AFL-2.1 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="debug static-libs test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- >=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]
- >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
- >=sys-apps/dbus-1.8[${MULTILIB_USEDEP}]
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- >=dev-libs/expat-2.1.0-r3
- >=dev-libs/glib-2.40:2
- >=sys-apps/dbus-1.8
- >=dev-util/glib-utils-2.40
- >=dev-build/gtk-doc-am-1.14
- virtual/pkgconfig
-" # CBUILD dependencies are needed to make a native tool while cross-compiling.
-
-DOCS=( AUTHORS CONTRIBUTING.md NEWS README )
-
-set_TBD() {
- # out of sources build dir for make check
- export TBD="${BUILD_DIR}-tests"
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- # bug #943768
- append-cflags -std=gnu17
-
- # bug #923801
- append-lfs-flags
-
- local myconf=(
- --localstatedir="${EPREFIX}"/var
- --enable-bash-completion
- --disable-gtk-doc
- $(use_enable debug asserts)
- $(use_enable static-libs static)
- )
-
- # Configure a CBUILD directory to make a native build tool.
- if tc-is-cross-compiler; then
- mkdir "${BUILD_DIR}-build" || die
- cd "${BUILD_DIR}-build" || die
- ECONF_SOURCE="${S}" econf_build
- myconf+=( --with-dbus-binding-tool="$PWD/dbus/dbus-binding-tool" )
- cd - || die
- fi
-
- ECONF_SOURCE="${S}" econf "${myconf[@]}"
-
- ln -s "${S}"/doc/reference/html doc/reference/html || die #460042
-
- if use test; then
- set_TBD
- mkdir "${TBD}" || die
- cd "${TBD}" || die
- einfo "Running configure in ${TBD}"
- ECONF_SOURCE="${S}" econf \
- "${myconf[@]}" \
- $(use_enable test checks) \
- $(use_enable test tests) \
- $(use_enable test asserts)
- fi
-}
-
-multilib_src_compile() {
- tc-is-cross-compiler && emake -C "${BUILD_DIR}-build"
-
- emake
-
- if use test; then
- set_TBD
- cd "${TBD}" || die
- einfo "Running make in ${TBD}"
- emake
- fi
-}
-
-multilib_src_test() {
- set_TBD
- cd "${TBD}" || die
- emake check
-}
-
-multilib_src_install_all() {
- einstalldocs
-
- newbashcomp "${ED}"/etc/bash_completion.d/dbus-bash-completion.sh dbus-send
- rm -r "${ED}"/etc/bash_completion.d || die
-
- find "${ED}" -type f -name '*.la' -delete || die
-}
next reply other threads:[~2025-09-02 19:24 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-02 19:23 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-07-14 13:41 [gentoo-commits] repo/gentoo:master commit in: dev-libs/dbus-glib/ Arthur Zamarin
2025-07-14 13:41 Arthur Zamarin
2025-07-14 13:41 Arthur Zamarin
2025-07-14 13:41 Arthur Zamarin
2025-07-14 13:41 Arthur Zamarin
2025-07-14 13:41 Arthur Zamarin
2025-06-16 5:02 Sam James
2025-06-08 13:45 Sam James
2025-05-09 9:17 Pacho Ramos
2024-12-01 16:15 Sam James
2022-05-06 2:39 WANG Xuerui
2021-08-26 19:51 Sam James
2021-08-24 23:26 Sam James
2021-08-24 23:26 Sam James
2021-08-24 11:42 Agostino Sarubbo
2021-08-24 11:41 Agostino Sarubbo
2021-08-24 11:41 Agostino Sarubbo
2021-08-24 11:40 Agostino Sarubbo
2021-08-23 22:16 Agostino Sarubbo
2021-07-16 12:48 Andreas Sturmlechner
2020-11-23 2:09 Mike Gilbert
2020-11-23 1:57 Mike Gilbert
2019-05-09 21:29 Aaron Bauman
2018-11-18 0:36 Gilles Dartiguelongue
2018-11-18 0:36 Gilles Dartiguelongue
2018-11-08 23:35 Sergei Trofimovich
2018-10-17 11:10 Mikle Kolyada
2018-10-14 16:21 Mikle Kolyada
2018-10-12 7:32 Tobias Klausmann
2018-10-06 19:46 Matt Turner
2018-10-06 19:46 Matt Turner
2018-09-30 21:38 Sergei Trofimovich
2018-09-28 8:12 Mikle Kolyada
2018-09-24 21:26 Sergei Trofimovich
2018-07-21 17:16 Mikle Kolyada
2018-03-30 20:18 Sergei Trofimovich
2018-03-25 20:40 Gilles Dartiguelongue
2018-02-14 23:49 Manuel Rüger
2017-07-28 4:40 Markus Meier
2017-06-30 11:10 Agostino Sarubbo
2017-06-30 8:24 Sergei Trofimovich
2017-06-28 13:19 Agostino Sarubbo
2017-01-29 16:07 Fabian Groffen
2016-09-19 1:33 Manuel Rüger
2016-01-19 20:46 Manuel Rüger
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=1756840675.4e53b2012eea46cb82c0f86c01e3704acc57da52.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