From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/xfconf/
Date: Sat, 23 Mar 2024 10:25:38 +0000 (UTC) [thread overview]
Message-ID: <1711189410.35d8c989707db1f5f055a35883f66240397d9949.mgorny@gentoo> (raw)
commit: 35d8c989707db1f5f055a35883f66240397d9949
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 23 10:09:42 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 23 10:23:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35d8c989
xfce-base/xfconf: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
xfce-base/xfconf/Manifest | 1 -
xfce-base/xfconf/xfconf-4.19.1.ebuild | 77 -----------------------------------
2 files changed, 78 deletions(-)
diff --git a/xfce-base/xfconf/Manifest b/xfce-base/xfconf/Manifest
index f0bf705eb613..83d00e98fc63 100644
--- a/xfce-base/xfconf/Manifest
+++ b/xfce-base/xfconf/Manifest
@@ -1,3 +1,2 @@
DIST xfconf-4.18.3.tar.bz2 648479 BLAKE2B 021198bba84c651f05cf47a1034617e088dcce6502eac6f0f160f8000e2309bac5f44b57cc0a4156f907a25002cc3c539ab0c16fc5b3018bbc8ae9a58b212133 SHA512 e1aa133f79ea584af067369f6fd059cd444c4743270ed90a8b0dfe158f7ae6fbc78af62fab67c64674060c2fd1404f06602ac8c019b0db8b70779a17fde4a327
-DIST xfconf-4.19.1.tar.bz2 762466 BLAKE2B dd0ae72fc5ccb1146d69e1e0a9b67e89205ea460f75fcc4ccee1cb36b600f5b145f75d9f10f576bc3040bd065aa8d855788e79fde78541c9853f3cf04f0b5bb3 SHA512 4adb08005caf8373da82ef8db1bfde1f91d723c73b8c836516611d52ccbed86eea6a8dbef8e2a17b9eb4d5199c54bfbfdec970836bb35eb1a951584d75c8faa3
DIST xfconf-4.19.2.tar.bz2 764445 BLAKE2B d8deed120a8f6b901c544edff48f5748d5d0959cba886a817dc61cefca3cf169d7d557f2ac23c7167f0d294d8cee649d391041250a5475315f9b81e55be5de4c SHA512 fc72592013c2d9375ca66b917585506083e05d60325ced3b2c00877404b4c188ca028c7a213f50a2bf88ec8590864200f32c7fb56df2993baa233abbc1871673
diff --git a/xfce-base/xfconf/xfconf-4.19.1.ebuild b/xfce-base/xfconf/xfconf-4.19.1.ebuild
deleted file mode 100644
index b60487dfb1ba..000000000000
--- a/xfce-base/xfconf/xfconf-4.19.1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 vala
-
-DESCRIPTION="A configuration management system for Xfce"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
-HOMEPAGE="
- https://docs.xfce.org/xfce/xfconf/start
- https://gitlab.xfce.org/xfce/xfconf/
-"
-
-LICENSE="GPL-2+"
-SLOT="0/3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
-IUSE="debug +introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
- >=dev-libs/glib-2.66.0
- sys-apps/dbus
- >=xfce-base/libxfce4util-4.17.3:=
- introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
- ${DEPEND}
-"
-BDEPEND="
- dev-util/gdbus-codegen
- dev-util/glib-utils
- >=sys-devel/gettext-0.19.8
- virtual/pkgconfig
- vala? ( $(vala_depend) )
-"
-
-src_configure() {
- local myconf=(
- $(use_enable introspection)
- $(use_enable vala)
- $(use_enable debug checks)
- --with-bash-completion-dir="$(get_bashcompdir)"
- )
-
- use vala && vala_setup
- econf "${myconf[@]}"
-}
-
-src_test() {
- local service_dir=${HOME}/.local/share/dbus-1/services
- mkdir -p "${service_dir}" || die
- cat > "${service_dir}/org.xfce.Xfconf.service" <<-EOF || die
- [D-BUS Service]
- Name=org.xfce.Xfconf
- Exec=${S}/xfconfd/xfconfd
- EOF
-
- (
- # start isolated dbus session bus
- dbus_data=$(dbus-launch --sh-syntax) || exit
- eval "${dbus_data}"
-
- # -j>1 often hangs
- # https://gitlab.xfce.org/xfce/xfconf/-/issues/13
- nonfatal emake -j1 check
- ret=${?}
-
- kill "${DBUS_SESSION_BUS_PID}"
- exit "${ret}"
- ) || die
-}
-
-src_install() {
- default
- find "${D}" -type f -name '*.la' -delete || die
-}
next reply other threads:[~2024-03-23 10:25 UTC|newest]
Thread overview: 102+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-23 10:25 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-02 7:09 [gentoo-commits] repo/gentoo:master commit in: xfce-base/xfconf/ Michał Górny
2024-11-02 7:09 Michał Górny
2024-10-18 11:23 Michał Górny
2024-03-23 10:25 Michał Górny
2024-02-29 14:44 Michał Górny
2023-11-11 20:50 Michał Górny
2023-11-02 12:58 Michał Górny
2023-11-02 4:12 Sam James
2023-11-02 4:12 Sam James
2023-11-02 4:12 Sam James
2023-11-02 4:12 Sam James
2023-11-01 20:37 Arthur Zamarin
2023-11-01 20:37 Arthur Zamarin
2023-11-01 5:08 Michał Górny
2023-10-17 11:44 Michał Górny
2023-10-17 11:44 Michał Górny
2023-06-11 19:19 Michał Górny
2023-06-11 18:38 Jakov Smolić
2023-06-11 18:38 Jakov Smolić
2023-06-11 15:47 Sam James
2023-06-11 15:37 Sam James
2023-04-17 13:50 Michał Górny
2023-04-17 13:50 Michał Górny
2023-03-17 10:50 Michał Górny
2023-03-17 8:56 Arthur Zamarin
2023-03-15 6:55 Michał Górny
2023-02-03 16:53 Sam James
2023-02-03 14:21 Arthur Zamarin
2023-02-03 14:21 Arthur Zamarin
2023-02-03 13:32 Arthur Zamarin
2022-12-15 15:04 Michał Górny
2022-12-15 15:04 Michał Górny
2022-11-30 17:25 Michał Górny
2022-11-15 5:33 Michał Górny
2022-11-09 20:18 Michał Górny
2022-11-01 12:17 Michał Górny
2022-08-28 6:49 WANG Xuerui
2021-05-21 14:54 Yixun Lan
2021-02-19 1:11 Michał Górny
2021-02-15 8:38 Sam James
2021-01-18 20:29 Michał Górny
2021-01-18 20:25 Sam James
2021-01-08 12:40 Michał Górny
2020-12-22 23:35 Michał Górny
2020-11-23 7:58 Sergei Trofimovich
2020-11-23 7:52 Sergei Trofimovich
2020-11-18 0:41 Sam James
2020-11-18 0:41 Sam James
2020-11-16 22:51 Sam James
2020-11-09 10:20 Michał Górny
2020-11-09 10:20 Michał Górny
2020-08-01 9:01 Sergei Trofimovich
2020-07-28 19:23 Sam James
2020-07-27 2:09 Sam James
2020-07-27 1:54 Sam James
2020-07-16 11:48 Michał Górny
2020-05-16 16:14 Michał Górny
2020-05-06 15:34 Michał Górny
2019-12-06 14:20 Michał Górny
2019-11-07 23:44 Aaron Bauman
2019-10-13 11:24 Mikle Kolyada
2019-10-12 21:23 Sergei Trofimovich
2019-10-12 21:16 Sergei Trofimovich
2019-08-12 3:06 Michał Górny
2019-07-23 14:10 Kent Fredric
2019-06-28 9:08 Michał Górny
2019-06-17 9:12 Michał Górny
2019-06-17 6:25 Michał Górny
2019-05-29 0:32 Aaron Bauman
2019-05-18 11:27 Michał Górny
2019-05-18 11:27 Michał Górny
2019-05-18 11:27 Michał Górny
2019-04-07 17:18 Mikle Kolyada
2019-04-07 14:43 Mikle Kolyada
2019-04-07 14:41 Mikle Kolyada
2018-12-02 11:12 Mikle Kolyada
2018-11-27 16:01 Tobias Klausmann
2018-11-24 13:40 Sergei Trofimovich
2018-11-12 13:45 Mikle Kolyada
2018-11-11 19:07 Michał Górny
2018-10-22 14:32 Michał Górny
2018-10-21 20:40 Michał Górny
2018-06-18 12:57 Michał Górny
2018-04-08 8:29 Michał Górny
2018-03-23 19:53 Markus Meier
2018-03-03 17:48 Tobias Klausmann
2018-01-10 21:22 Sergei Trofimovich
2018-01-08 8:00 Sergei Trofimovich
2018-01-07 20:32 Sergei Trofimovich
2018-01-07 13:17 Sergei Trofimovich
2018-01-05 10:59 Mikle Kolyada
2017-09-05 17:13 Michał Górny
2017-09-05 17:13 Michał Górny
2017-08-31 15:05 Michał Górny
2017-08-14 19:49 Michał Górny
2017-08-04 21:07 Amy Liffey
2017-07-24 19:04 Michał Górny
2017-06-23 9:59 Michał Górny
2016-12-10 18:01 Kent Fredric
2016-10-25 5:08 Jason Zaman
2015-10-17 18:32 Mikle Kolyada
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=1711189410.35d8c989707db1f5f055a35883f66240397d9949.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