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-extra/xfce4-panel-profiles/
Date: Tue, 29 Dec 2020 11:46:08
Message-Id: 1609242355.7aa4472908aed2d823dc748ad27b1a962b9dcf91.mgorny@gentoo
1 commit: 7aa4472908aed2d823dc748ad27b1a962b9dcf91
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 08:51:42 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 11:45:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aa44729
7
8 xfce-extra/xfce4-panel-profiles: Bump to 1.0.12
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-panel-profiles/Manifest | 1 +
13 .../xfce4-panel-profiles-1.0.12.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-panel-profiles/Manifest b/xfce-extra/xfce4-panel-profiles/Manifest
17 index 89037135d18..2239d1704a9 100644
18 --- a/xfce-extra/xfce4-panel-profiles/Manifest
19 +++ b/xfce-extra/xfce4-panel-profiles/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-panel-profiles-1.0.10.tar.bz2 62196 BLAKE2B 205469ab841843395429605660864a4d9496dde942ca5c8a587f32bc7143c7076f362ea0f9a488f20df3ce8ee357c4b236d3077ac07497673b3214d8fa02c20e SHA512 efd59d585cc916cfc9d87961a58f05dad754a70f1971d9c49a071e20b96bb28e6bd5fa13508430e5c0f15976db7c438d2c68e0ae5936563388fbbe02fffdb50a
22 +DIST xfce4-panel-profiles-1.0.12.tar.bz2 83399 BLAKE2B 82f62b7472ae8e271a8c41151c2153e62f1589b868cd4a682f0e56acfa3aedcb6104b14ef99f776d09fe6ac854420905ce335c9d3d05d524570db70d847731d8 SHA512 cf308a1a9d68832a3b907787754791d6e8b227400d21a0bde2ed99d7afbb64c6137bbe4b7ab6ceb4c896a67ecbac29d41089c857d432467cbaba631a7ef77505
23
24 diff --git a/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.12.ebuild b/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.12.ebuild
25 new file mode 100644
26 index 00000000000..3e69af3e807
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-panel-profiles/xfce4-panel-profiles-1.0.12.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{6..9} )
36 +inherit python-single-r1 xdg-utils
37 +
38 +DESCRIPTION="Simple application to manage Xfce panel layouts"
39 +HOMEPAGE="https://git.xfce.org/apps/xfce4-panel-profiles/about/"
40 +SRC_URI="https://archive.xfce.org/src/apps/xfce4-panel-profiles/$(ver_cut 1-2)/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
47 +
48 +BDEPEND="${PYTHON_DEPS}"
49 +RDEPEND="${BDEPEND}
50 + dev-libs/gobject-introspection
51 + $(python_gen_cond_dep '
52 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
53 + ')
54 + x11-libs/gtk+:3[introspection]
55 + xfce-base/libxfce4ui[introspection]
56 + xfce-base/xfce4-panel"
57 +
58 +src_configure() {
59 + # home-made configure script, yay!
60 + ./configure \
61 + --prefix="${EPREFIX}/usr" \
62 + --python="${EPYTHON}" \
63 + --docdir="${EPREFIX}/usr/share/doc/${PF}" || die
64 +}
65 +
66 +pkg_postinst() {
67 + xdg_icon_cache_update
68 +}
69 +
70 +pkg_postrm() {
71 + xdg_icon_cache_update
72 +}