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: app-editors/mousepad/
Date: Fri, 02 Apr 2021 23:42:53
Message-Id: 1617406965.620bc39ddfd82029bbeb0a4c0c0a9ddc97c0936b.mgorny@gentoo
1 commit: 620bc39ddfd82029bbeb0a4c0c0a9ddc97c0936b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 2 23:41:39 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 2 23:42:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620bc39d
7
8 app-editors/mousepad: Bump to 0.5.4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-editors/mousepad/Manifest | 1 +
13 app-editors/mousepad/mousepad-0.5.4.ebuild | 43 ++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest
17 index ef24ac0c5a1..60731d356d4 100644
18 --- a/app-editors/mousepad/Manifest
19 +++ b/app-editors/mousepad/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mousepad-0.5.2.tar.bz2 850592 BLAKE2B a30185f7a9c276eb5744db4664cdc9ad41520ec12018118f5ddfc2d39a5a5d6545d90222660d585c5b570c9e5a32c921edf2d727adcfad6addacdaa412d094e4 SHA512 03302b95f411240d19631b48fe462e47b7d6fa9cc0df07b9de2e56f1f402a9058ab423353ab8b3530ad14889e62299c7a1bed020349cca059d13566c6b8db8b8
22 DIST mousepad-0.5.3.tar.bz2 848169 BLAKE2B c5001d5a1f3c8ef820fdf2297679b8c7acae7cb08ed134529b7b1e0861e8d9b36c9495b6a207371c9e6a0f59a3f7bd41adaa678250d96ab7112427d5cfc2aa0d SHA512 596d85a9b7caa1616bd5adc2bb4f7ddbdf47d9e4a049f100581ecba9c61db5243f45d3dd8217ecaed1803c73c2221a396817790efe3898c487c12c8ce8d328c6
23 +DIST mousepad-0.5.4.tar.bz2 855416 BLAKE2B a998b2faabae1ad505da3a8fb560c731e6f5002801cdc3a4edcd515d5d75210ae509261644070e1951629271bd5956aee1e196c35c6b7e9c3ab782cd06b35ac6 SHA512 52d1d9b235b13a651ee7e6e1633074c7829c27e880033637eacdd7cd63f246d1f47d0cd2c981cf2a7eb96dbb7119204a685f00a60968e4478d5057bce8500370
24
25 diff --git a/app-editors/mousepad/mousepad-0.5.4.ebuild b/app-editors/mousepad/mousepad-0.5.4.ebuild
26 new file mode 100644
27 index 00000000000..bcb567c7aa2
28 --- /dev/null
29 +++ b/app-editors/mousepad/mousepad-0.5.4.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit gnome2-utils xdg-utils
36 +
37 +DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
38 +HOMEPAGE="https://git.xfce.org/apps/mousepad/about/"
39 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
44 +
45 +RDEPEND=">=dev-libs/glib-2.52
46 + >=xfce-base/xfconf-4.12:=
47 + >=x11-libs/gtk+-3.22:3
48 + >=x11-libs/gtksourceview-4.0.0:4"
49 +DEPEND="${RDEPEND}"
50 +BDEPEND="
51 + dev-lang/perl
52 + dev-util/intltool
53 + sys-devel/gettext
54 + virtual/pkgconfig"
55 +
56 +src_configure() {
57 + local myconf=(
58 + --enable-gtksourceview4
59 + )
60 + econf "${myconf[@]}"
61 +}
62 +
63 +pkg_postinst() {
64 + gnome2_schemas_update
65 + xdg_desktop_database_update
66 + xdg_icon_cache_update
67 +}
68 +
69 +pkg_postrm() {
70 + gnome2_schemas_update
71 + xdg_desktop_database_update
72 + xdg_icon_cache_update
73 +}