Codebase list python-fusepy / e69635b
convert to Python 3 Sascha Steinbiss 4 years ago
4 changed file(s) with 8 addition(s) and 20 deletion(s). Raw diff Collapse all Expand all
0 python-fusepy (3.0.1-2) unstable; urgency=medium
1
2 * Remove python2 binary package.
3
4 -- Sascha Steinbiss <satta@debian.org> Sun, 08 Sep 2019 10:56:02 +0200
5
06 python-fusepy (3.0.1-1) unstable; urgency=medium
17
28 * New upstream version.
33 Maintainer: Sascha Steinbiss <satta@debian.org>
44 Build-Depends: debhelper (>= 11),
55 dh-python,
6 python-all,
7 python-setuptools,
86 python3-all,
97 python3-setuptools,
10 python-ctypes,
118 libfuse2
129 Standards-Version: 4.2.1
1310 Vcs-Git: https://salsa.debian.org/debian/python-fusepy.git
1411 Vcs-Browser: https://salsa.debian.org/debian/python-fusepy
1512 Homepage: https://github.com/fusepy/fusepy
16
17 Package: python-fusepy
18 Architecture: all
19 Depends: ${python:Depends},
20 ${misc:Depends},
21 libfuse2
22 Description: simple Python interface to FUSE (Python 2)
23 fusepy is a Python module that provides a simple interface to FUSE and
24 MacFUSE. It's just one file and is implemented using ctypes.
25 Due to a name clash with the existing API-incompatible python-fuse package,
26 the importable module name for fusepy in Debian is 'fusepy' instead of
27 upstream's 'fuse'.
28 .
29 This package installs the Python 2 version.
3013
3114 Package: python3-fusepy
3215 Architecture: all
00 #!/usr/bin/make -f
11
2 buildvers := $(shell pyversions -sv)
32 build3vers := $(shell py3versions -sv)
43
54 export PYBUILD_NAME = fusepy
65
76 %:
8 dh $@ --with python2,python3 --buildsystem=pybuild
7 dh $@ --with python3 --buildsystem=pybuild
98
109 override_dh_auto_clean:
1110 rm -f fusepy.py
0 #!/usr/bin/env python
0 #!/usr/bin/env python3
11
22 import fusepy
33