[Python-modules-commits] [python-ipaddress] 01/03: Import python-ipaddress_1.0.16.orig.tar.gz
Tristan Seligmann
mithrandi at moszumanska.debian.org
Tue Jan 19 23:49:15 UTC 2016
This is an automated email from the git hooks/post-receive script.
mithrandi pushed a commit to branch master
in repository python-ipaddress.
commit 9bfdaae405577eb068028f3b32710cc5804c2a4a
Author: Tristan Seligmann <mithrandi at debian.org>
Date: Wed Jan 20 01:47:59 2016 +0200
Import python-ipaddress_1.0.16.orig.tar.gz
---
LICENSE | 50 ++++++++++++++++++++++++++++++++++++++++++
MANIFEST.in | 2 +-
PKG-INFO | 2 +-
ipaddress.egg-info/PKG-INFO | 2 +-
ipaddress.egg-info/SOURCES.txt | 1 +
ipaddress.py | 2 +-
setup.py | 2 +-
7 files changed, 56 insertions(+), 5 deletions(-)
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..41bd16b
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,50 @@
+This package is a modified version of cpython's ipaddress module.
+It is therefore distributed under the PSF license, as follows:
+
+PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+--------------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using this software ("Python") in source or binary form and
+its associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, PSF hereby
+grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+analyze, test, perform and/or display publicly, prepare derivative works,
+distribute, and otherwise use Python alone or in any derivative version,
+provided, however, that PSF's License Agreement and PSF's notice of copyright,
+i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are
+retained in Python alone or in any derivative version prepared by Licensee.
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python or any part thereof, and wants to make
+the derivative work available to others as provided herein, then
+Licensee hereby agrees to include in any such work a brief summary of
+the changes made to Python.
+
+4. PSF is making Python available to Licensee on an "AS IS"
+basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. Nothing in this License Agreement shall be deemed to create any
+relationship of agency, partnership, or joint venture between PSF and
+Licensee. This License Agreement does not grant permission to use PSF
+trademarks or trade name in a trademark sense to endorse or promote
+products or services of Licensee, or any third party.
+
+8. By copying, installing or otherwise using Python, Licensee
+agrees to be bound by the terms and conditions of this License
+Agreement.
diff --git a/MANIFEST.in b/MANIFEST.in
index 7c6bc65..6939b82 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,2 +1,2 @@
-include README.md Makefile
+include README.md Makefile LICENSE
include test_*.py
diff --git a/PKG-INFO b/PKG-INFO
index 4c88670..2074943 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: ipaddress
-Version: 1.0.15
+Version: 1.0.16
Summary: IPv4/IPv6 manipulation library
Home-page: https://github.com/phihag/ipaddress
Author: Philipp Hagemeister
diff --git a/ipaddress.egg-info/PKG-INFO b/ipaddress.egg-info/PKG-INFO
index 4c88670..2074943 100644
--- a/ipaddress.egg-info/PKG-INFO
+++ b/ipaddress.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: ipaddress
-Version: 1.0.15
+Version: 1.0.16
Summary: IPv4/IPv6 manipulation library
Home-page: https://github.com/phihag/ipaddress
Author: Philipp Hagemeister
diff --git a/ipaddress.egg-info/SOURCES.txt b/ipaddress.egg-info/SOURCES.txt
index 60ef714..ef55b3a 100644
--- a/ipaddress.egg-info/SOURCES.txt
+++ b/ipaddress.egg-info/SOURCES.txt
@@ -1,3 +1,4 @@
+LICENSE
MANIFEST.in
Makefile
README
diff --git a/ipaddress.py b/ipaddress.py
index 27f0026..7657fc8 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -14,7 +14,7 @@ from __future__ import unicode_literals
import itertools
import struct
-__version__ = '1.0.15'
+__version__ = '1.0.16'
# Compatibility functions
_compat_int_types = (int,)
diff --git a/setup.py b/setup.py
index 6e4da4f..ec4e0b8 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ except ImportError:
settings = {
'name': 'ipaddress',
- 'version': '1.0.15',
+ 'version': '1.0.16',
'description': 'IPv4/IPv6 manipulation library',
'long_description': 'Port of the 3.3+ ipaddress module to 2.6, 2.7, 3.2',
'author': 'Philipp Hagemeister',
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-ipaddress.git
More information about the Python-modules-commits
mailing list