[Python-modules-commits] [python-wget] 02/02: Imported Debian patch 2.2-1

Balasankar C balasankarc-guest at moszumanska.debian.org
Sat Apr 4 11:12:45 UTC 2015


This is an automated email from the git hooks/post-receive script.

balasankarc-guest pushed a commit to branch master
in repository python-wget.

commit ad91fd2d093f60cdd9deced98f20a16bcba91bd3
Author: Balasankar C <balasankarc at autistici.org>
Date:   Mon Mar 30 01:09:57 2015 +0530

    Imported Debian patch 2.2-1
---
 debian/changelog                      |  5 +++
 debian/compat                         |  1 +
 debian/control                        | 63 +++++++++++++++++++++++++++++++++++
 debian/copyright                      | 51 ++++++++++++++++++++++++++++
 debian/python-wget.lintian-overrides  |  1 +
 debian/python3-wget.lintian-overrides |  1 +
 debian/rules                          |  8 +++++
 debian/source/format                  |  1 +
 debian/watch                          |  3 ++
 9 files changed, 134 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..67191f9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-wget (2.2-1) unstable; urgency=low
+
+  * Initial upload (Closes: #781572)
+
+ -- Balasankar C <balasankarc at autistici.org>  Mon, 30 Mar 2015 01:09:57 +0530
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a9ad712
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,63 @@
+Source: python-wget
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Balasankar C <balasankarc at autistici.org>
+Section: python
+Priority: optional
+Build-Depends: python-all (>= 2.6.6-3), debhelper (>= 9), dh-python, python-setuptools, 
+               python3-all, python3-setuptools
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/python-wget.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-wget.git
+Homepage: http://bitbucket.org/techtonik/python-wget/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+
+Package: python-wget
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-urllib3
+Description: pure Python download utility for Python 2
+ This package installs the Python wget module for python version 2.x
+ Usage
+ =====
+ .
+   python -m wget [options] <URL>
+ .
+   options:
+     -o --output FILE|DIR   output filename or directory
+ .
+ API Usage
+ =========
+ .
+   >>> import wget
+   >>> url = 'http://www.futurecrew.com/skaven/song_files/mp3/razorback.mp3'
+   >>> filename = wget.download(url)
+   100% [................................................] 3841532 / 3841532>
+   >> filename
+   'razorback.mp3'
+ .
+ The skew that you see above is a documented side effect.
+
+Package: python3-wget
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, python-urllib3
+Description: pure Python download utility for Python 3
+ This package installs the Python wget module for python version 3.x
+ Usage
+ =====
+ .
+   python -m wget [options] <URL>
+ .
+   options:
+     -o --output FILE|DIR   output filename or directory
+ .
+ API Usage
+ =========
+ .
+   >>> import wget
+   >>> url = 'http://www.futurecrew.com/skaven/song_files/mp3/razorback.mp3'
+   >>> filename = wget.download(url)
+   100% [................................................] 3841532 / 3841532>
+   >> filename
+   'razorback.mp3'
+ .
+ The skew that you see above is a documented side effect.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5d6fa84
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,51 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-wget
+Source: http://bitbucket.org/techtonik/python-wget/
+
+Files: *
+Copyright: Anatoly Techtonik <techtonik at gmail.com>
+License: public-domain
+
+Files: debian/*
+Copyright: 2014 Balasankar C <balasankarc at autistici.org>
+License: GPL-3.0+
+ This program is free software: you can redistribute it and/or modify it under
+ the terms of the GNU General Public License as published by the Free Software
+ Foundation, either version 3 of the License, or (at your option) any later
+ version.
+ .
+ This package is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along with
+ this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License version
+ 3 can be found in "/usr/share/common-licenses/GPL-3".
+
+License: public-domain
+ This is free and unencumbered software released into the public domain.
+ .
+ Anyone is free to copy, modify, publish, use, compile, sell, or
+ distribute this software, either in source code form or as a compiled
+ binary, for any purpose, commercial or non-commercial, and by any
+ means.
+ .
+ In jurisdictions that recognize copyright laws, the author or authors
+ of this software dedicate any and all copyright interest in the
+ software to the public domain. We make this dedication for the benefit
+ of the public at large and to the detriment of our heirs and
+ successors. We intend this dedication to be an overt act of
+ relinquishment in perpetuity of all present and future rights to this
+ software under copyright law.
+ .
+ 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 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.
+ .
+ For more information, please refer to <http://unlicense.org/>
diff --git a/debian/python-wget.lintian-overrides b/debian/python-wget.lintian-overrides
new file mode 100644
index 0000000..a622df1
--- /dev/null
+++ b/debian/python-wget.lintian-overrides
@@ -0,0 +1 @@
+python-wget: capitalization-error-in-description
diff --git a/debian/python3-wget.lintian-overrides b/debian/python3-wget.lintian-overrides
new file mode 100644
index 0000000..60310cd
--- /dev/null
+++ b/debian/python3-wget.lintian-overrides
@@ -0,0 +1 @@
+python3-wget: capitalization-error-in-description
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..be11ae8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.2 at
+# Mon, 30 Mar 2015 01:09:57 +0530
+export PYBUILD_NAME=wget
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
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/watch b/debian/watch
new file mode 100644
index 0000000..73edb0c
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/wget/wget-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-wget.git



More information about the Python-modules-commits mailing list