diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..8362577 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +passwordmeter (0.1.8-0kali1) kali-dev; urgency=medium + + * Initial release + + -- Sophie Brun Fri, 06 Nov 2020 08:53:23 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..6ef4ca4 --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: passwordmeter +Section: python +Priority: optional +Maintainer: Kali Developers +Uploaders: Sophie Brun +Build-Depends: debhelper-compat (= 13), + dh-python, + python3-all, + python3-asset, + python3-coverage, + python3-nose, + python3-setuptools +Standards-Version: 4.5.0 +Homepage: https://github.com/cadithealth/passwordmeter +Vcs-Browser: https://gitlab.com/kalilinux/packages/passwordmeter +Vcs-Git: https://gitlab.com/kalilinux/packages/passwordmeter.git +Testsuite: autopkgtest-pkg-python +Rules-Requires-Root: no + +Package: python3-passwordmeter +Architecture: all +Depends: ${misc:Depends}, ${python3:Depends} +Description: Password Strength Meter (Python 3) + This package contains a configurable, extensible password strength measuring + library. + . + This package installs the library for Python 3. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3de9918 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: passwordmeter +Source: https://github.com/cadithealth/passwordmeter + +Files: * +Copyright: 2013 Cadit Health Inc. +License: Expat + +Files: debian/* +Copyright: 2020 Sophie Brun +License: Expat + +License: Expat + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN + NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE + USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..76fbdcd --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f +#export DH_VERBOSE = 1 + +export PYBUILD_NAME=passwordmeter + +%: + dh $@ --with python3 --buildsystem=pybuild + +override_dh_auto_test: + #disable failing test diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..cb61fa5 --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +extend-diff-ignore = "^[^/]*[.]egg-info/" diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..8f1d01f --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%passwordmeter-$1.tar.gz%" \ + https://github.com/cadithealth/passwordmeter/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate