Check-in [96049dfe04]
Overview
Comment: | try dual-dependencies on python2 & 3 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
96049dfe04276596c17bf6cf7ce44ca4 |
User & Date: | mario on 2020-12-12 14:18:48 |
Other Links: | manifest | tags |
Context
2020-12-12
| ||
15:10 | Add uikit.get_bg_color() for TreeView search, but keep #ffffff for Gtk2 check-in: 2956305120 user: mario tags: trunk | |
14:18 | try dual-dependencies on python2 & 3 check-in: 96049dfe04 user: mario tags: trunk | |
14:17 | Fix `format_exc(e)` itself causing an exception, and add explanation in `pq` wrapper which was supposed to mask import errors. check-in: ef4ea389f1 user: mario tags: trunk | |
Changes
Modified Makefile from [886fd7810f] to [c3832c130f].
1 2 3 4 5 6 7 8 9 10 11 | # Requires # ยท http://fossil.include-once.org/versionnum/ # ยท http://fossil.include-once.org/xpm/ SHELL := /bin/bash #(for brace expansion) NAME := streamtuner2 VERSION := $(shell version get:plugin st2.py || echo 2.2dev) DEST := /usr/share/streamtuner2 DOCS := /usr/share/doc/streamtuner2 INST := install -m 644 PACK := xpm | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Requires # ยท http://fossil.include-once.org/versionnum/ # ยท http://fossil.include-once.org/xpm/ SHELL := /bin/bash #(for brace expansion) NAME := streamtuner2 VERSION := $(shell version get:plugin st2.py || echo 2.2dev) DEST := /usr/share/streamtuner2 DOCS := /usr/share/doc/streamtuner2 INST := install -m 644 PACK := xpm DEPS := -n $(NAME) -d "python|python3" -d "python-pyquery" -d "python3-pyquery" -d "python-gtk2" -d "python3-gi" -d "python-requests" -d "python3-requests" -d "python-keybinder" DEPS_A := -n $(NAME) -d pygtk -d python2 -d python2-cssselect -d python2-keybinder2 -d python2-lxml -d python2-pillow -d python2-pyquery -d python2-xdg -d python2-requests --provides streamtuner-python OPTS := -s src -u packfile,fixperms -f --prefix=$(DEST) --deb-compression=xz --rpm-compression=xz --exe-autoextract # targets .PHONY: bin all: gtk3 #(most used) pack: all ver docs xpm src |
︙ | ︙ |