Date: Monday, May 13, 2019 @ 19:07:30
  Author: schuay
Revision: 467162

upgpkg: soundconverter 3.0.2-1

3.0.2-1

Modified:
  soundconverter/trunk/PKGBUILD
Deleted:
  soundconverter/trunk/drop-gconf.patch

------------------+
 PKGBUILD         |   14 ++--------
 drop-gconf.patch |   74 -----------------------------------------------------
 2 files changed, 4 insertions(+), 84 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD    2019-05-13 18:53:43 UTC (rev 467161)
+++ PKGBUILD    2019-05-13 19:07:30 UTC (rev 467162)
@@ -3,8 +3,8 @@
 # Contributor: Andrea Scarpino <and...@archlinux.org>
 
 pkgname=soundconverter
-pkgver=3.0.0
-pkgrel=3
+pkgver=3.0.2
+pkgrel=1
 pkgdesc="A simple sound converter application for GNOME"
 arch=('any')
 license=('GPL3')
@@ -14,17 +14,11 @@
 optdepends=('gst-plugins-ugly: Extra media codecs'
             'gst-plugins-bad: Extra media codecs'
             'gst-libav: Extra media codecs')
-source=("https://launchpad.net/soundconverter/trunk/$pkgver/+download/soundconverter-$pkgver.tar.xz";
-        "drop-gconf.patch")
-sha512sums=('6f5518711c76e7748447805dbf16ac8622c5041c3f3cac2de6f31968aab4eff43a2fde2da48c47d12093ce1732208923d83d57b6a97ea99fbf882dfef239a62d'
-            
'703954e9f5aac320bc3639ffc8f17cb5ae9e70b4344375cef8fb3be295519a8ef1d2631ca7f54ee2702e53a55c18fa674f56bda371048096c3a51877ff069e88')
+source=("https://launchpad.net/soundconverter/trunk/$pkgver/+download/soundconverter-$pkgver.tar.xz";)
+sha512sums=('0746395de412a4d845e3df4d6cce0dbcba266c9efc8db71663dd1c751d2a5de5b0dc266f24bbfe6c00f69428801ce5f9558fc8e5e2f5d5e6be8562085cd7fe92')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-
-  # Remove deprecated GConf dependency
-  patch -Np0 -i "${srcdir}/drop-gconf.patch"
-
   NOCONFIGURE=1 ./autogen.sh
 }
 

Deleted: drop-gconf.patch
===================================================================
--- drop-gconf.patch    2019-05-13 18:53:43 UTC (rev 467161)
+++ drop-gconf.patch    2019-05-13 19:07:30 UTC (rev 467162)
@@ -1,74 +0,0 @@
-=== modified file 'bin/soundconverter.py'
---- bin/soundconverter.py      2017-10-29 20:09:01 +0000
-+++ bin/soundconverter.py      2018-04-06 11:25:35 +0000
-@@ -66,7 +66,6 @@
-         import gi
-         gi.require_version('Gst', '1.0')
-         gi.require_version('Gtk', '3.0')
--        gi.require_version('GConf', '2.0')
-         from gi.repository import GObject
-         # force GIL creation - see 
https://bugzilla.gnome.org/show_bug.cgi?id=710447
-         import threading
-
-=== modified file 'soundconverter/gstreamer.py'
---- soundconverter/gstreamer.py        2018-03-26 18:14:18 +0000
-+++ soundconverter/gstreamer.py        2018-04-06 11:25:35 +0000
-@@ -25,7 +25,7 @@
- from gettext import gettext as _
- 
- import gi
--from gi.repository import Gst, Gtk, GObject, GConf, Gio
-+from gi.repository import Gst, Gtk, GObject, Gio
- 
- from soundconverter.fileoperations import vfs_encode_filename, 
file_encode_filename
- from soundconverter.fileoperations import unquote_filename, vfs_makedirs, 
vfs_unlink
-@@ -66,25 +66,29 @@
- audio_profiles_list = []
- audio_profiles_dict = {}
- 
--_GCONF = GConf.Client.get_default()
--profiles = _GCONF.all_dirs(_GCONF_PROFILE_LIST_PATH)
--for name in profiles:
--    if _GCONF.get_bool(_GCONF_PROFILE_PATH + name + "/active"):
--        # get profile
--        description = _GCONF.get_string(_GCONF_PROFILE_PATH + name + "/name")
--        extension = _GCONF.get_string(_GCONF_PROFILE_PATH + name + 
"/extension")
--        pipeline = _GCONF.get_string(_GCONF_PROFILE_PATH + name + "/pipeline")
--        # check profile validity
--        if not extension or not pipeline:
--            continue
--        if not description:
--            description = extension
--        if description in audio_profiles_dict:
--            continue
--            # store
--        profile = description, extension, pipeline
--        audio_profiles_list.append(profile)
--        audio_profiles_dict[description] = profile
-+try:
-+    from gi.repository import GConf
-+    _GCONF = GConf.Client.get_default()
-+    profiles = _GCONF.all_dirs(_GCONF_PROFILE_LIST_PATH)
-+    for name in profiles:
-+        if _GCONF.get_bool(_GCONF_PROFILE_PATH + name + "/active"):
-+            # get profile
-+            description = _GCONF.get_string(_GCONF_PROFILE_PATH + name + 
"/name")
-+            extension = _GCONF.get_string(_GCONF_PROFILE_PATH + name + 
"/extension")
-+            pipeline = _GCONF.get_string(_GCONF_PROFILE_PATH + name + 
"/pipeline")
-+            # check profile validity
-+            if not extension or not pipeline:
-+                continue
-+            if not description:
-+                description = extension
-+            if description in audio_profiles_dict:
-+                continue
-+                # store
-+            profile = description, extension, pipeline
-+            audio_profiles_list.append(profile)
-+            audio_profiles_dict[description] = profile
-+except ImportError:
-+    pass
- 
- required_elements = ('decodebin', 'fakesink', 'audioconvert', 'typefind', 
'audiorate')
- for element in required_elements:
-

Reply via email to