Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxtask/files/
Date: Thu, 15 Apr 2021 18:05:55
Message-Id: 1618509927.d3b21529ec4a28b366a1585c743e46bd8d5f116d.conikost@gentoo
1 commit: d3b21529ec4a28b366a1585c743e46bd8d5f116d
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Thu Apr 15 16:26:52 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 15 18:05:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b21529
7
8 lxde-base/lxtask: remove unused patch(es)
9
10 Closes: https://github.com/gentoo/gentoo/pull/20396
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 .../lxtask/files/lxtask-0.1.7-fix-no-common.patch | 73 ----------------------
16 1 file changed, 73 deletions(-)
17
18 diff --git a/lxde-base/lxtask/files/lxtask-0.1.7-fix-no-common.patch b/lxde-base/lxtask/files/lxtask-0.1.7-fix-no-common.patch
19 deleted file mode 100644
20 index d986741b211..00000000000
21 --- a/lxde-base/lxtask/files/lxtask-0.1.7-fix-no-common.patch
22 +++ /dev/null
23 @@ -1,73 +0,0 @@
24 -diff -Naur a/src/interface.c b/src/interface.c
25 ---- a/src/interface.c 2016-02-21 01:06:17.000000000 +0100
26 -+++ b/src/interface.c 2016-09-13 19:37:28.038350050 +0200
27 -@@ -26,6 +26,18 @@
28 - #include <glib/gi18n.h>
29 - #include "interface.h"
30 -
31 -+GtkTreeStore *list_store;
32 -+GtkTreeSelection *selection;
33 -+GtkWidget *treeview;
34 -+GtkWidget *mainmenu;
35 -+GtkWidget *taskpopup;
36 -+GtkWidget *cpu_usage_progress_bar;
37 -+GtkWidget *mem_usage_progress_bar;
38 -+GtkWidget *cpu_usage_progress_bar_box;
39 -+GtkWidget *mem_usage_progress_bar_box;
40 -+
41 -+GtkTreeViewColumn *column;
42 -+
43 - #define GLADE_HOOKUP_OBJECT(component,widget,name) \
44 - g_object_set_data_full (G_OBJECT (component), name, \
45 - gtk_widget_ref (widget), (GDestroyNotify) gtk_widget_unref)
46 -diff -Naur a/src/interface.h b/src/interface.h
47 ---- a/src/interface.h 2014-09-16 14:27:52.000000000 +0200
48 -+++ b/src/interface.h 2016-09-13 19:32:22.816372893 +0200
49 -@@ -38,16 +38,15 @@
50 - #include "callbacks.h"
51 - #include "types.h"
52 -
53 --GtkTreeStore *list_store;
54 --GtkTreeSelection *selection;
55 --GtkWidget *treeview;
56 --GtkWidget *mainmenu;
57 --GtkWidget *taskpopup;
58 --GtkWidget *priopopup;
59 --GtkWidget *cpu_usage_progress_bar;
60 --GtkWidget *mem_usage_progress_bar;
61 --GtkWidget *cpu_usage_progress_bar_box;
62 --GtkWidget *mem_usage_progress_bar_box;
63 -+extern GtkTreeStore *list_store;
64 -+extern GtkTreeSelection *selection;
65 -+extern GtkWidget *treeview;
66 -+extern GtkWidget *mainmenu;
67 -+extern GtkWidget *taskpopup;
68 -+extern GtkWidget *cpu_usage_progress_bar;
69 -+extern GtkWidget *mem_usage_progress_bar;
70 -+extern GtkWidget *cpu_usage_progress_bar_box;
71 -+extern GtkWidget *mem_usage_progress_bar_box;
72 -
73 - enum {
74 - COLUMN_NAME = 0,
75 -@@ -61,7 +60,7 @@
76 - COLUMN_PPID
77 - };
78 -
79 --GtkTreeViewColumn *column;
80 -+extern GtkTreeViewColumn *column;
81 -
82 - void change_list_store_view(void);
83 - void create_list_store(void);
84 -diff -Naur a/src/types.h b/src/types.h
85 ---- a/src/types.h 2014-09-16 14:27:52.000000000 +0200
86 -+++ b/src/types.h 2016-09-13 19:25:51.014402217 +0200
87 -@@ -77,9 +77,6 @@
88 - extern gint win_width;
89 - extern gint win_height;
90 -
91 --const gchar *custom_signal_0;
92 --const gchar *custom_signal_1;
93 --
94 - extern int page_size;
95 -
96 - #endif