Codebase list pysmb / a6a9c65
Initial release Sophie Brun 6 years ago
11 changed file(s) with 117 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Upstream provides tests for Python 2 and Python 3:
1 Find a way to run tests during the build
0 pysmb (1.1.19-0kali1) kali-dev; urgency=medium
1
2 * Initial release
3
4 -- Sophie Brun <[email protected]> Wed, 07 Jun 2017 15:39:37 +0200
0 Source: pysmb
1 Section: python
2 Priority: optional
3 Maintainer: Sophie Brun <[email protected]>
4 Build-Depends: debhelper (>= 10), dh-python, python-all, python-setuptools, python3-all, python3-setuptools
5 Standards-Version: 3.9.8
6 Homepage: https://miketeo.net/wp/index.php/projects/pysmb
7 X-Python-Version: >= 2.6
8 X-Python3-Version: >= 3.2
9 Vcs-Git: git://git.kali.org/packages/pysmb.git
10 Vcs-Browser: http://git.kali.org/gitweb/?p=packages/pysmb.git;a=summary
11
12 Package: python-smb
13 Architecture: all
14 Depends: ${python:Depends}, ${misc:Depends}
15 Suggests: python-smb-doc
16 Description: SMB/CIFS library (Python 2)
17 This package contains an experimental SMB/CIFS library written in Python. It
18 implements the client-side SMB/CIFS protocol which allows your Python
19 application to access and transfer files to/from SMB/CIFS shared folders like
20 your Windows file sharing and Samba folders.
21 .
22 This package installs the library for Python 2.
23
24 Package: python3-smb
25 Architecture: all
26 Depends: ${python3:Depends}, ${misc:Depends}
27 Suggests: python-pysmb-doc
28 Description: SMB/CIFS library (Python 3)
29 This package contains an experimental SMB/CIFS library written in Python. It
30 implements the client-side SMB/CIFS protocol which allows your Python
31 application to access and transfer files to/from SMB/CIFS shared folders like
32 your Windows file sharing and Samba folders.
33 .
34 This package installs the library for Python 3.
35
36 Package: python-smb-doc
37 Architecture: all
38 Section: doc
39 Depends: ${sphinxdoc:Depends}, ${misc:Depends}
40 Description: SMB/CIFS library (common documentation)
41 This package contains an experimental SMB/CIFS library written in Python. It
42 implements the client-side SMB/CIFS protocol which allows your Python
43 application to access and transfer files to/from SMB/CIFS shared folders like
44 your Windows file sharing and Samba folders.
45 .
46 This is the common documentation package.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: pysmb
2 Source: https://github.com/miketeo/pysmb
3
4 Files: *
5 Copyright: 2001-2015 Michael Teo <miketeo (a) miketeo.net>
6 License: Other
7
8 Files: debian/*
9 Copyright: 2017 Sophie Brun <[email protected]>
10 License: Other
11
12 License: Other
13 This software is provided 'as-is', without any express or implied
14 warranty. In no event will the author be held liable for any damages
15 arising from the use of this software.
16 .
17 Permission is granted to anyone to use this software for any purpose,
18 including commercial applications, and to alter it and redistribute it
19 freely, subject to the following restrictions:
20 .
21 1. The origin of this software must not be misrepresented; you must not
22 claim that you wrote the original software. If you use this software
23 in a product, an acknowledgment in the product documentation would be
24 appreciated but is not required.
25 .
26 2. Altered source versions must be plainly marked as such, and must not be
27 misrepresented as being the original software.
28 .
29 3. This notice cannot be removed or altered from any source distribution.
0 Document: python-smb
1 Title: Debian python-smb Manual
2 Author: Michael Teo
3 Abstract: This manual describes python-smb and
4 python3-smb.
5 Section: Programming/Python
6
7 Format: HTML
8 Index: /usr/share/doc/python-smb-doc/html/index.html
9 Files: /usr/share/doc/python-smb-doc/html/*.html
0 #!/usr/bin/make -f
1 # See debhelper(7) (uncomment to enable)
2 # output every command that modifies files on the build system.
3 #export DH_VERBOSE = 1
4
5 export PYBUILD_NAME=smb
6
7 %:
8 dh $@ --with python2,python3 --buildsystem=pybuild
9
10
11 # Add spinxdoc to the dh --with line
12 #override_dh_auto_build:
13 # dh_auto_build
14 # PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml docs/ build/html # HTML generator
15 # PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bman docs/ build/man # Manpage generator
16
0 3.0 (quilt)
0 extend-diff-ignore = "^[^/]*[.]egg-info/"
0 version=4
1 https://pypi.debian.net/pysmb/pysmb-(.+)\.(?:tar\.(?:gz|bz2|xz))