[Python-modules-commits] [constantly] 02/02: Initial release (Closes: #843131)

Free Ekanayaka freee at moszumanska.debian.org
Fri Nov 4 08:16:14 UTC 2016


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

freee pushed a commit to branch master
in repository constantly.

commit de8c64cca58b2c2a486745f6b4a345b99c71ed55
Author: Free Ekanayaka <freee at debian.org>
Date:   Fri Nov 4 07:51:53 2016 +0000

    Initial release (Closes: #843131)
---
 .travis.yml           | 11 ++++++++++
 debian/changelog      |  5 +++++
 debian/compat         |  1 +
 debian/control        | 39 ++++++++++++++++++++++++++++++++
 debian/copyright      | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules          |  7 ++++++
 debian/source/format  |  1 +
 debian/source/options |  1 +
 debian/watch          |  4 ++++
 9 files changed, 130 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..cf2f794
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,11 @@
+sudo: required
+
+services:
+  - docker
+
+script:
+  - wget -O- http://travis.debian.net/script.sh | sh -
+
+branches:
+  except:
+    - /^debian\/\d/
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7491b95
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+constantly (15.1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #843131)
+
+ -- Free Ekanayaka <freee at debian.org>  Fri, 04 Nov 2016 07:39:51 +0000
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..9aae38d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,39 @@
+Source: constantly
+Maintainer: Free Ekanayaka <freee at debian.org>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3),
+               python-setuptools (>= 0.6b3),
+               python3-all,
+               python3-setuptools (>= 0.6b3)
+Standards-Version: 3.9.8
+Homepage: https://github.com/twisted/constantly
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/constantly.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/constantly.git
+
+Package: python-constantly
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Symbolic constants in Python
+ A library that provides symbolic constant support. It includes
+ collections and constants with text, numeric, and bit flag 
+ values.
+ .
+ Originally twisted.python.constants from the Twisted project.
+ .
+ This package provides the Python 2.x module.
+
+Package: python3-constantly
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Provides: ${python3:Provides}
+Description: Symbolic constants in Python
+ A library that provides symbolic constant support. It includes
+ collections and constants with text, numeric, and bit flag 
+ values.
+ .
+ Originally twisted.python.constants from the Twisted project.
+ .
+ This package provides the Python 3.x module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..524c7dc
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,61 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: incremental
+Upstream-Contact: Amber Brown <hawkowl at twistedmatrix.com>
+Source: https://github.com/hawkowl/constantly
+
+Files: *
+Copyright: (c) 2001-2015 Twisted Matrix Laboratories &
+        Amber Hawkie Brown
+        Glyph Lefkowitz
+        Jean-Paul Calderone
+        Richard Wall
+        Wilfredo Sánchez
+License: MIT
+
+Files: versioneer.py
+Copyright: (c) 2016 Brian Warner
+License: CC0
+
+Files: debian/*
+Copyright: 2016 Free Ekanayaka <freee at debian.org>
+License: MIT
+Comment: Debian packaging is licensed under the same terms as upstream
+
+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.
+
+License: CC0
+ The person who associated a work with this deed has dedicated the work to the
+ public domain by waiving all of his or her rights to the work worldwide under
+ copyright law, including all related and neighboring rights, to the extent
+ allowed by law.
+ .
+ You can copy, modify, distribute and perform the work, even for commercial
+ purposes, all without asking permission.
+ .
+ In no way are the patent or trademark rights of any person affected by CC0,
+ nor are the rights that other persons may have in the work or in how the work
+ is used, such as publicity or privacy rights.
+ .
+ Unless expressly stated otherwise, the person who associated a work with this
+ deed makes no warranties about the work, and disclaims liability for all uses
+ of the work, to the fullest extent permitted by applicable law.
+ .
+ When using or citing the work, you should not imply endorsement by the author
+ or the affirmer.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..06ca47a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=constantly
+
+%:
+	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/source/options b/debian/source/options
new file mode 100644
index 0000000..aa96de8
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "^\.travis\.yml$"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..69feda9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/constantly/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/constantly/constantly-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

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



More information about the Python-modules-commits mailing list