[Python-modules-commits] [keyrings.alt] 03/04: Initial release (closes: #813291).

Dmitry Shachnev mitya57 at moszumanska.debian.org
Sat Feb 6 09:32:15 UTC 2016


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

mitya57 pushed a commit to branch master
in repository keyrings.alt.

commit ae004e62b94fb4488e5f13c06ecf630b2703f95a
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date:   Sat Feb 6 12:29:45 2016 +0300

    Initial release (closes: #813291).
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 29 +++++++++++++++++++++++++++
 debian/docs      |  1 +
 debian/rules     | 11 ++++++++++
 debian/watch     |  2 ++
 7 files changed, 110 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0bcbd5c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+keyrings.alt (1.1-1) UNRELEASED; urgency=medium
+
+  * Initial release (closes: #813291).
+
+ -- Dmitry Shachnev <mitya57 at debian.org>  Sat, 06 Feb 2016 12:28:38 +0300
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..0c3ce13
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,61 @@
+Source: keyrings.alt
+Priority: optional
+Section: python
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Carl Chenet <chaica at debian.org>,
+           Dmitry Shachnev <mitya57 at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-13),
+               python-crypto,
+               python-mock,
+               python-pytest,
+               python-setuptools,
+               python-setuptools-scm (>= 1.9),
+               python3-all,
+               python3-crypto,
+               python3-mock,
+               python3-pytest,
+               python3-setuptools,
+               python3-setuptools-scm (>= 1.9)
+Standards-Version: 3.9.6
+Homepage: https://github.com/jaraco/keyrings.alt
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/keyrings.alt.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/keyrings.alt.git
+
+Package: python-keyrings.alt
+Architecture: all
+Depends: python-crypto, ${misc:Depends}, ${python:Depends}
+Suggests: gir1.2-gnomekeyring-1.0,
+          python-fs,
+          python-gdata,
+          python-gi,
+          python-kde4,
+          python-keyczar
+Description: alternate backend implementations for python-keyring
+ The Python keyring library provides an easy way to access the system keyring
+ service from Python. It can be used in any application that needs safe
+ password storage.
+ .
+ Keyrings.alt module contains the alternate keyring backend implementations
+ for use with python-keyring, most importantly the file backend which does
+ not need any external services to work.
+ .
+ This package contains the Python 2 version of keyrings.alt.
+
+Package: python3-keyring
+Architecture: all
+Depends: python3-crypto, ${misc:Depends}, ${python3:Depends}
+Suggests: gir1.2-gnomekeyring-1.0, python3-gi, python3-pykde4
+Description: alternate backend implementations for python3-keyring
+ The Python keyring library provides an easy way to access the system keyring
+ service from Python. It can be used in any application that needs safe
+ password storage.
+ .
+ Keyrings.alt module contains the alternate keyring backend implementations
+ for use with python-keyring, most importantly the file backend which does
+ not need any external services to work.
+ .
+ This package contains the Python 3 version of keyrings.alt.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..951ea24
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,29 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: https://github.com/jaraco/keyrings.alt
+
+Files: *
+Copyright: 2016, Jason R. Coombs <jaraco at jaraco.com>
+License: MIT
+
+Files: debian/*
+Copyright: 2016, Dmitry Shachnev <mitya57 at debian.org>
+License: MIT
+
+License: MIT
+ 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/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..18b0576
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE=1
+
+export PYBUILD_NAME=keyrings.alt
+
+%:
+	dh $@ --with python2,python3 --buildsystem pybuild
+
+override_dh_installchangelogs:
+	dh_installchangelogs -k CHANGES.rst
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3c77127
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://pypi.debian.net/keyrings.alt/keyrings.alt-([\d\.]*)\.tar\.gz

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



More information about the Python-modules-commits mailing list