summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libid3tag/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/libid3tag/package.py')
-rw-r--r--var/spack/repos/builtin/packages/libid3tag/package.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/var/spack/repos/builtin/packages/libid3tag/package.py b/var/spack/repos/builtin/packages/libid3tag/package.py
index 48ccc5e569..8a5cf493a3 100644
--- a/var/spack/repos/builtin/packages/libid3tag/package.py
+++ b/var/spack/repos/builtin/packages/libid3tag/package.py
@@ -11,29 +11,29 @@ class Libid3tag(AutotoolsPackage):
"""library for id3 tagging"""
homepage = "https://www.underbit.com/products/mad/"
- url = "ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz"
+ url = "ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz"
- maintainers = ['TheQueasle']
+ maintainers = ["TheQueasle"]
- version('0.15.1b', '63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151')
+ version("0.15.1b", "63da4f6e7997278f8a3fef4c6a372d342f705051d1eeb6a46a86b03610e26151")
- depends_on('zlib')
- depends_on('gperf')
+ depends_on("zlib")
+ depends_on("gperf")
# source: https://git.archlinux.org/svntogit/packages.git/tree/trunk/10_utf16.diff?h=packages/libid3tag
- patch('10_utf16.diff')
+ patch("10_utf16.diff")
# source: https://git.archlinux.org/svntogit/packages.git/tree/trunk/11_unknown_encoding.diff?h=packages/libid3tag
- patch('11_unknown_encoding.dif')
+ patch("11_unknown_encoding.dif")
# source: https://git.archlinux.org/svntogit/packages.git/tree/trunk/CVE-2008-2109.patch?h=packages/libid3tag
- patch('CVE-2008-2109.patch', level=0)
+ patch("CVE-2008-2109.patch", level=0)
# source: https://git.archlinux.org/svntogit/packages.git/tree/trunk/libid3tag-gperf.patch?h=packages/libid3tag
- patch('libid3tag-gperf.patch', when="^gperf@3.1:")
+ patch("libid3tag-gperf.patch", when="^gperf@3.1:")
- @run_before('configure')
+ @run_before("configure")
def preclean(self):
"""
Remove compat.c and frametype.c in order to regenerate from gperf
sources
"""
- os.remove('compat.c')
- os.remove('frametype.c')
+ os.remove("compat.c")
+ os.remove("frametype.c")