commit python-dephell-archive for openSUSE:Factory

2020-03-03 Thread root
Hello community,

here is the log from the commit of package python-dephell-archive for 
openSUSE:Factory checked in at 2020-03-03 10:18:55

Comparing /work/SRC/openSUSE:Factory/python-dephell-archive (Old)
 and  /work/SRC/openSUSE:Factory/.python-dephell-archive.new.26092 (New)


Package is "python-dephell-archive"

Tue Mar  3 10:18:55 2020 rev:3 rq:781035 version:0.1.6

Changes:

--- 
/work/SRC/openSUSE:Factory/python-dephell-archive/python-dephell-archive.changes
2019-09-13 15:05:14.361257744 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-dephell-archive.new.26092/python-dephell-archive.changes
 2020-03-03 10:20:36.751193127 +0100
@@ -1,0 +2,21 @@
+Mon Mar  2 16:44:57 CET 2020 - Matej Cepl 
+
+- Update to 0.1.6:
+  - Tests for recursive iterdir
+  - ArchiveStream: Implement zip dir exists and is_dir
+  - ArchiveStream: Cache implicit zip dirs
+  - fix member_path bool check
+  - group things in stream
+  - less hasattr checks
+  - sort imports
+  - ArchivePath: Implement iterdir() non-recursive
+  - ArchivePath: Implement iterdir() for subpaths
+  - apply changes to the new code
+  - reuse file name getting logic
+  - fix suffix check
+  - simplify prefix check
+  - bump version to 0.1.6
+- Unfortunately, upstream by mistake doesn’t include tests in the
+  release archive (gh#dephell/dephell_archive#20)
+
+---

Old:

  dephell-archive-0.1.5.tar.gz

New:

  dephell-archive-0.1.6.tar.gz



Other differences:
--
++ python-dephell-archive.spec ++
--- /var/tmp/diff_new_pack.InHwPm/_old  2020-03-03 10:20:37.639194964 +0100
+++ /var/tmp/diff_new_pack.InHwPm/_new  2020-03-03 10:20:37.647194981 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-dephell-archive
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-dephell-archive
-Version:0.1.5
+Version:0.1.6
 Release:0
 Summary:Pathlib for archives
 License:MIT
@@ -52,7 +52,8 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%pytest
+# gh#dephell/dephell_archive#20
+# %%pytest
 
 %files %{python_files}
 %license LICENSE

++ dephell-archive-0.1.5.tar.gz -> dephell-archive-0.1.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell-archive-0.1.5/PKG-INFO 
new/dephell-archive-0.1.6/PKG-INFO
--- old/dephell-archive-0.1.5/PKG-INFO  1970-01-01 01:00:00.0 +0100
+++ new/dephell-archive-0.1.6/PKG-INFO  1970-01-01 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dephell-archive
-Version: 0.1.5
+Version: 0.1.6
 Summary: pathlib for archives
 Project-URL: Repository, https://github.com/dephell/dephell_archive
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell-archive-0.1.5/dephell_archive/__init__.py 
new/dephell-archive-0.1.6/dephell_archive/__init__.py
--- old/dephell-archive-0.1.5/dephell_archive/__init__.py   2019-05-23 
20:40:23.0 +0200
+++ new/dephell-archive-0.1.6/dephell_archive/__init__.py   2019-12-30 
17:34:50.0 +0100
@@ -1,7 +1,9 @@
+# app
 from ._path import ArchivePath
 from ._stream import ArchiveStream
 
-__version__ = '0.1.5'
+
+__version__ = '0.1.6'
 __author__ = 'Gram (@orsinium)'
 __license__ = 'MIT'
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dephell-archive-0.1.5/dephell_archive/_cached_property.py 
new/dephell-archive-0.1.6/dephell_archive/_cached_property.py
--- old/dephell-archive-0.1.5/dephell_archive/_cached_property.py   
1970-01-01 01:00:00.0 +0100
+++ new/dephell-archive-0.1.6/dephell_archive/_cached_property.py   
2019-12-30 17:34:10.0 +0100
@@ -0,0 +1,19 @@
+
+
+# 
https://github.com/bottlepy/bottle/commit/fa7733e075da0d790d809aa3d2f53071897e6f76
+# https://github.com/pydanny/cached-property/blob/master/cached_property.py
+class cached_property(object):  # noqa: N801
+"""
+A property that is only computed once per instance and then replaces itself
+with an ordinary attribute. Deleting the attribute resets the property.
+"""
+
+def __init__(self, func):
+self.__doc__ = func.__doc__
+self.func = func
+
+def __get__(self, obj, cls):
+if obj is None:
+return self
+value = obj.__dict__[self.func.__name__] = self.func

commit python-dephell-archive for openSUSE:Factory

2019-09-13 Thread root
Hello community,

here is the log from the commit of package python-dephell-archive for 
openSUSE:Factory checked in at 2019-09-13 15:03:52

Comparing /work/SRC/openSUSE:Factory/python-dephell-archive (Old)
 and  /work/SRC/openSUSE:Factory/.python-dephell-archive.new.7948 (New)


Package is "python-dephell-archive"

Fri Sep 13 15:03:52 2019 rev:2 rq:730651 version:0.1.5

Changes:

--- 
/work/SRC/openSUSE:Factory/python-dephell-archive/python-dephell-archive.changes
2019-08-13 13:26:35.697334220 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-dephell-archive.new.7948/python-dephell-archive.changes
  2019-09-13 15:05:14.361257744 +0200
@@ -1,0 +2,6 @@
+Fri Sep 13 09:20:12 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.1.5:
+  * ship tests
+
+---

Old:

  dephell-archive-0.1.4.tar.gz

New:

  dephell-archive-0.1.5.tar.gz



Other differences:
--
++ python-dephell-archive.spec ++
--- /var/tmp/diff_new_pack.Bcq67t/_old  2019-09-13 15:05:15.033257601 +0200
+++ /var/tmp/diff_new_pack.Bcq67t/_new  2019-09-13 15:05:15.033257601 +0200
@@ -12,29 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
+#
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-dephell-archive
-Version:0.1.4
+Version:0.1.5
 Release:0
-License:MIT
 Summary:Pathlib for archives
-Url:https://github.com/dephell/dephell_archive
+License:MIT
 Group:  Development/Languages/Python
+URL:https://github.com/dephell/dephell_archive
 Source: 
https://files.pythonhosted.org/packages/source/d/dephell-archive/dephell-archive-%{version}.tar.gz
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module base >= 3.5}
 BuildRequires:  %{python_module setuptools}
