Check-in [66781c2e9d]
Overview
Comment: | Add osxpkg; though unused |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
66781c2e9d2e0be27bbeee2597ce5265 |
User & Date: | mario on 2017-01-22 16:43:06 |
Other Links: | manifest | tags |
Context
2017-01-22
| ||
16:43 | Add `urlquote` check-in: fc5214876f user: Oliver tags: trunk | |
16:43 | Add osxpkg; though unused check-in: 66781c2e9d user: mario tags: trunk | |
16:42 | Use sys.encoding for os.system calls on Windows check-in: 5e6408e8c5 user: Oliver tags: trunk | |
Changes
Modified Makefile from [468a33878a] to [2243e2b0c8].
︙ | ︙ | |||
48 49 50 51 52 53 54 55 56 57 58 59 60 61 | $(PACK) -t $@ $(OPTS) $(DEPS) -p "$(NAME)-VERSION.bin.txz" st2.py exe: $(PACK) -t $@ $(OPTS) $(DEPS) -p "$(NAME)-VERSION.exe" \ --exe-exec 'usr\share\streamtuner2\dev\install_python_gtk.bat' \ --exe-dest c:/ --version $(VERSION) .win.pack st2.py arch: $(PACK) -t $@ $(OPTS) $(DEPS_A) -p "$(NAME)-VERSION.arch.txz" st2.py pyz: #@BUG: relative package references leave a /tmp/doc/ folder $(PACK) -u packfile -s src -t zip --zip-shebang "/usr/bin/env python" \ -f -p "$(NAME)-$(VERSION).pyz" --prefix=./ .zip.py st2.py src: cd .. && pax -wvJf streamtuner2/streamtuner2-$(VERSION).src.txz \ streamtuner2/*.{py,png,desktop} streamtuner2/channels/*.{py,png} \ | > > | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | $(PACK) -t $@ $(OPTS) $(DEPS) -p "$(NAME)-VERSION.bin.txz" st2.py exe: $(PACK) -t $@ $(OPTS) $(DEPS) -p "$(NAME)-VERSION.exe" \ --exe-exec 'usr\share\streamtuner2\dev\install_python_gtk.bat' \ --exe-dest c:/ --version $(VERSION) .win.pack st2.py arch: $(PACK) -t $@ $(OPTS) $(DEPS_A) -p "$(NAME)-VERSION.arch.txz" st2.py osxpkg: $(PACK) -t $@ $(OPTS) $(DEPS_A) -p "$(NAME)-VERSION.osxz" st2.py pyz: #@BUG: relative package references leave a /tmp/doc/ folder $(PACK) -u packfile -s src -t zip --zip-shebang "/usr/bin/env python" \ -f -p "$(NAME)-$(VERSION).pyz" --prefix=./ .zip.py st2.py src: cd .. && pax -wvJf streamtuner2/streamtuner2-$(VERSION).src.txz \ streamtuner2/*.{py,png,desktop} streamtuner2/channels/*.{py,png} \ |
︙ | ︙ |
Modified Packfile from [afe311e831] to [6d95ecaea0].
︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 23 | rpm: exe: #mv usr/share/streamtuner2/help/help.chm usr/share/doc/streamtuner2/help.chm #mv usr/share/streamtuner2/dev/streamtuner2.ico usr/share/pixmaps/streamtuner2.ico sed -i '10 s/"\/usr\/share\/streamtuner2"/os.path.realpath(os.path.dirname(__file__)+"\/..\/share\/streamtuner2")/' usr/bin/streamtuner2 src: tar: arch: sed -i '1 s/python/python2/' usr/bin/streamtuner2 | > | 14 15 16 17 18 19 20 21 22 23 24 | rpm: exe: #mv usr/share/streamtuner2/help/help.chm usr/share/doc/streamtuner2/help.chm #mv usr/share/streamtuner2/dev/streamtuner2.ico usr/share/pixmaps/streamtuner2.ico sed -i '10 s/"\/usr\/share\/streamtuner2"/os.path.realpath(os.path.dirname(__file__)+"\/..\/share\/streamtuner2")/' usr/bin/streamtuner2 src: tar: osxpkg: arch: sed -i '1 s/python/python2/' usr/bin/streamtuner2 |