From: Tobias Geerinckx-Rice Date: Tue, 19 Feb 2019 07:46:28 +0100 Subject: [PATCH] gnu: soundconverter: Catch (and ignore) the right error. Without this patch and GConf: Traceback (most recent call last): File "/gnu/…/bin/...soundconverter-real-real-real", line 164, in from soundconverter.batch import cli_convert_main File "/gnu/…/lib/soundconverter/python/soundconverter/batch.py", line 31, in from soundconverter.gstreamer import TagReader File "/gnu/…/lib/soundconverter/python/soundconverter/gstreamer.py", line 70, in gi.require_version('GConf', '2.0') File "/gnu/…/lib/python3.7/site-packages/gi/__init__.py", line 130, in require_version raise ValueError('Namespace %s not available' % namespace) ValueError: Namespace GConf not available --- diff -Naur soundconverter-3.0.1/soundconverter/gstreamer.py soundconverter-3.0.1/soundconverter/gstreamer.py --- soundconverter-3.0.1/soundconverter/gstreamer.py 2018-11-23 20:38:46.000000000 +0100 +++ soundconverter-3.0.1/soundconverter/gstreamer.py 2019-02-19 07:42:15.767684388 +0100 @@ -88,7 +88,7 @@ profile = description, extension, pipeline audio_profiles_list.append(profile) audio_profiles_dict[description] = profile -except ImportError: +except ValueError: pass required_elements = ('decodebin', 'fakesink', 'audioconvert', 'typefind', 'audiorate') p.scm?id=9564967e991e23b75872cd9fe6d8c557ca0d3c95'>diff
AgeCommit message (Expand)Author
2019-11-02gnu: cryptsetup: Update to 2.2.2....* gnu/packages/cryptsetup.scm (cryptsetup): Update to 2.2.2. Tobias Geerinckx-Rice
2019-10-05gnu: cryptsetup: Update to 2.2.1....* gnu/packages/cryptsetup.scm (cryptsetup): Update to 2.2.1. [arguments]: Add #:configure-flags. [native-inputs]: Remove python & add pkg-config. [inputs]: Add argon2 & json-c. (cryptsetup-static): Disable new binaries. Keep using libgcrypt. Disable blkid support. [inputs]: Add json-c. Tobias Geerinckx-Rice
2019-10-05gnu: cryptsetup-static: Don't build veritysetup....* gnu/packages/cryptsetup.scm (cryptsetup-static)[arguments]: Pass ‘--disable-veritysetup’ #:configure-flag. Adjust ‘remove-cruft’ phase. Tobias Geerinckx-Rice
2019-10-05gnu: cryptsetup: Don't use NAME in source URI....* gnu/packages/cryptsetup.scm (cryptsetup)[source]: Hard-code NAME. Tobias Geerinckx-Rice