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/, app-editors/mousepad/files/
Date: Sat, 03 Jul 2021 06:21:25
Message-Id: 1625293277.31161458f6bafba5f9c305b4d1a9c8ef9baddb90.mgorny@gentoo
1 commit: 31161458f6bafba5f9c305b4d1a9c8ef9baddb90
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 3 06:20:43 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 3 06:21:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31161458
7
8 app-editors/mousepad: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-editors/mousepad/Manifest | 2 -
13 .../mousepad/files/mousepad-0.5.2-select-all.patch | 28 --------------
14 app-editors/mousepad/mousepad-0.5.3-r1.ebuild | 40 --------------------
15 app-editors/mousepad/mousepad-0.5.4.ebuild | 43 ----------------------
16 4 files changed, 113 deletions(-)
17
18 diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest
19 index d61178a747e..4fe301720c6 100644
20 --- a/app-editors/mousepad/Manifest
21 +++ b/app-editors/mousepad/Manifest
22 @@ -1,3 +1 @@
23 -DIST mousepad-0.5.3.tar.bz2 848169 BLAKE2B c5001d5a1f3c8ef820fdf2297679b8c7acae7cb08ed134529b7b1e0861e8d9b36c9495b6a207371c9e6a0f59a3f7bd41adaa678250d96ab7112427d5cfc2aa0d SHA512 596d85a9b7caa1616bd5adc2bb4f7ddbdf47d9e4a049f100581ecba9c61db5243f45d3dd8217ecaed1803c73c2221a396817790efe3898c487c12c8ce8d328c6
24 -DIST mousepad-0.5.4.tar.bz2 855416 BLAKE2B a998b2faabae1ad505da3a8fb560c731e6f5002801cdc3a4edcd515d5d75210ae509261644070e1951629271bd5956aee1e196c35c6b7e9c3ab782cd06b35ac6 SHA512 52d1d9b235b13a651ee7e6e1633074c7829c27e880033637eacdd7cd63f246d1f47d0cd2c981cf2a7eb96dbb7119204a685f00a60968e4478d5057bce8500370
25 DIST mousepad-0.5.5.tar.bz2 891263 BLAKE2B a75930385f9087f6294811c91b2a162d2e9ca2e945ec84efdfd932806211ee105d2ac2835122c2de4ea519b6728959478147d11df75ff3b00324c262983046a0 SHA512 5c6d6d048fe8a08c04ddeff7adb7d621d9beac631dd58fe5778cc8236e06ddb4ab50380eaebf4236c655b6d26058242024d5d3bbb1772607ab1f10744f8936f1
26
27 diff --git a/app-editors/mousepad/files/mousepad-0.5.2-select-all.patch b/app-editors/mousepad/files/mousepad-0.5.2-select-all.patch
28 deleted file mode 100644
29 index 46762e687c4..00000000000
30 --- a/app-editors/mousepad/files/mousepad-0.5.2-select-all.patch
31 +++ /dev/null
32 @@ -1,28 +0,0 @@
33 -From 8473653ad37a32375ff416205c0f44f771f380df Mon Sep 17 00:00:00 2001
34 -From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@g.o>
35 -Date: Mon, 1 Mar 2021 13:36:33 +0100
36 -Subject: [PATCH] Fix missing parameter to "select-all" signal
37 -
38 -Add missing "select" parameter to the "select-all" signal. This fixes
39 -undefined behavior reported in https://bugs.gentoo.org/772245.
40 -Thanks to Mart Raudsepp for figuring out the problem.
41 ----
42 - mousepad/mousepad-window.c | 2 +-
43 - 1 file changed, 1 insertion(+), 1 deletion(-)
44 -
45 -diff --git a/mousepad/mousepad-window.c b/mousepad/mousepad-window.c
46 -index 2f901b2..9ba6223 100644
47 ---- a/mousepad/mousepad-window.c
48 -+++ b/mousepad/mousepad-window.c
49 -@@ -5223,7 +5223,7 @@ mousepad_window_action_select_all (GSimpleAction *action,
50 - g_return_if_fail (MOUSEPAD_IS_DOCUMENT (window->active));
51 -
52 - /* select everything in the document */
53 -- g_signal_emit_by_name (window->active->textview, "select-all");
54 -+ g_signal_emit_by_name (window->active->textview, "select-all", TRUE);
55 - }
56 -
57 -
58 ---
59 -GitLab
60 -
61
62 diff --git a/app-editors/mousepad/mousepad-0.5.3-r1.ebuild b/app-editors/mousepad/mousepad-0.5.3-r1.ebuild
63 deleted file mode 100644
64 index ed7d2cd8fcf..00000000000
65 --- a/app-editors/mousepad/mousepad-0.5.3-r1.ebuild
66 +++ /dev/null
67 @@ -1,40 +0,0 @@
68 -# Copyright 1999-2021 Gentoo Authors
69 -# Distributed under the terms of the GNU General Public License v2
70 -
71 -EAPI=7
72 -inherit gnome2-utils xdg-utils
73 -
74 -DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
75 -HOMEPAGE="https://git.xfce.org/apps/mousepad/about/"
76 -SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
77 -
78 -LICENSE="GPL-2+"
79 -SLOT="0"
80 -KEYWORDS="amd64 ~arm ~arm64 x86"
81 -
82 -RDEPEND=">=dev-libs/glib-2.52
83 - >=xfce-base/xfconf-4.12:=
84 - >=x11-libs/gtk+-3.22:3
85 - >=x11-libs/gtksourceview-3.24:3.0"
86 -DEPEND="${RDEPEND}"
87 -BDEPEND="
88 - dev-lang/perl
89 - dev-util/intltool
90 - sys-devel/gettext
91 - virtual/pkgconfig"
92 -
93 -PATCHES=(
94 - "${FILESDIR}"/mousepad-0.5.2-select-all.patch
95 -)
96 -
97 -pkg_postinst() {
98 - gnome2_schemas_update
99 - xdg_desktop_database_update
100 - xdg_icon_cache_update
101 -}
102 -
103 -pkg_postrm() {
104 - gnome2_schemas_update
105 - xdg_desktop_database_update
106 - xdg_icon_cache_update
107 -}
108
109 diff --git a/app-editors/mousepad/mousepad-0.5.4.ebuild b/app-editors/mousepad/mousepad-0.5.4.ebuild
110 deleted file mode 100644
111 index bcb567c7aa2..00000000000
112 --- a/app-editors/mousepad/mousepad-0.5.4.ebuild
113 +++ /dev/null
114 @@ -1,43 +0,0 @@
115 -# Copyright 1999-2021 Gentoo Authors
116 -# Distributed under the terms of the GNU General Public License v2
117 -
118 -EAPI=7
119 -inherit gnome2-utils xdg-utils
120 -
121 -DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
122 -HOMEPAGE="https://git.xfce.org/apps/mousepad/about/"
123 -SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
124 -
125 -LICENSE="GPL-2+"
126 -SLOT="0"
127 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
128 -
129 -RDEPEND=">=dev-libs/glib-2.52
130 - >=xfce-base/xfconf-4.12:=
131 - >=x11-libs/gtk+-3.22:3
132 - >=x11-libs/gtksourceview-4.0.0:4"
133 -DEPEND="${RDEPEND}"
134 -BDEPEND="
135 - dev-lang/perl
136 - dev-util/intltool
137 - sys-devel/gettext
138 - virtual/pkgconfig"
139 -
140 -src_configure() {
141 - local myconf=(
142 - --enable-gtksourceview4
143 - )
144 - econf "${myconf[@]}"
145 -}
146 -
147 -pkg_postinst() {
148 - gnome2_schemas_update
149 - xdg_desktop_database_update
150 - xdg_icon_cache_update
151 -}
152 -
153 -pkg_postrm() {
154 - gnome2_schemas_update
155 - xdg_desktop_database_update
156 - xdg_icon_cache_update
157 -}