New Upstream Snapshot - python-memoized-property

Ready changes

Summary

Merged new upstream version: 1.0.3+git20160928.1.17424f0 (was: 1.0.3).

Resulting package

Built on 2023-01-19T15:11 (took 9m18s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots python3-memoized-property

Lintian Result

Diff

diff --git a/PKG-INFO b/PKG-INFO
index 3326d65..35133b4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,4 +1,4 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: memoized-property
 Version: 1.0.3
 Summary: A simple python decorator for defining properties that only run their fget function once
@@ -6,86 +6,7 @@ Home-page: https://github.com/estebistec/python-memoized-property
 Author: Steven Cummings
 Author-email: cummingscs@gmail.com
 License: BSD
-Description: =================
-        memoized_property
-        =================
-        
-        .. image:: https://badge.fury.io/py/memoized-property.png
-            :target: http://badge.fury.io/py/memoized-property
-            
-        .. image:: https://travis-ci.org/estebistec/python-memoized-property.png?branch=master
-                :target: https://travis-ci.org/estebistec/python-memoized-property
-        
-        .. image:: https://pypip.in/d/memoized-property/badge.png
-                :target: https://crate.io/packages/memoized-property?version=latest
-        
-        
-        A simple python decorator for defining properties that only run their fget function once.
-        
-        * Free software: BSD license
-        
-        What?
-        -----
-        
-        A Python property that only calls its ``fget`` function one time. How many times have you written
-        this code (or similar)?
-        
-        ::
-        
-            def class C(object):
-        
-                @property
-                def name(self):
-                    if not hasattr(self, '_name'):
-                        self._name = some_expensive_load()
-                    return self._name
-        
-        I've written it just enough times to be annoyed enough to capture this module. The result is this::
-        
-            from memoized_property import memoized_property
-        
-            def class C(object):
-        
-                @memoized_property
-                def name(self):
-                    # Boilerplate guard conditional avoided, but this is still only called once
-                    return some_expensive_load()
-        
-        Why?
-        ----
-        
-        I couldn't find a pre-existing version of this on PyPI. I found one other on GitHub,
-        https://github.com/ytyng/python-memoized-property, but it was not published to PyPI.
-        
-        
-        
-        
-        History
-        -------
-        
-        1.0.3 (2016-09-28)
-        ++++++++++++++++++
-        
-        * Build universal wheels
-        * Support Python 3.4, 3.5
-        
-        1.0.2 (2014-05-02)
-        ++++++++++++++++++
-        
-        * Remove dependency on six
-        
-        1.0.1 (2014-01-01)
-        ++++++++++++++++++
-        
-        * Added python 3.2 compatability
-        
-        1.0.0 (2013-12-26)
-        ++++++++++++++++++
-        
-        * First release on PyPI.
-        
 Keywords: memoized property decorator
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: BSD License
@@ -98,3 +19,83 @@ Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
+License-File: LICENSE
+License-File: AUTHORS.rst
+
+=================
+memoized_property
+=================
+
+.. image:: https://badge.fury.io/py/memoized-property.png
+    :target: http://badge.fury.io/py/memoized-property
+    
+.. image:: https://travis-ci.org/estebistec/python-memoized-property.png?branch=master
+        :target: https://travis-ci.org/estebistec/python-memoized-property
+
+.. image:: https://pypip.in/d/memoized-property/badge.png
+        :target: https://crate.io/packages/memoized-property?version=latest
+
+
+A simple python decorator for defining properties that only run their fget function once.
+
+* Free software: BSD license
+
+What?
+-----
+
+A Python property that only calls its ``fget`` function one time. How many times have you written
+this code (or similar)?
+
+::
+
+    def class C(object):
+
+        @property
+        def name(self):
+            if not hasattr(self, '_name'):
+                self._name = some_expensive_load()
+            return self._name
+
+I've written it just enough times to be annoyed enough to capture this module. The result is this::
+
+    from memoized_property import memoized_property
+
+    def class C(object):
+
+        @memoized_property
+        def name(self):
+            # Boilerplate guard conditional avoided, but this is still only called once
+            return some_expensive_load()
+
+Why?
+----
+
+I couldn't find a pre-existing version of this on PyPI. I found one other on GitHub,
+https://github.com/ytyng/python-memoized-property, but it was not published to PyPI.
+
+
+
+
+History
+-------
+
+1.0.3 (2016-09-28)
+++++++++++++++++++
+
+* Build universal wheels
+* Support Python 3.4, 3.5
+
+1.0.2 (2014-05-02)
+++++++++++++++++++
+
+* Remove dependency on six
+
+1.0.1 (2014-01-01)
+++++++++++++++++++
+
+* Added python 3.2 compatability
+
+1.0.0 (2013-12-26)
+++++++++++++++++++
+
+* First release on PyPI.
diff --git a/debian/changelog b/debian/changelog
index d3b0e0d..25acc33 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python-memoized-property (1.0.3+git20160928.1.17424f0-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 19 Jan 2023 15:04:37 -0000
+
 python-memoized-property (1.0.3-2) unstable; urgency=medium
 
   * Source-only upload for testing migration
diff --git a/memoized_property.egg-info/PKG-INFO b/memoized_property.egg-info/PKG-INFO
index 3326d65..35133b4 100644
--- a/memoized_property.egg-info/PKG-INFO
+++ b/memoized_property.egg-info/PKG-INFO
@@ -1,4 +1,4 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: memoized-property
 Version: 1.0.3
 Summary: A simple python decorator for defining properties that only run their fget function once
@@ -6,86 +6,7 @@ Home-page: https://github.com/estebistec/python-memoized-property
 Author: Steven Cummings
 Author-email: cummingscs@gmail.com
 License: BSD
-Description: =================
-        memoized_property
-        =================
-        
-        .. image:: https://badge.fury.io/py/memoized-property.png
-            :target: http://badge.fury.io/py/memoized-property
-            
-        .. image:: https://travis-ci.org/estebistec/python-memoized-property.png?branch=master
-                :target: https://travis-ci.org/estebistec/python-memoized-property
-        
-        .. image:: https://pypip.in/d/memoized-property/badge.png
-                :target: https://crate.io/packages/memoized-property?version=latest
-        
-        
-        A simple python decorator for defining properties that only run their fget function once.
-        
-        * Free software: BSD license
-        
-        What?
-        -----
-        
-        A Python property that only calls its ``fget`` function one time. How many times have you written
-        this code (or similar)?
-        
-        ::
-        
-            def class C(object):
-        
-                @property
-                def name(self):
-                    if not hasattr(self, '_name'):
-                        self._name = some_expensive_load()
-                    return self._name
-        
-        I've written it just enough times to be annoyed enough to capture this module. The result is this::
-        
-            from memoized_property import memoized_property
-        
-            def class C(object):
-        
-                @memoized_property
-                def name(self):
-                    # Boilerplate guard conditional avoided, but this is still only called once
-                    return some_expensive_load()
-        
-        Why?
-        ----
-        
-        I couldn't find a pre-existing version of this on PyPI. I found one other on GitHub,
-        https://github.com/ytyng/python-memoized-property, but it was not published to PyPI.
-        
-        
-        
-        
-        History
-        -------
-        
-        1.0.3 (2016-09-28)
-        ++++++++++++++++++
-        
-        * Build universal wheels
-        * Support Python 3.4, 3.5
-        
-        1.0.2 (2014-05-02)
-        ++++++++++++++++++
-        
-        * Remove dependency on six
-        
-        1.0.1 (2014-01-01)
-        ++++++++++++++++++
-        
-        * Added python 3.2 compatability
-        
-        1.0.0 (2013-12-26)
-        ++++++++++++++++++
-        
-        * First release on PyPI.
-        
 Keywords: memoized property decorator
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: BSD License
@@ -98,3 +19,83 @@ Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
 Classifier: Programming Language :: Python :: 3.5
+License-File: LICENSE
+License-File: AUTHORS.rst
+
+=================
+memoized_property
+=================
+
+.. image:: https://badge.fury.io/py/memoized-property.png
+    :target: http://badge.fury.io/py/memoized-property
+    
+.. image:: https://travis-ci.org/estebistec/python-memoized-property.png?branch=master
+        :target: https://travis-ci.org/estebistec/python-memoized-property
+
+.. image:: https://pypip.in/d/memoized-property/badge.png
+        :target: https://crate.io/packages/memoized-property?version=latest
+
+
+A simple python decorator for defining properties that only run their fget function once.
+
+* Free software: BSD license
+
+What?
+-----
+
+A Python property that only calls its ``fget`` function one time. How many times have you written
+this code (or similar)?
+
+::
+
+    def class C(object):
+
+        @property
+        def name(self):
+            if not hasattr(self, '_name'):
+                self._name = some_expensive_load()
+            return self._name
+
+I've written it just enough times to be annoyed enough to capture this module. The result is this::
+
+    from memoized_property import memoized_property
+
+    def class C(object):
+
+        @memoized_property
+        def name(self):
+            # Boilerplate guard conditional avoided, but this is still only called once
+            return some_expensive_load()
+
+Why?
+----
+
+I couldn't find a pre-existing version of this on PyPI. I found one other on GitHub,
+https://github.com/ytyng/python-memoized-property, but it was not published to PyPI.
+
+
+
+
+History
+-------
+
+1.0.3 (2016-09-28)
+++++++++++++++++++
+
+* Build universal wheels
+* Support Python 3.4, 3.5
+
+1.0.2 (2014-05-02)
+++++++++++++++++++
+
+* Remove dependency on six
+
+1.0.1 (2014-01-01)
+++++++++++++++++++
+
+* Added python 3.2 compatability
+
+1.0.0 (2013-12-26)
+++++++++++++++++++
+
+* First release on PyPI.
diff --git a/memoized_property.egg-info/SOURCES.txt b/memoized_property.egg-info/SOURCES.txt
index df73041..95accfd 100644
--- a/memoized_property.egg-info/SOURCES.txt
+++ b/memoized_property.egg-info/SOURCES.txt
@@ -11,5 +11,4 @@ memoized_property.egg-info/PKG-INFO
 memoized_property.egg-info/SOURCES.txt
 memoized_property.egg-info/dependency_links.txt
 memoized_property.egg-info/not-zip-safe
-memoized_property.egg-info/pbr.json
 memoized_property.egg-info/top_level.txt
\ No newline at end of file
diff --git a/memoized_property.egg-info/pbr.json b/memoized_property.egg-info/pbr.json
deleted file mode 100644
index 7514635..0000000
--- a/memoized_property.egg-info/pbr.json
+++ /dev/null
@@ -1 +0,0 @@
-{"is_release": false, "git_version": "17424f0"}
\ No newline at end of file
diff --git a/setup.cfg b/setup.cfg
index 6c71b61..1e3eb36 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,5 +4,4 @@ universal = 1
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/lib/python3/dist-packages/memoized_property-1.0.3.egg-info/pbr.json

No differences were encountered in the control files

More details

Full run details