summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Kohler <bkohler@gentoo.org>2020-06-24 08:36:23 -0500
committerBen Kohler <bkohler@gentoo.org>2020-06-24 08:36:36 -0500
commite747c7300f130c6dd10c69757f9334f7fa15df2d (patch)
tree7a55018611f0a3b3dbe83f7a9b0fffe721d6de6e /net-misc
parentdev-libs/rocm-device-libs: 3.5.1 version bump (diff)
downloadgentoo-e747c7300f130c6dd10c69757f9334f7fa15df2d.tar.gz
gentoo-e747c7300f130c6dd10c69757f9334f7fa15df2d.tar.bz2
gentoo-e747c7300f130c6dd10c69757f9334f7fa15df2d.zip
net-misc/remmina: bump to 1.4.7, drop old
Package-Manager: Portage-2.3.102, Repoman-2.3.23 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/remmina/Manifest2
-rw-r--r--net-misc/remmina/files/remmina-1.4.6-with-examples.patch34
-rw-r--r--net-misc/remmina/remmina-1.4.7.ebuild (renamed from net-misc/remmina/remmina-1.4.6.ebuild)1
3 files changed, 1 insertions, 36 deletions
diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index 585685b76ebe..93f29e231569 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,3 +1,3 @@
DIST Remmina-v1.4.3.tar.gz 1705751 BLAKE2B 4d49b5d5da4017cc1870a5e37a73db767862997cffdd58b080ab5707eeb293eed7e756ca974a4f4922bb9417e94610fe07b1e774f5ad7e269e797362ff264e83 SHA512 9f555f9ff60e2a136f6379a0f2828d091aa972dcff7ebd09eaf1834dc10f506d218e5cb6856c17f625c1040a11240da2ed5ebe9f4fe32a083494cfcbbdef1a41
DIST Remmina-v1.4.5.tar.gz 1787506 BLAKE2B 095a01cca168daaef9ef59ff5adb9bb475467e8e8c42cac74a1a605627b09aa7246aa941b514b0de29739516aa988148f377040ed8629df3d5b17f0b1158cf76 SHA512 fec07b488db8d438aa6a0263e13557c10f1401a81b3371a2da03a1037d51f8e58e88652a15c6d6ce9e02535ef93ed0f9c5b674ab5efab430380f4b7dd57c4d9d
-DIST Remmina-v1.4.6.tar.gz 1895441 BLAKE2B 38dbda1976f3af3ad89c84eaecf50c42a2a22186dd013d30ae0cea83f5ee54af1443c196b79c1b4684e6afbc6f3d8fc8461fae18806476b8ae1a79148a2ccb12 SHA512 8b918502622957f6a1637d5d79ec605f7bf1c164f902c76a3a65dc316a8ccd11de63066182ffad4783bcb7f86d5e04ca6462f6a5d2e4256c4ae14c6f483419ea
+DIST Remmina-v1.4.7.tar.gz 1908687 BLAKE2B a6656821d727914f70bafe50d5c3764e3c36a4753c618048b91eadc1fa27b8f03bcd313b99cfd46cadc446b85b583994528895f9fb755d6c8ee28e0b0bab66d1 SHA512 ebe1e62e090062107ed6674d494255bac9e3d175553bc5ae949aa1bfc9e1de4b59f35f523ee36b08bb02580513d3b585344b9864001dd991cac656f1c13116e9
diff --git a/net-misc/remmina/files/remmina-1.4.6-with-examples.patch b/net-misc/remmina/files/remmina-1.4.6-with-examples.patch
deleted file mode 100644
index 259ef19e0fc8..000000000000
--- a/net-misc/remmina/files/remmina-1.4.6-with-examples.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff -Nupr a/plugins/tool_hello_world/plugin.c b/plugins/tool_hello_world/plugin.c
---- a/plugins/tool_hello_world/plugin.c 2020-06-08 22:07:44.000000000 +0200
-+++ b/plugins/tool_hello_world/plugin.c 2020-06-10 20:18:48.495507560 +0200
-@@ -42,17 +42,19 @@
- #include <gdk/gdkx.h>
-
- static RemminaPluginService *remmina_plugin_service = NULL;
-+#define remmina_plugin_debug(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt __VA_OPT__(,) __VA_ARGS__)
-+
-
- static void remmina_plugin_tool_init(RemminaProtocolWidget *gp)
- {
- TRACE_CALL(__func__);
-- remmina_plugin_service->_debug("[%s] Plugin init", PLUGIN_NAME);
-+ remmina_plugin_debug("[%s] Plugin init", PLUGIN_NAME);
- }
-
- static gboolean remmina_plugin_tool_open_connection(RemminaProtocolWidget *gp)
- {
- TRACE_CALL(__func__);
-- remmina_plugin_service->_debug("[%s] Plugin open connection", PLUGIN_NAME);
-+ remmina_plugin_debug("[%s] Plugin open connection", PLUGIN_NAME);
-
- GtkDialog *dialog;
- dialog = GTK_DIALOG(gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL | GTK_DIALOG_USE_HEADER_BAR,
-@@ -65,7 +67,7 @@ static gboolean remmina_plugin_tool_open
- static gboolean remmina_plugin_tool_close_connection(RemminaProtocolWidget *gp)
- {
- TRACE_CALL(__func__);
-- remmina_plugin_service->_debug("[%s] Plugin close connection", PLUGIN_NAME);
-+ remmina_plugin_debug("[%s] Plugin close connection", PLUGIN_NAME);
- remmina_plugin_service->protocol_plugin_emit_signal(gp, "disconnect");
- return FALSE;
- }
diff --git a/net-misc/remmina/remmina-1.4.6.ebuild b/net-misc/remmina/remmina-1.4.7.ebuild
index 8902bb75ac42..f73e076ebcd8 100644
--- a/net-misc/remmina/remmina-1.4.6.ebuild
+++ b/net-misc/remmina/remmina-1.4.7.ebuild
@@ -54,7 +54,6 @@ RDEPEND="
"
DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
-PATCHES=( "${FILESDIR}"/${P}-with-examples.patch )
S="${WORKDIR}/${MY_P}"