aboutsummaryrefslogtreecommitdiffstats
path: root/setup-files/osx/setup.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-06-01 18:10:07 -0500
committerJesús <heckyel@hyperbola.info>2020-06-01 18:10:07 -0500
commit9bcdcbda2b5e34c204976e7b43de62f9ac7bd591 (patch)
tree01f5dfb56728728133795484110a9614cdaec9bf /setup-files/osx/setup.py
parent99f96dc8b20ebfaeb51019001771f138a02ff1cd (diff)
downloadlibrevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.tar.lz
librevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.tar.xz
librevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.zip
pep8
Diffstat (limited to 'setup-files/osx/setup.py')
-rw-r--r--setup-files/osx/setup.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/setup-files/osx/setup.py b/setup-files/osx/setup.py
index 9b14a05..de2c2e3 100644
--- a/setup-files/osx/setup.py
+++ b/setup-files/osx/setup.py
@@ -101,14 +101,15 @@ class py2app_lvc(py2app_cmd):
"""
os.unlink(os.path.join(self.python_lib_root, 'site.py'))
+
plist = plistlib.readPlist(os.path.join(SETUP_DIR, 'Info.plist'))
plist['NSHumanReadableCopyright'] = 'Copyright (C) Jesús E.'
plist['CFBundleGetInfoString'] = 'Libre Video Converter'
plist['CFBundleIdentifier'] = 'org.participatoryculture.MiroVideoConverter'
-plist['CFBundleShortVersionString'] = '3.0'
+plist['CFBundleShortVersionString'] = '1.1'
plist['CFBundleExecutable'] = 'Libre Video Converter'
plist['CFBundleName'] = 'Libre Video Converter'
-plist['CFBundleVersion'] = '1.0.1'
+plist['CFBundleVersion'] = '1.1.0'
plist['SUFeedURL'] = ('http://miro-updates.participatoryculture.org/'
'lvc-appcast-osx.xml')
plist['SUPublicDSAKeyFile'] = 'dsa_pub.pem'
@@ -123,7 +124,13 @@ setup(
cmdclass={'py2app': py2app_lvc},
ext_modules=[
Extension("lvc.widgets.osx.fasttypes",
- [os.path.join(ROOT_DIR, 'lvc', 'widgets',
- 'osx', 'fasttypes.c')])],
+ [
+ os.path.join(
+ ROOT_DIR,
+ 'lvc', 'widgets',
+ 'osx', 'fasttypes.c'
+ )
+ ])
+ ],
**SETUP_ARGS
)