Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xpad/
Date: Fri, 20 May 2022 01:17:24
Message-Id: 1653009386.aaabe6ee3dfa833a81675a67064c91cea9034f45.sam@gentoo
1 commit: aaabe6ee3dfa833a81675a67064c91cea9034f45
2 Author: Philipp Rösner <rndxelement <AT> protonmail <DOT> com>
3 AuthorDate: Thu May 19 20:36:16 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 20 01:16:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaabe6ee
7
8 x11-misc/xpad: add 5.8.0
9
10 Signed-off-by: Philipp Rösner <rndxelement <AT> protonmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/25563
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 x11-misc/xpad/Manifest | 1 +
15 x11-misc/xpad/xpad-5.8.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++++++
16 2 files changed, 45 insertions(+)
17
18 diff --git a/x11-misc/xpad/Manifest b/x11-misc/xpad/Manifest
19 index 8da6af7e465c..e3461617d1a4 100644
20 --- a/x11-misc/xpad/Manifest
21 +++ b/x11-misc/xpad/Manifest
22 @@ -1,2 +1,3 @@
23 DIST xpad-5.4.0.tar.bz2 163394 BLAKE2B 478e96b6c09748f4643d287887f8432642f42e6786e6473832328f7d1202a1a23d96f2a06859e8da096b0e6c420df06269b6c2459e67cbceb29b9f569d565931 SHA512 a20b1d16d0d9e4cb0b88c969165eb9514b69a0eaef91eca8a3fb4da08ea8a2db32891de3c8a2a4a97db21bf78f515c7b6f798c59ba155f480f866334fca7986f
24 DIST xpad-5.7.0.tar.bz2 162675 BLAKE2B 2166816696d2e00a261fcc8e9483841be7803121dc3669ab35fdd014728f16a47860448dd6b754836a3dfcd0fbbd1805b87e470f96c0b692fbe3a588c81ee35f SHA512 ab9319473cbec9a7022e520e2284853270fccca88ad19e8cb52024ce79a2dd8049251009a22b97e2387de12b9e75576e50d4d17a7236cb8e0eb4c840c3400ef3
25 +DIST xpad-5.8.0.tar.bz2 162732 BLAKE2B 6165e59b2d05e640f820f1f52811f214909f445adee4bfeb595fc3913493d15f4a25556b5edb006163a0c123b9953934c77cb519d0dd9f567170a0282637b43a SHA512 868dc820a172fc31f79fab5ee842e4f7e5646ae0239101bb442fc9a4a79b2c76052a70b635a9fa39fae22838df698a4a398188bc44dada63db16a756330c3cbd
26
27 diff --git a/x11-misc/xpad/xpad-5.8.0.ebuild b/x11-misc/xpad/xpad-5.8.0.ebuild
28 new file mode 100644
29 index 000000000000..91cad0d91599
30 --- /dev/null
31 +++ b/x11-misc/xpad/xpad-5.8.0.ebuild
32 @@ -0,0 +1,44 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +inherit autotools xdg-utils
39 +
40 +DESCRIPTION="A sticky note application for GTK"
41 +HOMEPAGE="https://launchpad.net/xpad"
42 +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
43 +
44 +LICENSE="GPL-3"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~ppc ~x86"
47 +
48 +RDEPEND="
49 + app-accessibility/at-spi2-atk
50 + dev-libs/atk
51 + >=dev-libs/glib-2.58:2
52 + x11-libs/gdk-pixbuf
53 + x11-libs/gtk+:3[X]
54 + x11-libs/gtksourceview:4
55 + x11-libs/libICE
56 + x11-libs/libSM
57 + x11-libs/pango
58 +"
59 +DEPEND="${RDEPEND}"
60 +BDEPEND=">=dev-util/intltool-0.31
61 + sys-devel/gettext
62 + virtual/pkgconfig"
63 +
64 +src_prepare() {
65 + default
66 +
67 + eautoreconf
68 +}
69 +
70 +pkg_postinst() {
71 + xdg_icon_cache_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_icon_cache_update
76 +}