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-smartbookmark-plugin/
Date: Thu, 24 Dec 2020 23:08:27
Message-Id: 1608851298.0e22433dab26b9788313d6a1596a189263b04df2.mgorny@gentoo
1 commit: 0e22433dab26b9788313d6a1596a189263b04df2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 23:02:06 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 23:08:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e22433d
7
8 xfce-extra/xfce4-smartbookmark-plugin: Bump to 0.5.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-smartbookmark-plugin/Manifest | 1 +
13 .../xfce4-smartbookmark-plugin-0.5.2.ebuild | 32 ++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-smartbookmark-plugin/Manifest b/xfce-extra/xfce4-smartbookmark-plugin/Manifest
17 index 1d25cfe832c..c534a3b0cba 100644
18 --- a/xfce-extra/xfce4-smartbookmark-plugin/Manifest
19 +++ b/xfce-extra/xfce4-smartbookmark-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-smartbookmark-plugin-0.5.1.tar.bz2 302735 BLAKE2B 3d80b78cefda5bd501578ac2b74734ac4e21f220b200239e6cd530c573b1e6b3f7e39e041d8def52bfb075cc8c584e09bc6c9249d3910a5bd98fa9d3d4cf82a2 SHA512 fb11d890f11751fd1b6ddd4ac351acde5a8b57cd67c0951ba655d762086be01527fbec59a2b4b7a191a1dcd1d4744929c8cad2b9ab30c83f3341e2ba06dd2596
22 +DIST xfce4-smartbookmark-plugin-0.5.2.tar.bz2 331765 BLAKE2B 00985170c8313b422747ae287d10c4fad6953ae1591d8f666d4beb4cf5323e3e020809f34da5228322ed396f33d43ce4608964f085724a3fcba8fc0cd2114b16 SHA512 56c5b4d366826de0b25f5665875f15d950a04ead7a3b5a7e546f27880363d47f3a1bba2c02e1f8ffd08b28cc4d4466d648740efda86ee8f378e0f8e721582b5f
23
24 diff --git a/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.2.ebuild b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.2.ebuild
25 new file mode 100644
26 index 00000000000..dc1339353b0
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.2.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="Smart bookmark plug-in for the Xfce desktop environment"
36 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin"
37 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
38 +
39 +LICENSE="GPL-2+"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
42 +IUSE=""
43 +
44 +RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
45 + >=xfce-base/xfce4-panel-4.12:="
46 +DEPEND="${RDEPEND}"
47 +BDEPEND="
48 + dev-util/intltool
49 + sys-devel/gettext
50 + virtual/pkgconfig"
51 +
52 +src_prepare() {
53 + # substitute default bugtracker
54 + sed -i -e '/bugs/s:bugs\.debian:bugs.gentoo:' src/smartbookmark.c || die
55 + default
56 +}
57 +
58 +src_install() {
59 + default
60 + find "${D}" -name '*.la' -delete || die
61 +}