commit python-dbf for openSUSE:Factory

2020-10-07 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2020-10-07 14:18:29

Comparing /work/SRC/openSUSE:Factory/python-dbf (Old)
 and  /work/SRC/openSUSE:Factory/.python-dbf.new.4249 (New)


Package is "python-dbf"

Wed Oct  7 14:18:29 2020 rev:6 rq:839909 version:0.99.0

Changes:

--- /work/SRC/openSUSE:Factory/python-dbf/python-dbf.changes2019-09-16 
10:49:57.311175709 +0200
+++ /work/SRC/openSUSE:Factory/.python-dbf.new.4249/python-dbf.changes  
2020-10-07 14:18:37.505492301 +0200
@@ -1,0 +2,12 @@
+Wed Oct  7 03:23:16 UTC 2020 - Steve Kowalik 
+
+- Update to 0.99.0:
+  * Backwards incompatible change:
++ new records will have unspecified fields that are nullable set to Null
+  * change default input encoding from 'ascii' to 'utf-8'
+  * improve unicode support
+  * default field case is now upper
+  * FieldnameList is used to support both upper- and lower-case field checks
+  * fix memo block size changing to default when copying 
+
+---

Old:

  dbf-0.98.3.tar.gz

New:

  dbf-0.99.0.tar.gz



Other differences:
--
++ python-dbf.spec ++
--- /var/tmp/diff_new_pack.2vlbPX/_old  2020-10-07 14:18:38.005492698 +0200
+++ /var/tmp/diff_new_pack.2vlbPX/_new  2020-10-07 14:18:38.005492698 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-dbf
 #
-# 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
@@ -18,11 +18,10 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-dbf
-Version:0.98.3
+Version:0.99.0
 Release:0
 Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
 License:BSD-3-Clause
-Group:  Development/Languages/Python
 URL:https://pypi.org/project/dbf/
 Source: 
https://files.pythonhosted.org/packages/source/d/dbf/dbf-%{version}.tar.gz
 BuildRequires:  %{python_module aenum}

++ dbf-0.98.3.tar.gz -> dbf-0.99.0.tar.gz ++
 2321 lines of diff (skipped)




commit python-dbf for openSUSE:Factory

2019-09-16 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2019-09-16 10:49:51

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


Package is "python-dbf"

Mon Sep 16 10:49:51 2019 rev:5 rq:730656 version:0.98.3

Changes:

--- /work/SRC/openSUSE:Factory/python-dbf/python-dbf.changes2019-07-26 
17:33:56.368096394 +0200
+++ /work/SRC/openSUSE:Factory/.python-dbf.new.7948/python-dbf.changes  
2019-09-16 10:49:57.311175709 +0200
@@ -1,0 +2,6 @@
+Fri Sep 13 09:45:05 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.98.3:
+  * no obvious changelog
+
+---

Old:

  dbf-0.98.2.tar.gz

New:

  dbf-0.98.3.tar.gz



Other differences:
--
++ python-dbf.spec ++
--- /var/tmp/diff_new_pack.nXe4tv/_old  2019-09-16 10:49:59.035175486 +0200
+++ /var/tmp/diff_new_pack.nXe4tv/_new  2019-09-16 10:49:59.039175486 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-dbf
-Version:0.98.2
+Version:0.98.3
 Release:0
 Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
 License:BSD-3-Clause

++ dbf-0.98.2.tar.gz -> dbf-0.98.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.2/PKG-INFO new/dbf-0.98.3/PKG-INFO
--- old/dbf-0.98.2/PKG-INFO 2019-07-11 20:34:24.0 +0200
+++ new/dbf-0.98.3/PKG-INFO 2019-08-20 04:26:38.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: dbf
-Version: 0.98.2
+Version: 0.98.3
 Summary: Pure python package for reading/writing dBase, FoxPro, and Visual 
