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/xfce4-panel/
Date: Fri, 16 Jul 2021 06:12:12
Message-Id: 1626415918.4e3370dd0bcad6bf6a2e86ba5eb37558c5005b4b.mgorny@gentoo
1 commit: 4e3370dd0bcad6bf6a2e86ba5eb37558c5005b4b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 05:51:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 06:11:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3370dd
7
8 xfce-base/xfce4-panel: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-base/xfce4-panel/Manifest | 1 -
13 xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild | 71 ----------------------
14 2 files changed, 72 deletions(-)
15
16 diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
17 index b8516e28792..15f90a6c69f 100644
18 --- a/xfce-base/xfce4-panel/Manifest
19 +++ b/xfce-base/xfce4-panel/Manifest
20 @@ -1,2 +1 @@
21 -DIST xfce4-panel-4.16.2.tar.bz2 1381569 BLAKE2B d4b8455e31f942d0facfc0d90b14fb050142b3d8b3d0e61d5b687f973769e2888ea7f058c4f6a86f96dbd67329719ef49e72896774ac36591c2793847aa411ba SHA512 25b817a9abc4cea57cd29c4558236a5581a03ccb50796c83f7ca1b292e8aa83c7a39b089619959b6f6fd9c5c8bbdf950d9bba1b5c4fb3d0a95cabad8a9ca763d
22 DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37 SHA512 08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa
23
24 diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
25 deleted file mode 100644
26 index 8d87e930110..00000000000
27 --- a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,71 +0,0 @@
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 vala xdg-utils
36 -
37 -DESCRIPTION="Panel for the Xfce desktop environment"
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 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
44 -IUSE="+dbusmenu introspection vala"
45 -REQUIRED_USE="vala? ( introspection )"
46 -
47 -RDEPEND=">=dev-libs/glib-2.50
48 - >=x11-libs/cairo-1
49 - >=x11-libs/gtk+-3.22:3[introspection?]
50 - x11-libs/libX11
51 - x11-libs/libwnck:3
52 - >=xfce-base/exo-0.11.2:=
53 - >=xfce-base/garcon-0.5:=
54 - >=xfce-base/libxfce4ui-4.15.8:=
55 - >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
56 - >=xfce-base/xfconf-4.13:=
57 - dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
58 - introspection? ( dev-libs/gobject-introspection:= )
59 -"
60 -DEPEND="${RDEPEND}"
61 -BDEPEND="
62 - vala? ( $(vala_depend) )
63 - dev-lang/perl
64 - dev-util/gtk-doc-am
65 - dev-util/intltool
66 - sys-devel/gettext
67 - virtual/pkgconfig
68 -"
69 -
70 -src_prepare() {
71 - # stupid vala.eclass...
72 - default
73 -}
74 -
75 -src_configure() {
76 - local myconf=(
77 - $(use_enable introspection)
78 - $(use_enable dbusmenu dbusmenu-gtk3)
79 - $(use_enable vala)
80 - )
81 -
82 - use vala && vala_src_prepare
83 - econf "${myconf[@]}"
84 -}
85 -
86 -src_install() {
87 - default
88 -
89 - find "${D}" -name '*.la' -delete || die
90 -}
91 -
92 -pkg_postinst() {
93 - xdg_icon_cache_update
94 - xdg_desktop_database_update
95 -}
96 -
97 -pkg_postrm() {
98 - xdg_icon_cache_update
99 - xdg_desktop_database_update
100 -}