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: Mon, 30 Nov 2020 17:44:14
Message-Id: 1606758247.9845112a4aad94a9c19b9530a8afd77f326960de.mgorny@gentoo
1 commit: 9845112a4aad94a9c19b9530a8afd77f326960de
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 30 17:14:07 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 17:44:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9845112a
7
8 app-editors/mousepad: Bump to 0.5.0
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.0.ebuild | 35 ++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest
17 index f7966813b6e..3584a6f7b9d 100644
18 --- a/app-editors/mousepad/Manifest
19 +++ b/app-editors/mousepad/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mousepad-0.4.2.tar.bz2 696014 BLAKE2B 2591f177b59147e01502329939365c5f18031f3dc9100baa29cb1da04afbff26cc91cc612ea1e5ebbc2d15754375da6afbd4ae9d96399f41cf06191d7d8d7082 SHA512 f3266018ce61683dc62b6866649f3674cc363ea652de04d3f087341c61cf24fb5eb730411948e354d085792f88b59e3dba7e7712715d92711f750b33d8bfb69a
22 DIST mousepad-0.4.90.tar.bz2 808320 BLAKE2B 5a639001663d24a9d0ae126f672adb5d3a72825893e0f0d90e263596f214d76f973e0743248efee8562dc04afb09c0519ed649ca5d36b9221569490e289d687f SHA512 e839584782b09ee9d485ca4dcf05e22afb459cba269b3a15fe2dc0e3f3240bc15b1a8d7db92160b735d97d7293e67b0484b50ac3e72946b499dc65ac1097390b
23 +DIST mousepad-0.5.0.tar.bz2 810533 BLAKE2B c98fe38d65923fca2a5f2a769ad8fd0c92f77c6aff2c658e2ecd3bc3081988cb10b5dd49ba36020fe05c6f172e08f6efb825eb2c38b630dbcc6fd4d639313e15 SHA512 06cab143a3a0f98ad2aeecb0c7f034b8dede355de09632217da27dfb0675909c6cb284b227644c9ab3513a67fb23594ee63f0112ade69830d46559a8e7d65842
24
25 diff --git a/app-editors/mousepad/mousepad-0.5.0.ebuild b/app-editors/mousepad/mousepad-0.5.0.ebuild
26 new file mode 100644
27 index 00000000000..8d5d963fcc2
28 --- /dev/null
29 +++ b/app-editors/mousepad/mousepad-0.5.0.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2020 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.45.8:2=
46 + >=xfce-base/xfconf-4.12:=
47 + >=x11-libs/gtk+-3.20:3=
48 + x11-libs/gtksourceview:3.0="
49 +DEPEND="${RDEPEND}
50 + dev-lang/perl
51 + dev-util/intltool
52 + sys-devel/gettext
53 + virtual/pkgconfig"
54 +
55 +pkg_postinst() {
56 + gnome2_schemas_update
57 + xdg_desktop_database_update
58 + xdg_icon_cache_update
59 +}
60 +
61 +pkg_postrm() {
62 + gnome2_schemas_update
63 + xdg_desktop_database_update
64 + xdg_icon_cache_update
65 +}