* Removed Python 2 support.
* Standards-Version is now 4.1.3.
Thomas Goirand
5 years ago
0 | |
python-xstatic-tv4 (1.2.7.0-2) UNRELEASED; urgency=medium
|
|
0 |
python-xstatic-tv4 (1.2.7.0-2) unstable; urgency=medium
|
1 | 1 |
|
2 | 2 |
[ Daniel Baumann ]
|
3 | 3 |
* Updating copyright format url.
|
|
9 | 9 |
[ Ondřej Nový ]
|
10 | 10 |
* d/control: Set Vcs-* to salsa.debian.org
|
11 | 11 |
|
12 | |
-- Daniel Baumann <daniel.baumann@progress-linux.org> Fri, 04 Aug 2017 22:32:31 +0200
|
|
12 |
[ Thomas Goirand ]
|
|
13 |
* Removed Python 2 support.
|
|
14 |
* Standards-Version is now 4.1.3.
|
|
15 |
|
|
16 |
-- Thomas Goirand <zigo@debian.org> Mon, 02 Apr 2018 16:00:14 +0200
|
13 | 17 |
|
14 | 18 |
python-xstatic-tv4 (1.2.7.0-2) unstable; urgency=medium
|
15 | 19 |
|
7 | 7 |
Build-Depends:
|
8 | 8 |
debhelper (>= 9),
|
9 | 9 |
dh-python,
|
10 | |
openstack-pkg-tools (>= 52~),
|
11 | |
python-all,
|
12 | |
python-setuptools,
|
|
10 |
openstack-pkg-tools (>= 75~),
|
13 | 11 |
python3-all,
|
14 | 12 |
python3-setuptools,
|
15 | 13 |
yui-compressor,
|
16 | 14 |
Build-Conflicts:
|
17 | |
python-xstatic,
|
18 | 15 |
python3-xstatic,
|
19 | |
Standards-Version: 4.1.0
|
|
16 |
Standards-Version: 4.1.3
|
20 | 17 |
Vcs-Browser: https://salsa.debian.org/openstack-team/xstatic/python-xstatic-tv4
|
21 | 18 |
Vcs-Git: https://salsa.debian.org/openstack-team/xstatic/python-xstatic-tv4.git
|
22 | 19 |
Homepage: http://geraintluff.github.com/tv4/
|
23 | |
|
24 | |
Package: python-xstatic-tv4
|
25 | |
Architecture: all
|
26 | |
Depends:
|
27 | |
libjs-jquery (>= 1.8.0),
|
28 | |
libjs-tv4,
|
29 | |
python-xstatic,
|
30 | |
${misc:Depends},
|
31 | |
${python:Depends},
|
32 | |
Description: tv4 (XStatic packaging standard) - Python 2.7
|
33 | |
XStatic is a Python web development tool for handling required static data
|
34 | |
files from external projects, such as CSS, images, and JavaScript. It provides
|
35 | |
a lightweight infrastructure to manage them via Python modules that your app
|
36 | |
can depend on in a portable, virtualenv-friendly way instead of using embedded
|
37 | |
copies.
|
38 | |
.
|
39 | |
For a description of tv4, see the libjs-tv4 package.
|
40 | |
.
|
41 | |
This package contains the Python 2.7 module.
|
42 | 20 |
|
43 | 21 |
Package: python3-xstatic-tv4
|
44 | 22 |
Architecture: all
|
0 | 0 |
#!/usr/bin/make -f
|
1 | 1 |
|
2 | 2 |
UPSTREAM_GIT := https://github.com/robcresswell/xstatic-tv4.git
|
3 | |
-include /usr/share/openstack-pkg-tools/pkgos.make
|
|
3 |
include /usr/share/openstack-pkg-tools/pkgos.make
|
4 | 4 |
|
5 | 5 |
%:
|
6 | |
dh $@ --buildsystem=python_distutils --with python2,python3
|
|
6 |
dh $@ --buildsystem=python_distutils --with python3
|
7 | 7 |
|
8 | |
override_dh_auto_install:
|
9 | |
pkgos-dh_auto_install
|
|
8 |
override_dh_auto_clean:
|
|
9 |
echo "Do nothing..."
|
10 | 10 |
|
11 | 11 |
override_dh_auto_build:
|
12 | 12 |
yui-compressor -o xstatic/pkg/tv4/data/tv4.min.js xstatic/pkg/tv4/data/tv4.js
|
13 | |
dh_auto_build -O--buildsystem=python_distutils
|
|
13 |
|
|
14 |
override_dh_auto_install:
|
|
15 |
pkgos-dh_auto_install --no-py2
|
14 | 16 |
|
15 | 17 |
override_dh_auto_test:
|
16 | 18 |
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
|
|
21 | 23 |
dh_clean -O--buildsystem=python_distutils
|
22 | 24 |
rm -rf build
|
23 | 25 |
|
24 | |
|
25 | 26 |
# Commands not to run
|
26 | 27 |
override_dh_installcatalogs:
|
27 | 28 |
override_dh_installemacsen override_dh_installifupdown:
|
|
31 | 32 |
override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
|
32 | 33 |
override_dh_installcron override_dh_installdebconf:
|
33 | 34 |
override_dh_installlogrotate override_dh_installgsettings:
|
34 | |
|