Hello community,

here is the log from the commit of package python3-pickleshare for 
openSUSE:Factory checked in at 2016-02-01 19:56:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python3-pickleshare (Old)
 and      /work/SRC/openSUSE:Factory/.python3-pickleshare.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python3-pickleshare"

Changes:
--------
--- /work/SRC/openSUSE:Factory/python3-pickleshare/python3-pickleshare.changes  
2015-09-30 05:49:11.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-pickleshare.new/python3-pickleshare.changes 
    2016-02-01 19:57:07.000000000 +0100
@@ -1,0 +2,11 @@
+Sat Jan 30 17:54:16 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 0.6:
+  * Fix module import to work with the latest version
+  * remove pkg.info
+  * update main page URL
+
+-------------------------------------------------------------------

Old:
----
  pickleshare-0.5.tar.gz

New:
----
  pickleshare-0.6.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python3-pickleshare.spec ++++++
--- /var/tmp/diff_new_pack.vJ8GSs/_old  2016-02-01 19:57:08.000000000 +0100
+++ /var/tmp/diff_new_pack.vJ8GSs/_new  2016-02-01 19:57:08.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-pickleshare
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:           python3-pickleshare
-Version:        0.5
+Version:        0.6
 Release:        0
 Summary:        Tiny shelve-like database with concurrency support
 License:        MIT

++++++ pickleshare-0.5.tar.gz -> pickleshare-0.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/PKG-INFO new/pickleshare-0.6/PKG-INFO
--- old/pickleshare-0.5/PKG-INFO        2015-03-24 20:13:21.000000000 +0100
+++ new/pickleshare-0.6/PKG-INFO        2016-01-19 21:50:14.000000000 +0100
@@ -1,8 +1,8 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: pickleshare
-Version: 0.5
+Version: 0.6
 Summary: Tiny 'shelve'-like database with concurrency support
-Home-page: https://github.com/vivainio/pickleshare
+Home-page: https://github.com/pickleshare/pickleshare
 Author: Ville Vainio
 Author-email: vivai...@gmail.com
 License: MIT
@@ -34,3 +34,5 @@
         
 Keywords: database persistence pickle ipc shelve
 Platform: UNKNOWN
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/pickleshare.egg-info/PKG-INFO 
new/pickleshare-0.6/pickleshare.egg-info/PKG-INFO
--- old/pickleshare-0.5/pickleshare.egg-info/PKG-INFO   2015-03-24 
20:13:20.000000000 +0100
+++ new/pickleshare-0.6/pickleshare.egg-info/PKG-INFO   2016-01-19 
21:50:13.000000000 +0100
@@ -1,8 +1,8 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: pickleshare
-Version: 0.5
+Version: 0.6
 Summary: Tiny 'shelve'-like database with concurrency support
-Home-page: https://github.com/vivainio/pickleshare
+Home-page: https://github.com/pickleshare/pickleshare
 Author: Ville Vainio
 Author-email: vivai...@gmail.com
 License: MIT
@@ -34,3 +34,5 @@
         
 Keywords: database persistence pickle ipc shelve
 Platform: UNKNOWN
+Classifier: Programming Language :: Python :: 2
+Classifier: Programming Language :: Python :: 3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/pickleshare.egg-info/requires.txt 
new/pickleshare-0.6/pickleshare.egg-info/requires.txt
--- old/pickleshare-0.5/pickleshare.egg-info/requires.txt       2015-03-24 
20:13:20.000000000 +0100
+++ new/pickleshare-0.6/pickleshare.egg-info/requires.txt       2016-01-19 
21:50:13.000000000 +0100
@@ -1 +1 @@
-path.py
+path.py>=6.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/pickleshare.py 
new/pickleshare-0.6/pickleshare.py
--- old/pickleshare-0.5/pickleshare.py  2015-03-24 19:42:40.000000000 +0100
+++ new/pickleshare-0.6/pickleshare.py  2016-01-19 21:49:22.000000000 +0100
@@ -36,9 +36,9 @@
 from __future__ import print_function
 
 
-__version__ = "0.5"
+__version__ = "0.6"
 
-from path import path as Path
+from path import Path
 # from IPython.external.path import path as Path
 import os,stat,time
 import collections
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/setup.cfg 
new/pickleshare-0.6/setup.cfg
--- old/pickleshare-0.5/setup.cfg       2015-03-24 20:13:21.000000000 +0100
+++ new/pickleshare-0.6/setup.cfg       2016-01-19 21:50:14.000000000 +0100
@@ -1,3 +1,6 @@
+[bdist_wheel]
+universal = 1
+
 [egg_info]
 tag_build = 
 tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pickleshare-0.5/setup.py new/pickleshare-0.6/setup.py
--- old/pickleshare-0.5/setup.py        2015-03-24 19:25:15.000000000 +0100
+++ new/pickleshare-0.6/setup.py        2016-01-19 21:46:43.000000000 +0100
@@ -16,8 +16,8 @@
     author_email="vivai...@gmail.com",
     description="Tiny 'shelve'-like database with concurrency support",
     license="MIT",
-    install_requires=["path.py"],
-    url="https://github.com/vivainio/pickleshare";,
+    install_requires=["path.py>=6.2"],
+    url="https://github.com/pickleshare/pickleshare";,
     keywords="database persistence pickle ipc shelve",
     long_description="""\
 PickleShare - a small 'shelve' like datastore with concurrency support
@@ -45,7 +45,9 @@
 advanced features of a "real" object database.
 
 Installation guide: pip install path pickleshare
-"""
-
-
+""",
+    classifiers=[
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 3',
+    ]
 )


Reply via email to