-# SECTION test requirements
-BuildRequires:  %{python_module attrs}
-# /SECTION
 BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 Requires:   python-attrs
 BuildArch:  noarch
-
+# SECTION test requirements
+BuildRequires:  %{python_module attrs}
+BuildRequires:  %{python_module pytest}
+# /SECTION
 %python_subpackages
 
 %description
@@ -50,6 +51,9 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+%pytest
+
 %files %{python_files}
 %license LICENSE
 %doc README.md

++ dephell-archive-0.1.4.tar.gz -> dephell-archive-0.1.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dephell-archive-0.1.4/PKG-INFO 
new/dephell-archive-0.1.5/PKG-INFO
--- old/dephell-archive-0.1.4/PKG-INFO  1970-01-01 01:00:00.0 +0100
+++ new/dephell-archive-0.1.5/PKG-INFO  1970-01-01 01:00:00.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: dephell-archive
-Version: 0.1.4
+Version: 0.1.5
 Summary: pathlib for archives
 Project-URL: Repository, https://github.com/dephell/dephell_archive
 Author: Gram
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dephell-archive-0.1.4/dephell-archive.egg-info/PKG-INFO 
new/dephell-archive-0.1.5/dephell-archive.egg-info/PKG-INFO
--- old/dephell-archive-0.1.4/dephell-archive.egg-info/PKG-INFO 1970-01-01 
01:00:00.0 +0100
+++ new/dephell-archive-0.1.5/dephell-archive.egg-info/PKG-INFO 1970-01-01 
01:00:00.0 +0100
@@ -1,82 +0,0 @@
-Metadata-Version: 2.1
-Name: dephell-archive
-Version: 0.1.4
-Summary: pathlib for archives
-Project-URL: Repository, https://github.com/dephell/dephell_archive
-Author: Gram
-Author-email: master_f...@mail.ru
-License: MIT
-Requires-Python: >=3.5
-Keywords: dephell,pathlib,archive,tar,zip,wheel,sdist
-Classifier: Development Status :: 4 - Beta
-Classifier: Environment :: Console
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: MIT License
-Classifier: Programming Language :: Python
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
-Classifier: Topic :: System :: Archiving :: Packaging
-Classifier: Topic :: System :: Archiving
-Classifier: Topic :: System :: Filesystems
-Classifier: Programming Language :: Python :: 3.5
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Programming Language :: Python :: 3.7
-Classifier: Programming Language :: Python :: 3.8
-Classifier: Programming Language :: Python :: Implementation :: CPython
-Classifier: Programming Language :: Python :: Implementation :: PyPy
-Classifier: Operating System

commit python-dephell-archive for openSUSE:Factory

2019-08-13 Thread root
Hello community,

here is the log from the commit of package python-dephell-archive for 
openSUSE:Factory checked in at 2019-08-13 13:26:22

Comparing /work/SRC/openSUSE:Factory/python-dephell-archive (Old)
 and  /work/SRC/openSUSE:Factory/.python-dephell-archive.new.9556 (New)


Package is "python-dephell-archive"

Tue Aug 13 13:26:22 2019 rev:1 rq:722828 version:0.1.4

Changes:

New Changes file:

--- /dev/null   2019-08-07 02:59:15.679220339 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-dephell-archive.new.9556/python-dephell-archive.changes
  2019-08-13 13:26:35.697334220 +0200
@@ -0,0 +1,4 @@
+---
+Sun May 19 03:59:17 AM UTC 2019 - John Vandenberg 
+
+- Initial spec for v0.1.4

New:

  dephell-archive-0.1.4.tar.gz
  python-dephell-archive.changes
  python-dephell-archive.spec



Other differences:
--
++ python-dephell-archive.spec ++
#
# spec file for package python-dephell-archive
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/


%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name:   python-dephell-archive
Version:0.1.4
Release:0
License:MIT
Summary:Pathlib for archives
Url:https://github.com/dephell/dephell_archive
Group:  Development/Languages/Python
Source: 
https://files.pythonhosted.org/packages/source/d/dephell-archive/dephell-archive-%{version}.tar.gz
BuildRequires:  python-rpm-macros
BuildRequires:  %{python_module base >= 3.5}
BuildRequires:  %{python_module setuptools}
# SECTION test requirements
BuildRequires:  %{python_module attrs}
# /SECTION
BuildRequires:  fdupes
Requires:   python-attrs
BuildArch:  noarch

%python_subpackages

%description
Dephell library providing pathlib for archives.

%prep
%setup -q -n dephell-archive-%{version}

%build
%python_build

%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}

%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*

%changelog