FoxPro .dbf files (including memos)
 Home-page: https://pypi.python.org/pypi/dbf
 Author: Ethan Furman
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.2/dbf/__init__.py 
new/dbf-0.98.3/dbf/__init__.py
--- old/dbf-0.98.2/dbf/__init__.py  2019-07-11 20:32:48.0 +0200
+++ new/dbf-0.98.3/dbf/__init__.py  2019-08-20 04:20:31.0 +0200
@@ -74,7 +74,7 @@
 long = int
 xrange = range
 
-version = 0, 98, 2
+version = 0, 98, 3
 
 NoneType = type(None)
 
@@ -1067,21 +1067,37 @@
 raise AttributeError('NullDate object has no attribute %s' % name)
 
 def __ge__(self, other):
-if isinstance(other, (datetime.date)):
-return self._date >= other
-elif isinstance(other, (Date)):
-if other:
-return self._date >= other._date
-return False
+if self:
+if isinstance(other, (datetime.date)):
+return self._date >= other
+elif isinstance(other, (Date)):
+if other:
+return self._date >= other._date
+return True
+else:
+if isinstance(other, (datetime.date)):
+return False
+elif isinstance(other, (Date)):
+if other:
+return False
+return True
 return NotImplemented
 
 def __gt__(self, other):
-if isinstance(other, (datetime.date)):
-return self._date > other
-elif isinstance(other, (Date)):
-if other:
-return self._date > other._date
-return True
+if self:
+if isinstance(other, (datetime.date)):
+return self._date > other
+elif isinstance(other, (Date)):
+if other:
+return self._date > other._date
+return True
+else:
+if isinstance(other, (datetime.date)):
+return False
+elif isinstance(other, (Date)):
+if other:
+return False
+return False
 return NotImplemented
 
 def __hash__(self):
@@ -3030,7 +3046,7 @@
 return '\n'.join(result)
 
 def __repr__(self):
