[arch-commits] Commit in ristretto/trunk (PKGBUILD upstream-fixes.patch)

2018-06-28 Thread Christian Hesse via arch-commits
Date: Thursday, June 28, 2018 @ 20:31:37
  Author: eworm
Revision: 347637

upgpkg: ristretto 0.8.3-1

new upstream release

Modified:
  ristretto/trunk/PKGBUILD
Deleted:
  ristretto/trunk/upstream-fixes.patch

--+
 PKGBUILD |   16 +
 upstream-fixes.patch |  154 -
 2 files changed, 4 insertions(+), 166 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-28 20:31:36 UTC (rev 347636)
+++ PKGBUILD2018-06-28 20:31:37 UTC (rev 347637)
@@ -5,8 +5,8 @@
 # Contributor: Ronald van Haren 
 
 pkgname=ristretto
-pkgver=0.8.2
-pkgrel=2
+pkgver=0.8.3
+pkgrel=1
 pkgdesc='Fast and lightweight picture-viewer for Xfce4'
 arch=('x86_64')
 url='http://docs.xfce.org/apps/ristretto/start'
@@ -16,17 +16,9 @@
 optdepends=('librsvg: SVG support'
 'tumbler: thumbnailing support')
 groups=('xfce4-goodies')
-source=("https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;
-upstream-fixes.patch)
-md5sums=('a8d8bb6b8fa7f868cfa3ae778630946e'
- '6d8eb1cd430de4b4d8227cb12a8bb063')
+source=("https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('8c9c11760816dfd9ed57fb8b9df86c6a98a2604ab551be3133996a1c32ca2665')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  # Fix opening symlinks and urls (FS#54705)
-  patch -Np1 -i ../upstream-fixes.patch
-}
-
 build() {
   cd "$pkgname-$pkgver"
 

Deleted: upstream-fixes.patch
===
--- upstream-fixes.patch2018-06-28 20:31:36 UTC (rev 347636)
+++ upstream-fixes.patch2018-06-28 20:31:37 UTC (rev 347637)
@@ -1,154 +0,0 @@
-From 19e709c4885204be640ccb053de8006e10edb12f Mon Sep 17 00:00:00 2001
-From: Igor 
-Date: Sun, 5 Feb 2017 20:12:46 +0300
-Subject: Fix GLib-GObject-CRITICAL in directory monitoring code
-

- src/image_list.c | 13 -
- 1 file changed, 8 insertions(+), 5 deletions(-)
-
-diff --git a/src/image_list.c b/src/image_list.c
-index 427d7c3..f37dd8c 100644
 a/src/image_list.c
-+++ b/src/image_list.c
-@@ -836,11 +836,14 @@ rstto_image_list_monitor_dir (
- NULL,
- NULL);
- 
--g_signal_connect (
--G_OBJECT(monitor),
--"changed",
--G_CALLBACK (cb_file_monitor_changed),
--image_list);
-+if ( monitor != NULL )
-+{
-+g_signal_connect (
-+G_OBJECT (monitor),
-+"changed",
-+G_CALLBACK (cb_file_monitor_changed),
-+image_list);
-+}
- }
- 
- if (image_list->priv->image_monitors)
--- 
-cgit v1.1
-
-From dc632fd6669222a93dae45d039f33b537c78ac99 Mon Sep 17 00:00:00 2001
-From: Igor 
-Date: Sun, 5 Feb 2017 20:29:48 +0300
-Subject: Fix loading image from an URL
-

- src/file.c | 16 ++--
- 1 file changed, 10 insertions(+), 6 deletions(-)
-
-diff --git a/src/file.c b/src/file.c
-index d915340..00a19bd 100644
 a/src/file.c
