lxqt-archiver: upgrade 0.2.0 -> 0.3.0

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
This commit is contained in:
Andreas Müller
2020-11-05 00:33:45 +01:00
parent e69a9db9de
commit f7d3c9dd5f
2 changed files with 2 additions and 29 deletions

View File

@@ -13,9 +13,7 @@ DEPENDS += " \
libfm-qt \
"
SRC_URI += "file://0001-fix-compilation-error.patch"
SRCREV = "b6d1ac2cd834edefdb8a754d114da2a89b9323fa"
PV = "0.2.0"
SRCREV = "b3a60a87eb1381411920f674a95d7c57f6256df3"
PV = "0.3.0"
FILES_${PN} += "${datadir}/icons"

View File

@@ -1,25 +0,0 @@
From bec07e42d3446d3a60e7e77586d854fefa093160 Mon Sep 17 00:00:00 2001
From: Clara Scherer <clara.scherer@avnet.eu>
Date: Thu, 13 Aug 2020 08:13:46 +0200
Subject: [PATCH] fix compilation error
---
src/core/fr-archive.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/core/fr-archive.c b/src/core/fr-archive.c
index 75f2309..da089bc 100644
--- a/src/core/fr-archive.c
+++ b/src/core/fr-archive.c
@@ -1244,7 +1244,7 @@ copy_remote_file (FrArchive *archive,
if (! g_file_query_exists (archive->file, archive->priv->cancellable)) {
GError *error;
- error = g_error_new (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("Archive not found"));
+ error = g_error_new_literal (G_IO_ERROR, G_IO_ERROR_NOT_FOUND, _("Archive not found"));
fr_archive_copy_done (archive, FR_ACTION_LOADING_ARCHIVE, error);
g_error_free (error);
--
2.20.1