[arch-commits] Commit in libgpod/repos/extra-x86_64 (8 files)

2019-11-09 Thread Antonio Rojas via arch-commits
Date: Saturday, November 9, 2019 @ 13:00:20
  Author: arojas
Revision: 367244

archrelease: copy trunk to extra-x86_64

Added:
  libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
(from rev 367243, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
  libgpod/repos/extra-x86_64/PKGBUILD
(from rev 367243, libgpod/trunk/PKGBUILD)
  libgpod/repos/extra-x86_64/libgpod-0.8.2-pkgconfig_overlinking.patch
(from rev 367243, libgpod/trunk/libgpod-0.8.2-pkgconfig_overlinking.patch)
  libgpod/repos/extra-x86_64/libgpod-fixswig.patch
(from rev 367243, libgpod/trunk/libgpod-fixswig.patch)
Deleted:
  libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
  libgpod/repos/extra-x86_64/PKGBUILD
  libgpod/repos/extra-x86_64/libgpod-0.8.2-pkgconfig_overlinking.patch
  libgpod/repos/extra-x86_64/libgpod-fixswig.patch

-+
 0001-323-Segmentation-fault-when-opening-ipod.patch |   86 +-
 PKGBUILD|   84 -
 libgpod-0.8.2-pkgconfig_overlinking.patch   |   22 ++--
 libgpod-fixswig.patch   |   28 ++---
 4 files changed, 109 insertions(+), 111 deletions(-)

Deleted: 0001-323-Segmentation-fault-when-opening-ipod.patch
===
--- 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-11-09 12:59:56 UTC 
(rev 367243)
+++ 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-11-09 13:00:20 UTC 
(rev 367244)
@@ -1,43 +0,0 @@
-From 8dc5015ae036b219c4c9579a156886aa3a722aa5 Mon Sep 17 00:00:00 2001
-From: phantomjinx 
-Date: Sat, 9 Aug 2014 19:57:10 +0100
-Subject: [PATCH] #323 Segmentation fault when opening ipod
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-* Patch submitted in bug report from François Melchior / James Burton

- src/itdb_itunesdb.c | 6 --
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
-index 4cc771a..1e85476 100644
 a/src/itdb_itunesdb.c
-+++ b/src/itdb_itunesdb.c
-@@ -1156,6 +1156,7 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
- GHashTable *pc_dict, *track_dict;
- GValue *to_parse;
- GArray *array;
-+GValue value;
- gint i;
- guint32 mac_time;
- guint64 *dbid;
-@@ -1175,11 +1176,12 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
- 
- array = (GArray*)g_value_get_boxed (to_parse);
- for (i = 0; i < array->len; i++) {
--   if (!G_VALUE_HOLDS (g_array_index (array, GValue *, i), 
G_TYPE_HASH_TABLE)) {
-+   value = g_array_index (array, GValue, i);
-+   if (!G_VALUE_HOLDS (&value, G_TYPE_HASH_TABLE)) {
-   continue;
-}
- 
--   track_dict = g_value_get_boxed (g_array_index (array, GValue *, i));
-+   track_dict = g_value_get_boxed (&value);
-if (track_dict == NULL)
-continue;
- 
--- 
-2.12.2
-

Copied: 
libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch 
(from rev 367243, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
===
--- 0001-323-Segmentation-fault-when-opening-ipod.patch 
(rev 0)
+++ 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-11-09 13:00:20 UTC 
(rev 367244)
@@ -0,0 +1,43 @@
+From 8dc5015ae036b219c4c9579a156886aa3a722aa5 Mon Sep 17 00:00:00 2001
+From: phantomjinx 
+Date: Sat, 9 Aug 2014 19:57:10 +0100
+Subject: [PATCH] #323 Segmentation fault when opening ipod
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+* Patch submitted in bug report from François Melchior / James Burton
+---
+ src/itdb_itunesdb.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
+index 4cc771a..1e85476 100644
+--- a/src/itdb_itunesdb.c
 b/src/itdb_itunesdb.c
+@@ -1156,6 +1156,7 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ GHashTable *pc_dict, *track_dict;
+ GValue *to_parse;
+ GArray *array;
++GValue value;
+ gint i;
+ guint32 mac_time;
+ guint64 *dbid;
+@@ -1175,11 +1176,12 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ 
+ array = (GArray*)g_value_get_boxed (to_parse);
+ for (i = 0; i < array->len; i++) {
+-   if (!G_VALUE_HOLDS (g_array_index (array, GValue *, i), 
G_TYPE_HASH_TABLE)) {
++   value = g_array_index (array, GValue, i);
++   if (!G_VALUE_HOLDS (&value, G_TYPE_HASH_TABLE)) {
+   continue;
+}
+ 
+-   track_dict = g_value_get_boxed (g_array_index (array, GValue *, i));
++   track_dict = g_value_get_boxed (&value);
+if (track_dict == NULL)
+  

[arch-commits] Commit in libgpod/repos/extra-x86_64 (8 files)

2019-02-23 Thread Evangelos Foutras via arch-commits
Date: Saturday, February 23, 2019 @ 15:52:11
  Author: foutrelis
Revision: 346722

archrelease: copy trunk to extra-x86_64

Added:
  libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
(from rev 346721, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
  libgpod/repos/extra-x86_64/PKGBUILD
(from rev 346721, libgpod/trunk/PKGBUILD)
  libgpod/repos/extra-x86_64/libgpod-0.8.2-pkgconfig_overlinking.patch
(from rev 346721, libgpod/trunk/libgpod-0.8.2-pkgconfig_overlinking.patch)
  libgpod/repos/extra-x86_64/libgpod-fixswig.patch
(from rev 346721, libgpod/trunk/libgpod-fixswig.patch)
Deleted:
  libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch
  libgpod/repos/extra-x86_64/PKGBUILD
  libgpod/repos/extra-x86_64/libgpod-0.8.2-pkgconfig_overlinking.patch
  libgpod/repos/extra-x86_64/libgpod-fixswig.patch

-+
 0001-323-Segmentation-fault-when-opening-ipod.patch |   86 +-
 PKGBUILD|   86 +-
 libgpod-0.8.2-pkgconfig_overlinking.patch   |   22 ++--
 libgpod-fixswig.patch   |   28 ++---
 4 files changed, 111 insertions(+), 111 deletions(-)

Deleted: 0001-323-Segmentation-fault-when-opening-ipod.patch
===
--- 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-02-23 15:51:55 UTC 
(rev 346721)
+++ 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-02-23 15:52:11 UTC 
(rev 346722)
@@ -1,43 +0,0 @@
-From 8dc5015ae036b219c4c9579a156886aa3a722aa5 Mon Sep 17 00:00:00 2001
-From: phantomjinx 
-Date: Sat, 9 Aug 2014 19:57:10 +0100
-Subject: [PATCH] #323 Segmentation fault when opening ipod
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-* Patch submitted in bug report from François Melchior / James Burton

- src/itdb_itunesdb.c | 6 --
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
-index 4cc771a..1e85476 100644
 a/src/itdb_itunesdb.c
-+++ b/src/itdb_itunesdb.c
-@@ -1156,6 +1156,7 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
- GHashTable *pc_dict, *track_dict;
- GValue *to_parse;
- GArray *array;
-+GValue value;
- gint i;
- guint32 mac_time;
- guint64 *dbid;
-@@ -1175,11 +1176,12 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
- 
- array = (GArray*)g_value_get_boxed (to_parse);
- for (i = 0; i < array->len; i++) {
--   if (!G_VALUE_HOLDS (g_array_index (array, GValue *, i), 
G_TYPE_HASH_TABLE)) {
-+   value = g_array_index (array, GValue, i);
-+   if (!G_VALUE_HOLDS (&value, G_TYPE_HASH_TABLE)) {
-   continue;
-}
- 
--   track_dict = g_value_get_boxed (g_array_index (array, GValue *, i));
-+   track_dict = g_value_get_boxed (&value);
-if (track_dict == NULL)
-continue;
- 
--- 
-2.12.2
-

Copied: 
libgpod/repos/extra-x86_64/0001-323-Segmentation-fault-when-opening-ipod.patch 
(from rev 346721, 
libgpod/trunk/0001-323-Segmentation-fault-when-opening-ipod.patch)
===
--- 0001-323-Segmentation-fault-when-opening-ipod.patch 
(rev 0)
+++ 0001-323-Segmentation-fault-when-opening-ipod.patch 2019-02-23 15:52:11 UTC 
(rev 346722)
@@ -0,0 +1,43 @@
+From 8dc5015ae036b219c4c9579a156886aa3a722aa5 Mon Sep 17 00:00:00 2001
+From: phantomjinx 
+Date: Sat, 9 Aug 2014 19:57:10 +0100
+Subject: [PATCH] #323 Segmentation fault when opening ipod
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+* Patch submitted in bug report from François Melchior / James Burton
+---
+ src/itdb_itunesdb.c | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
+index 4cc771a..1e85476 100644
+--- a/src/itdb_itunesdb.c
 b/src/itdb_itunesdb.c
+@@ -1156,6 +1156,7 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ GHashTable *pc_dict, *track_dict;
+ GValue *to_parse;
+ GArray *array;
++GValue value;
+ gint i;
+ guint32 mac_time;
+ guint64 *dbid;
+@@ -1175,11 +1176,12 @@ static gboolean playcounts_plist_read (FImport *fimp, 
GValue *plist_data)
+ 
+ array = (GArray*)g_value_get_boxed (to_parse);
+ for (i = 0; i < array->len; i++) {
+-   if (!G_VALUE_HOLDS (g_array_index (array, GValue *, i), 
G_TYPE_HASH_TABLE)) {
++   value = g_array_index (array, GValue, i);
++   if (!G_VALUE_HOLDS (&value, G_TYPE_HASH_TABLE)) {
+   continue;
+}
+ 
+-   track_dict = g_value_get_boxed (g_array_index (array, GValue *, i));
++   track_dict = g_value_get_boxed (&value);
+if (track_dict == NULL