-return to_bytes(self._data)
+return '%r' % to_bytes(self._data)
 
 def _commit_flux(self):
 """
@@ -3464,7 +3480,7 @@
 
 
 def __repr__(self):
-return to_bytes(self._data)
+return '%r' % to_bytes(self._data)
 
 def __str__(self):
 result = []
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.2/dbf/test.py new/dbf-0.98.3/dbf/test.py
--- old/dbf-0.98.2/dbf/test.py  2019-07-11 20:32:48.0 +0200
+++ new/dbf-0.98.3/dbf/test.py  2019-08-20 04:20:31.0 +0200
@@ -311,9 +311,9 @@
 "DateTime 

commit python-dbf for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2019-07-26 17:33:54

Comparing /work/SRC/openSUSE:Factory/python-dbf (Old)
 and  /work/SRC/openSUSE:Factory/.python-dbf.new.4126 (New)


Package is "python-dbf"

Fri Jul 26 17:33:54 2019 rev:4 rq:718786 version:0.98.2

Changes:

--- /work/SRC/openSUSE:Factory/python-dbf/python-dbf.changes2019-03-26 
22:31:39.249716909 +0100
+++ /work/SRC/openSUSE:Factory/.python-dbf.new.4126/python-dbf.changes  
2019-07-26 17:33:56.368096394 +0200
@@ -1,0 +2,7 @@
+Fri Jul 26 07:45:21 UTC 2019 - pgaj...@suse.com
+
+- version update to 0.98.2
+  * allow dbf files without .dbf ending
+  * allow any case for accessing field names
+
+---

Old:

  dbf-0.98.0.tar.gz

New:

  dbf-0.98.2.tar.gz



Other differences:
--
++ python-dbf.spec ++
--- /var/tmp/diff_new_pack.X4QfDb/_old  2019-07-26 17:33:56.832096211 +0200
+++ /var/tmp/diff_new_pack.X4QfDb/_new  2019-07-26 17:33:56.832096211 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-dbf
-Version:0.98.0
+Version:0.98.2
 Release:0
 Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
 License:BSD-3-Clause

++ dbf-0.98.0.tar.gz -> dbf-0.98.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.0/PKG-INFO new/dbf-0.98.2/PKG-INFO
--- old/dbf-0.98.0/PKG-INFO 2019-03-16 01:39:55.0 +0100
+++ new/dbf-0.98.2/PKG-INFO 2019-07-11 20:34:24.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: dbf
-Version: 0.98.0
+Version: 0.98.2
 Summary: Pure python package for reading/writing dBase, FoxPro, and Visual 
FoxPro .dbf files (including memos)
 Home-page: https://pypi.python.org/pypi/dbf
 Author: Ethan Furman
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.0/dbf/README.md new/dbf-0.98.2/dbf/README.md
--- old/dbf-0.98.0/dbf/README.md2019-03-16 01:38:25.0 +0100
+++ new/dbf-0.98.2/dbf/README.md2019-07-11 20:32:48.0 +0200
@@ -101,12 +101,12 @@
 table.append(datum)
 
 for record in table:
-print record
-print ''
-print record[0:3]
-print record['name':'qualified']
-print [record.name, record.age, record.birth]
-print ''
+print(record)
+print('')
+print(record[0:3])
+print(record['name':'qualified'])
+print([record.name, record.age, record.birth])
+print('')
 
 custom = table.new(
 filename='test_on_disk',
@@ -118,11 +118,11 @@
 custom.append(record)
 for record in custom:
 dbf.write(record, name=record.name.upper())
-print record
-print ''
-print record[0:3]
-print record['name':'qualified']
-print [record.name, record.age, record.birth]
-print ''
+print(record)
+print('')
+print(record[0:3])
+print(record['name':'qualified'])
+print([record.name, record.age, record.birth])
+print('')
 
 table.close()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.0/dbf/WHATSNEW new/dbf-0.98.2/dbf/WHATSNEW
--- old/dbf-0.98.0/dbf/WHATSNEW 2019-03-16 01:38:25.0 +0100
+++ new/dbf-0.98.2/dbf/WHATSNEW 2019-07-11 20:32:48.0 +0200
@@ -1,6 +1,13 @@
 What's New
 ==
 
+0.98.001
+
+
+allow dbf files without .dbf ending
+allow any case for accessing field names
+
+
 0.98.000
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.98.0/dbf/__init__.py 
new/dbf-0.98.2/dbf/__init__.py
--- old/dbf-0.98.0/dbf/__init__.py  2019-03-16 01:38:25.0 +0100
+++ new/dbf-0.98.2/dbf/__init__.py  2019-07-11 20:32:48.0 +0200
@@ -74,7 +74,7 @@
 long = int
 xrange = range
 
-version = 0, 98, 0
+version = 0, 98, 2
 
 NoneType = type(None)
 
@@ -2919,6 +2919,7 @@
 def __getattr__(self, name):
 if name[0:2] == '__' and name[-2:] == '__':
 raise AttributeError('Method %s is not implemented.' % name)
+name = name.lower()
 if not name in self._meta.fields:
 raise FieldMissingError(name)
 if name in self._memos:
@@ -3365,6 +3366,7 @@
 def __getattr__(self, name):
 if name[0:2] == '__' and name[-2:] == '__':

commit python-dbf for openSUSE:Factory

2019-03-26 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2019-03-26 22:31:27

Comparing /work/SRC/openSUSE:Factory/python-dbf (Old)
 and  /work/SRC/openSUSE:Factory/.python-dbf.new.25356 (New)


Package is "python-dbf"

Tue Mar 26 22:31:27 2019 rev:3 rq:686453 version:0.98.0

Changes:

--- /work/SRC/openSUSE:Factory/python-dbf/python-dbf.changes2018-12-13 
19:47:43.732756532 +0100
+++ /work/SRC/openSUSE:Factory/.python-dbf.new.25356/python-dbf.changes 
2019-03-26 22:31:39.249716909 +0100
@@ -1,0 +2,9 @@
+Tue Mar 19 15:01:20 UTC 2019 - Tomáš Chvátal 
+
+- Update to 0.98.0:
+  * fix resize_field to work on empty tables
+  * fix export to fixed-width by using codecs.open
+  * allow non-standard characters in field names (with warnings)
+- Run tests
+
+---

Old:

  dbf-0.97.11.tar.gz

New:

  dbf-0.98.0.tar.gz



Other differences:
--
++ python-dbf.spec ++
--- /var/tmp/diff_new_pack.VqqlpQ/_old  2019-03-26 22:31:41.101716462 +0100
+++ /var/tmp/diff_new_pack.VqqlpQ/_new  2019-03-26 22:31:41.101716462 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-dbf
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# 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
@@ -18,16 +18,20 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-dbf
-Version:0.97.11
+Version:0.98.0
 Release:0
 Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-URL:https://bitbucket.org/stoneleaf/dbf/src/default/
+URL:https://pypi.org/project/dbf/
 Source: 
https://files.pythonhosted.org/packages/source/d/dbf/dbf-%{version}.tar.gz
+BuildRequires:  %{python_module aenum}
+BuildRequires:  %{python_module pytz}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
+Requires:   python-aenum
+Requires:   python-pytz
 BuildArch:  noarch
 %python_subpackages
 
@@ -49,6 +53,9 @@
 %python_install
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
+%check
+%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python dbf/test.py
+
 %files %{python_files}
 %license dbf/LICENSE
 %{python_sitelib}/dbf-%{version}-py*.egg-info

++ dbf-0.97.11.tar.gz -> dbf-0.98.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.97.11/PKG-INFO new/dbf-0.98.0/PKG-INFO
--- old/dbf-0.97.11/PKG-INFO2018-06-06 03:54:52.0 +0200
+++ new/dbf-0.98.0/PKG-INFO 2019-03-16 01:39:55.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: dbf
-Version: 0.97.11
+Version: 0.98.0
 Summary: Pure python package for reading/writing dBase, FoxPro, and Visual 
FoxPro .dbf files (including memos)
 Home-page: https://pypi.python.org/pypi/dbf
 Author: Ethan Furman
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.97.11/dbf/LICENSE new/dbf-0.98.0/dbf/LICENSE
--- old/dbf-0.97.11/dbf/LICENSE 2018-06-06 03:38:23.0 +0200
+++ new/dbf-0.98.0/dbf/LICENSE  2019-03-16 01:38:25.0 +0100
@@ -1,4 +1,4 @@
-Copyright (c) 2008-2018 Ethan Furman
+Copyright (c) 2008-2019 Ethan Furman
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.97.11/dbf/WHATSNEW new/dbf-0.98.0/dbf/WHATSNEW
--- old/dbf-0.97.11/dbf/WHATSNEW1970-01-01 01:00:00.0 +0100
+++ new/dbf-0.98.0/dbf/WHATSNEW 2019-03-16 01:38:25.0 +0100
@@ -0,0 +1,409 @@
+What's New
+==
+
+0.98.000
+
+
+fix resize_field to work on empty tables
+fix export to fixed-width by using codecs.open
+allow non-standard characters in field names (with warnings)
+
+
+0.97.011
+
+
+allow '' as a null date in dbf files
+
+
+0.97.010
+
+
+fixed nullable-field access in vfp tables
+
+
+0.97.009
+
+
+allow tzinfo addition/change in DateTime.combine()
+fix strptime for Time
+hook into datetime.datetime and .date equality comparisons
+
+
+0.97.008
+
+
+Marshalling a DateTime now works
+
+
+0.97.007
+
+
+add pytz support to Time and DateTime
+Marshalling a DateTime sends as UTC if possible
+
+
+0.97.004
+
+
+Fix bug in VFP doubles
+
+
+0.97.003
+
+
+Fix field creation 

commit python-dbf for openSUSE:Factory

2018-12-13 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2018-12-13 19:47:42

Comparing /work/SRC/openSUSE:Factory/python-dbf (Old)
 and  /work/SRC/openSUSE:Factory/.python-dbf.new.28833 (New)


Package is "python-dbf"

Thu Dec 13 19:47:42 2018 rev:2 rq:655641 version:0.97.11

Changes:

--- /work/SRC/openSUSE:Factory/python-dbf/python-dbf.changes2018-06-02 
12:04:54.191933306 +0200
+++ /work/SRC/openSUSE:Factory/.python-dbf.new.28833/python-dbf.changes 
2018-12-13 19:47:43.732756532 +0100
@@ -1,0 +2,12 @@
+Thu Dec  6 12:46:33 UTC 2018 - Tomáš Chvátal 
+
+- Version update to 0.97.11:
+  * No obvious changelog
+- Fix fdupes call
+
+---
+Tue Dec  4 12:47:09 UTC 2018 - Matej Cepl 
+
+- Remove superfluous devel dependency for noarch package
+
+---

Old:

  LICENSE
  dbf-0.97.5.tar.gz

New:

  dbf-0.97.11.tar.gz



Other differences:
--
++ python-dbf.spec ++
--- /var/tmp/diff_new_pack.G2GueJ/_old  2018-12-13 19:47:44.240755875 +0100
+++ /var/tmp/diff_new_pack.G2GueJ/_new  2018-12-13 19:47:44.244755869 +0100
@@ -12,26 +12,23 @@
 # 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-%{**}}
 Name:   python-dbf
-Version:0.97.5
+Version:0.97.11
 Release:0
 Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Url:https://bitbucket.org/stoneleaf/dbf/src/default/
+URL:https://bitbucket.org/stoneleaf/dbf/src/default/
 Source: 
https://files.pythonhosted.org/packages/source/d/dbf/dbf-%{version}.tar.gz
-Source10:   https://bitbucket.org/stoneleaf/dbf/raw/%{version}/dbf/LICENSE
-BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildArch:  noarch
-
 %python_subpackages
 
 %description
@@ -44,18 +41,16 @@
 
 %prep
 %setup -q -n dbf-%{version}
-cp %{SOURCE10} .
 
 %build
 %python_build
 
 %install
 %python_install
-%fdupes %{buildroot}%{_prefix}
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %files %{python_files}
-%defattr(-,root,root,-)
-%license LICENSE
+%license dbf/LICENSE
 %{python_sitelib}/dbf-%{version}-py*.egg-info
 %{python_sitelib}/dbf
 

++ dbf-0.97.5.tar.gz -> dbf-0.97.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.97.5/PKG-INFO new/dbf-0.97.11/PKG-INFO
--- old/dbf-0.97.5/PKG-INFO 2018-05-24 07:13:40.0 +0200
+++ new/dbf-0.97.11/PKG-INFO2018-06-06 03:54:52.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: dbf
-Version: 0.97.5
+Version: 0.97.11
 Summary: Pure python package for reading/writing dBase, FoxPro, and Visual 
FoxPro .dbf files (including memos)
 Home-page: https://pypi.python.org/pypi/dbf
 Author: Ethan Furman
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dbf-0.97.5/dbf/LICENSE new/dbf-0.97.11/dbf/LICENSE
--- old/dbf-0.97.5/dbf/LICENSE  1970-01-01 01:00:00.0 +0100
+++ new/dbf-0.97.11/dbf/LICENSE 2018-06-06 03:38:23.0 +0200
@@ -0,0 +1,32 @@
+Copyright (c) 2008-2018 Ethan Furman
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+Redistributions of source code must retain the above
+copyright notice, this list of conditions and the
+following disclaimer.
+
+Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following
+disclaimer in the documentation and/or other materials
+provided with the distribution.
+
+Neither the name Ethan Furman nor the names of any
+contributors may be used to endorse or promote products
+derived from this software without specific prior written
+permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 

commit python-dbf for openSUSE:Factory

2018-06-02 Thread root
Hello community,

here is the log from the commit of package python-dbf for openSUSE:Factory 
checked in at 2018-06-02 12:04:47

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


Package is "python-dbf"

Sat Jun  2 12:04:47 2018 rev:1 rq:612073 version:0.97.5

Changes:

New Changes file:

--- /dev/null   2018-05-30 11:41:29.140556178 +0200
+++ /work/SRC/openSUSE:Factory/.python-dbf.new/python-dbf.changes   
2018-06-02 12:04:54.191933306 +0200
@@ -0,0 +1,49 @@
+---
+Thu May 24 17:31:07 UTC 2018 - toddrme2...@gmail.com
+
+- Update to 0.97.5
+  * Fix bug in VFP doubles
+  * Fix field creation flag handling
+  * Allow (redundant) "binary" flag on binary type fields
+  * Fix fp/FoxBase table header creation
+  * Can now open dbf files as read-only when lacking write permissions.
+  * Moved to a single 2/3 code base.
+  * Opening a database now defaults to dbf.READ_ONLY; can also use 
dbf.READ_WRITE;
+the corresponding strings are no longer supported.
+- Spec file cleanups
+- License is now included in source archive
+
+---
+Wed Jul 26 08:53:07 UTC 2017 - br...@ioda-net.ch
+
+-specfile add line to fix build for Leap 
+
+---
+Wed Jun  7 12:07:29 UTC 2017 - br...@ioda-net.ch
+
+- specfile move to unified single-spec-python
+
+---
+Sat Jul 23 18:07:35 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * no more README or WHATSNEW in tar-ball
+
+- update to version 0.96.8:
+  (no changelog available)
+
+---
+Sun May  8 07:14:51 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+---
+Thu Nov 19 16:36:34 UTC 2015 - br...@ioda-net.ch
+
+- Initial packaging on obs
+  * Including from upstream missing LICENSE file
+  * Fix eol by sed 
+

New:

  LICENSE
  dbf-0.97.5.tar.gz
  python-dbf.changes
  python-dbf.spec



Other differences:
--
++ python-dbf.spec ++
#
# spec file for package python-dbf
#
# Copyright (c) 2018 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-%{**}}
Name:   python-dbf
Version:0.97.5
Release:0
Summary:Pure python package for reading/writing dBase, FoxPro, and 
Visual FoxPro .dbf
License:BSD-3-Clause
Group:  Development/Languages/Python
Url:https://bitbucket.org/stoneleaf/dbf/src/default/
Source: 
https://files.pythonhosted.org/packages/source/d/dbf/dbf-%{version}.tar.gz
Source10:   https://bitbucket.org/stoneleaf/dbf/raw/%{version}/dbf/LICENSE
BuildRequires:  %{python_module devel}
BuildRequires:  %{python_module setuptools}
BuildRequires:  fdupes
BuildRequires:  python-rpm-macros
BuildArch:  noarch

%python_subpackages

%description
Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro .dbf
files (including memos)

Currently supports dBase III, Clipper, FoxPro, and Visual FoxPro tables. Text is
returned as unicode, and codepage settings in tables are honored. Memos and Null
fields are supported.

%prep
%setup -q -n dbf-%{version}
cp %{SOURCE10} .

%build
%python_build

%install
%python_install
%fdupes %{buildroot}%{_prefix}

%files %{python_files}
%defattr(-,root,root,-)
%license LICENSE
%{python_sitelib}/dbf-%{version}-py*.egg-info
%{python_sitelib}/dbf

%changelog
++ LICENSE ++
Copyright (c) 2008-2018 Ethan Furman
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

Redistributions of source code must retain the above
copyright notice, this list of conditions and the
following disclaimer.

Redistributions in binary