-+++ b/src/file.c
-@@ -398,20 +398,24 @@ rstto_file_get_collate_key ( RsttoFile *r_file )
- const gchar *
- rstto_file_get_content_type ( RsttoFile *r_file )
- {
--const gchar *content_type = NULL;
-+const gchar *file_path, *content_type = NULL;
- 
- if ( NULL == r_file->priv->content_type )
- {
- #if HAVE_MAGIC_H
--magic_t magic = magic_open(MAGIC_MIME_TYPE);
-+magic_t magic = magic_open (MAGIC_MIME_TYPE);
- if ( magic != NULL )
- {
--if ( magic_load(magic, NULL) == 0 )
-+if ( magic_load (magic, NULL) == 0 )
- {
--content_type = magic_file(magic, rstto_file_get_path(r_file));
--if ( NULL != content_type )
-+file_path = rstto_file_get_path (r_file);
-+if ( file_path != NULL )
- {
--r_file->priv->content_type = g_strdup (content_type);
-+content_type = magic_file (magic, file_path);
-+if ( NULL != content_type )
-+{
-+r_file->priv->content_type = g_strdup (content_type);
-+}
- }
- }
- magic_close(magic);
--- 
-cgit v1.1
-
-From 6cc891de661ead1359ac83bda22e4de880185b47 Mon Sep 17 00:00:00 2001
-From: Igor 
-Date: Sun, 5 Feb 2017 20:40:45 +0300
-Subject: Simplify the code
-

- src/file.c | 17 +++--
- 1 file changed, 7 insertions(+), 10 deletions(-)
-
-diff --git a/src/file.c b/src/file.c
-index 00a19bd..fd2ff19 100644
 a/src/file.c
-+++ b/src/file.c
-@@ -404,21 +404,18 @@ rstto_file_get_content_type ( RsttoFile *r_file )
- {
- #if HAVE_MAGIC_H
- magic_t magic = magic_open (MAGIC_MIME_TYPE);
--if ( magic != NULL )
-+if ( NULL != magic )
- 

[arch-commits] Commit in ristretto/trunk (PKGBUILD upstream-fixes.patch)

2018-01-24 Thread Balló György via arch-commits
Date: Wednesday, January 24, 2018 @ 19:25:33
  Author: bgyorgy
Revision: 286651

upgpkg: ristretto 0.8.2-2

Fix opening symlinks and urls (FS#54705)

Added:
  ristretto/trunk/upstream-fixes.patch
Modified:
  ristretto/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++-
 upstream-fixes.patch |  154 +
 2 files changed, 165 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-24 19:25:31 UTC (rev 286650)
+++ PKGBUILD2018-01-24 19:25:33 UTC (rev 286651)
@@ -6,7 +6,7 @@
 
 pkgname=ristretto
 pkgver=0.8.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Fast and lightweight picture-viewer for Xfce4'
 arch=('x86_64')
 url='http://docs.xfce.org/apps/ristretto/start'
@@ -16,9 +16,17 @@
 optdepends=('librsvg: SVG support'
 'tumbler: thumbnailing support')
 groups=('xfce4-goodies')
-source=("https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;)
-md5sums=('a8d8bb6b8fa7f868cfa3ae778630946e')
+source=("https://archive.xfce.org/src/apps/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2;
+upstream-fixes.patch)
+md5sums=('a8d8bb6b8fa7f868cfa3ae778630946e'
+ '6d8eb1cd430de4b4d8227cb12a8bb063')
 
+prepare() {
+  cd "$pkgname-$pkgver"
+  # Fix opening symlinks and urls (FS#54705)
+  patch -Np1 -i ../upstream-fixes.patch
+}
+
 build() {
   cd "$pkgname-$pkgver"
 

Added: upstream-fixes.patch
===
--- upstream-fixes.patch(rev 0)
+++ upstream-fixes.patch2018-01-24 19:25:33 UTC (rev 286651)
@@ -0,0 +1,154 @@
+From 19e709c4885204be640ccb053de8006e10edb12f Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Sun, 5 Feb 2017 20:12:46 +0300
+Subject: Fix GLib-GObject-CRITICAL in directory monitoring code
+
+---
+ src/image_list.c | 13 -
+ 1 file changed, 8 insertions(+), 5 deletions(-)
+
+diff --git a/src/image_list.c b/src/image_list.c
+index 427d7c3..f37dd8c 100644
+--- a/src/image_list.c
 b/src/image_list.c
+@@ -836,11 +836,14 @@ rstto_image_list_monitor_dir (
+ NULL,
+ NULL);
+ 
+-g_signal_connect (
+-G_OBJECT(monitor),
+-"changed",
+-G_CALLBACK (cb_file_monitor_changed),
+-image_list);
++if ( monitor != NULL )
++{
++g_signal_connect (
++G_OBJECT (monitor),
++"changed",
++G_CALLBACK (cb_file_monitor_changed),
++image_list);
++}
+ }
+ 
+ if (image_list->priv->image_monitors)
+-- 
+cgit v1.1
+
+From dc632fd6669222a93dae45d039f33b537c78ac99 Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Sun, 5 Feb 2017 20:29:48 +0300
+Subject: Fix loading image from an URL
+
+---
+ src/file.c | 16 ++--
+ 1 file changed, 10 insertions(+), 6 deletions(-)
+
+diff --git a/src/file.c b/src/file.c
+index d915340..00a19bd 100644
+--- a/src/file.c
 b/src/file.c
+@@ -398,20 +398,24 @@ rstto_file_get_collate_key ( RsttoFile *r_file )
+ const gchar *
+ rstto_file_get_content_type ( RsttoFile *r_file )
+ {
+-const gchar *content_type = NULL;
++const gchar *file_path, *content_type = NULL;
+ 
+ if ( NULL == r_file->priv->content_type )
+ {
+ #if HAVE_MAGIC_H
+-magic_t magic = magic_open(MAGIC_MIME_TYPE);
++magic_t magic = magic_open (MAGIC_MIME_TYPE);
+ if ( magic != NULL )
+ {
+-if ( magic_load(magic, NULL) == 0 )
++if ( magic_load (magic, NULL) == 0 )
+ {
+-content_type = magic_file(magic, rstto_file_get_path(r_file));
+-if ( NULL != content_type )
++file_path = rstto_file_get_path (r_file);
++if ( file_path != NULL )
+ {
+-r_file->priv->content_type = g_strdup (content_type);
++content_type = magic_file (magic, file_path);
++if ( NULL != content_type )
++{
++r_file->priv->content_type = g_strdup (content_type);
++}
+ }
+ }
+ magic_close(magic);
+-- 
+cgit v1.1
+
+From 6cc891de661ead1359ac83bda22e4de880185b47 Mon Sep 17 00:00:00 2001
+From: Igor 
+Date: Sun, 5 Feb 2017 20:40:45 +0300
+Subject: Simplify the code
+
+---
+ src/file.c | 17 +++--
+ 1 file changed, 7 insertions(+), 10 deletions(-)
+
+diff --git a/src/file.c b/src/file.c
+index 00a19bd..fd2ff19 100644
+--- a/src/file.c
 b/src/file.c
+@@ -404,21 +404,18 @@ rstto_file_get_content_type ( RsttoFile *r_file )
+ {
+ #if HAVE_MAGIC_H
+ magic_t magic = magic_open (MAGIC_MIME_TYPE);
+-if ( magic != NULL )
++if ( NULL != magic )
+ {
+-