Codebase list python-fusepy / 86cc02b
rename module to fusepy to avoid name clash Sascha Steinbiss 7 years ago
4 changed file(s) with 35 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
2222 ${misc:Depends},
2323 libfuse2
2424 Description: simple Python interface to FUSE (Python 2)
25 fusepy is a Python module that provides a simple interface to FUSE and
25 fusepy is a Python module that provides a simple interface to FUSE and
2626 MacFUSE. It's just one file and is implemented using ctypes.
27 Due to a name clash with the existing API-incompatible python-fuse package,
28 the importable module name for fusepy in Debian is 'fusepy' instead of
29 upstream's 'fuse'.
2730 .
2831 This package installs the Python 2 version.
2932
3538 Description: simple Python interface to FUSE (Python 3)
3639 fusepy is a Python module that provides a simple interface to FUSE and
3740 MacFUSE. It's just one file and is implemented using ctypes.
41 Due to a name clash with the existing API-incompatible python-fuse package,
42 the importable module name for fusepy in Debian is 'fusepy' instead of
43 upstream's 'fuse'.
3844 .
3945 This package installs the Python 3 version.
0 From: Sascha Steinbiss <sascha@steinbiss.name>
1 Date: Thu, 2 Feb 2017 14:13:38 +0100
2 Subject: rename to 'fusepy'
3
4 ---
5 setup.py | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/setup.py b/setup.py
9 index 23d1664..a42f777 100755
10 --- a/setup.py
11 +++ b/setup.py
12 @@ -18,7 +18,7 @@ setup(
13 maintainer = 'Terence Honles',
14 maintainer_email = 'terence@honles.com',
15 license = 'ISC',
16 - py_modules=['fuse'],
17 + py_modules=['fusepy'],
18 url = 'http://github.com/terencehonles/fusepy',
19
20 classifiers = [
0 0001-rename-to-fusepy.patch
77 %:
88 dh $@ --with python2,python3 --buildsystem=pybuild
99
10 override_dh_auto_test:
11 python2 setup.py test
12 python3 setup.py test
10 override_dh_auto_clean:
11 rm -f fusepy.py
12
13 override_dh_auto_build:
14 cp -pv fuse.py fusepy.py
15 dh_auto_build