Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/exo/
Date: Sun, 27 Jun 2021 06:09:35
Message-Id: 1624774121.fc1186cd084edf4f6475faa0f2c50eccec4023c2.mgorny@gentoo
1 commit: fc1186cd084edf4f6475faa0f2c50eccec4023c2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 27 06:08:41 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 27 06:08:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc1186cd
7
8 xfce-base/exo: Bump to 4.17.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/exo/Manifest | 1 +
13 xfce-base/exo/exo-4.17.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/xfce-base/exo/Manifest b/xfce-base/exo/Manifest
17 index 02497b51024..3a49a15bc5b 100644
18 --- a/xfce-base/exo/Manifest
19 +++ b/xfce-base/exo/Manifest
20 @@ -1 +1,2 @@
21 DIST exo-4.16.2.tar.bz2 881098 BLAKE2B df1ad499becd22087724abb716d07a50e432ec555d03a3892d0b81745045c334cb3705419e901697e4c3bc10328837b4f5c4055800d1b6c79c9cfc503427643b SHA512 9c1252d78f5bb900254841a79f1c1b952cb60d9d0197e184266c35a86c340140cdff2460fa83f6fabb66380e2b3d7ab8a08719b4f4784d2215dde51410ce33e8
22 +DIST exo-4.17.0.tar.bz2 876215 BLAKE2B 252efe98447ff9f7437370d0223f76b64b804eab32d173b77ba1644984faa2ae061d3b6434ab92c952c366ee520900bb26f6542ddca2dc86aade84626517f54c SHA512 9551c0e223b105348c886e52de6879428b672c51766a3277c81e4458389e4b129491cdc81c7b535278da6bc5d97f15f4ce509d5f9597eb6c85546b06b5486312
23
24 diff --git a/xfce-base/exo/exo-4.17.0.ebuild b/xfce-base/exo/exo-4.17.0.ebuild
25 new file mode 100644
26 index 00000000000..89520e8b9e9
27 --- /dev/null
28 +++ b/xfce-base/exo/exo-4.17.0.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="Extensions, widgets and framework library with session support for Xfce"
38 +HOMEPAGE="https://www.xfce.org/projects/"
39 +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+ LGPL-2.1+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.50
47 + >=x11-libs/gtk+-3.22:3
48 + >=xfce-base/libxfce4ui-4.15.1:=[gtk3(+)]
49 + >=xfce-base/libxfce4util-4.12:="
50 +DEPEND="${RDEPEND}"
51 +BDEPEND="
52 + dev-util/gtk-doc-am
53 + dev-util/intltool
54 + >=dev-util/xfce4-dev-tools-4.16.0
55 + sys-devel/gettext
56 + virtual/pkgconfig"
57 +
58 +src_install() {
59 + default
60 + find "${D}" -name '*.la' -delete || die
61 +}
62 +
63 +pkg_postinst() {
64 + xdg_icon_cache_update
65 +}
66 +
67 +pkg_postrm() {
68 + xdg_icon_cache_update
69 +}