Gentoo Archives: gentoo-commits

From: Denis Dupeyron <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/gigolo/
Date: Wed, 29 Nov 2017 19:37:55
Message-Id: 1511984264.365a9bf1faf2dc583d7b72bd1b28bc6087559c7a.calchan@gentoo
1 commit: 365a9bf1faf2dc583d7b72bd1b28bc6087559c7a
2 Author: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 19:37:15 2017 +0000
4 Commit: Denis Dupeyron <calchan <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 19:37:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=365a9bf1
7
8 x11-misc/gigolo: remove obsolete xfconf.eclass, migrate to EAPI6
9
10 Package-Manager: Portage-2.3.16, Repoman-2.3.6
11
12 x11-misc/gigolo/Manifest | 2 +-
13 x11-misc/gigolo/gigolo-0.4.2-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+), 1 deletion(-)
15
16 diff --git a/x11-misc/gigolo/Manifest b/x11-misc/gigolo/Manifest
17 index 5932e3c0692..18a794dc831 100644
18 --- a/x11-misc/gigolo/Manifest
19 +++ b/x11-misc/gigolo/Manifest
20 @@ -1 +1 @@
21 -DIST gigolo-0.4.2.tar.bz2 243877 SHA256 553fc78fe4e7bd2f01f3851baea7e63f6414fe652dfb4b08c60b5c4b2b909164 SHA512 d6d8c65674097fb3eae586e4c71b0f36ba64df00b2ac84c32bd83cfb0fd690ae998c22cea02194acd1f018cdfd01b42f840867425ed183fb0ad98c8d97859532 WHIRLPOOL 94140dc124b8bb15225248976b2779bdf0b4aeee478a6a6de30032689c33041eae28067b7cb434584628d8f722df0262aa761c641853f64a3a422ff1228d859f
22 +DIST gigolo-0.4.2.tar.bz2 243877 BLAKE2B 7536d8fc1a10abb465b2150785f593c88b4d0a40fc76e1f88388a1631f874ccf0169dec9328b1051c39d6334257c765b409aefeb008a4dfd30bdd9e61d43d269 SHA512 d6d8c65674097fb3eae586e4c71b0f36ba64df00b2ac84c32bd83cfb0fd690ae998c22cea02194acd1f018cdfd01b42f840867425ed183fb0ad98c8d97859532
23
24 diff --git a/x11-misc/gigolo/gigolo-0.4.2-r1.ebuild b/x11-misc/gigolo/gigolo-0.4.2-r1.ebuild
25 new file mode 100644
26 index 00000000000..2530f306a06
27 --- /dev/null
28 +++ b/x11-misc/gigolo/gigolo-0.4.2-r1.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="a frontend to easily manage connections to remote filesystems using GIO/GVfs"
38 +HOMEPAGE="http://www.uvena.de/gigolo/ https://goodies.xfce.org/projects/applications/gigolo"
39 +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND=">=dev-libs/glib-2.16
47 + >=x11-libs/gtk+-2.12:2"
48 +DEPEND="${RDEPEND}
49 + dev-util/intltool
50 + virtual/pkgconfig"
51 +
52 +src_prepare() {
53 + rm -f COPYING || die
54 + default
55 +}
56 +
57 +pkg_postinst() {
58 + xdg_desktop_database_update
59 +}
60 +
61 +pkg_postrm() {
62 + xdg_desktop_database_update
63 +}