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, 18 May 2019 11:27:33 +0000 (UTC) [thread overview]
Message-ID: <1558178841.ca0460e4a3f24c5f6a80a2f66406868434b46b19.mgorny@gentoo> (raw)
commit: ca0460e4a3f24c5f6a80a2f66406868434b46b19
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 11:15:32 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 11:27:21 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0460e4
xfce-base/xfconf: Bump to 4.13.7
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
xfce-base/xfconf/Manifest | 1 +
xfce-base/xfconf/xfconf-4.13.7.ebuild | 75 +++++++++++++++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/xfce-base/xfconf/Manifest b/xfce-base/xfconf/Manifest
index 1af9d0406ac..2e3c4adf989 100644
--- a/xfce-base/xfconf/Manifest
+++ b/xfce-base/xfconf/Manifest
@@ -1,3 +1,4 @@
DIST xfconf-4.12.1.tar.bz2 564131 BLAKE2B 893210f19d743559b0879e9e38004400c8f8af0b6b8c72db4602360eee2ee7058f074e86f2f9e4397f6e728eae0148d3621424461d53e84ad768d7f0673ed08a SHA512 114dba6a78d43b25eebfd9ef78beec75391b0c77e736e66ae2b04fe97dc281f93d05467ddfdd63a5067f44de135347564fe55928ae7de72f0984339db411d77f
DIST xfconf-4.13.5.tar.bz2 609549 BLAKE2B ccd5e907752d8fa5b5c4a7468c9eeec4083709bbe11b14ae79b20938e3b7c6ff097805be56b3f8cee146e2d0c0ffb272b856e559d1699c4e40d7c140fe7515fe SHA512 34e6b99be0b288707f8632c5fe4f2e66e01ec3950f4d194a7007afb4bc1cfe8bea44f8f80873de2364680481921332c9860b23bca4ced94ecb95c9199df5315b
DIST xfconf-4.13.6.tar.bz2 578107 BLAKE2B 6348b536978d1d3f611783e530be7b694c46ad3030ed02e04a6e38122028068ec8392f34667e5d54a09d9115db191d6366619707e117f2b37f3ad8f14a3de2c2 SHA512 0eaa1ad428be5bea97b891a6bf0488293064e31d4869b70389ded940a23f9d8cffd0801dd98932658a67e57d6a0da95998872202cf7756aa24caa8f9d2c5f755
+DIST xfconf-4.13.7.tar.bz2 618676 BLAKE2B 8f7dd97530d4781e2d46d8139800f54991d932db5de0050e66d711bafef1daa0355383fd139789037a92b462042563a9aa2269295785b2f8217a0e9ff6a00c80 SHA512 113fb22b449a318b0cca6521914eda6cfeb6b2056a1aad4d49a5e83c28661c843c9912bbf7eddb7d6cd1f172b532c73dd02259bf6fabe60a377024f9f8d5825d
diff --git a/xfce-base/xfconf/xfconf-4.13.7.ebuild b/xfce-base/xfconf/xfconf-4.13.7.ebuild
new file mode 100644
index 00000000000..54e751d9506
--- /dev/null
+++ b/xfce-base/xfconf/xfconf-4.13.7.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit virtualx xdg-utils
+
+DESCRIPTION="A configuration management system for Xfce"
+HOMEPAGE="https://www.xfce.org/projects/"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="debug perl"
+
+RDEPEND=">=dev-libs/glib-2.42:=
+ >=xfce-base/libxfce4util-4.10:=
+ perl? (
+ dev-lang/perl:=[-build(-)]
+ dev-perl/glib-perl
+ )
+ !<xfce-base/xfce4-panel-4.13.1
+ !<xfce-base/xfce4-settings-4.13.1"
+DEPEND="${RDEPEND}
+ dev-util/gdbus-codegen
+ dev-util/glib-utils
+ dev-util/intltool
+ virtual/pkgconfig
+ sys-devel/gettext
+ perl? (
+ dev-perl/ExtUtils-Depends
+ dev-perl/ExtUtils-PkgConfig
+ )"
+
+src_configure() {
+ local myconf=(
+ $(use_enable perl perl-bindings)
+ $(use_enable debug checks)
+ --with-perl-options=INSTALLDIRS=vendor
+ )
+
+ xdg_environment_reset
+ econf "${myconf[@]}"
+}
+
+src_compile() {
+ emake OTHERLDFLAGS="${LDFLAGS}"
+}
+
+my_test() {
+ local out=$(./xfconfd/xfconfd --daemon) || return 1
+ eval "${out}"
+
+ local ret=0
+ # https://bugzilla.xfce.org/show_bug.cgi?id=13840
+ nonfatal emake -j1 check || ret=1
+
+ kill "${XFCONFD_PID}" || ewarn "Unable to kill xfconfd"
+ return "${ret}"
+}
+
+src_test() {
+ virtx my_test
+}
+
+src_install() {
+ default
+ find "${D}" -type f -name '*.la' -delete || die
+
+ if use perl; then
+ find "${ED}" -type f -name perllocal.pod -delete || die
+ find "${ED}" -depth -mindepth 1 -type d -empty -delete || die
+ fi
+}
next reply other threads:[~2019-05-18 11:27 UTC|newest]
Thread overview: 102+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-18 11:27 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-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-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=1558178841.ca0460e4a3f24c5f6a80a2f66406868434b46b19.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