Hello community,

here is the log from the commit of package python-scrypt for openSUSE:Factory 
checked in at 2020-12-02 13:58:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-scrypt (Old)
 and      /work/SRC/openSUSE:Factory/.python-scrypt.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-scrypt"

Wed Dec  2 13:58:27 2020 rev:5 rq:852368 version:0.8.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-scrypt/python-scrypt.changes      
2020-06-10 00:46:06.562588286 +0200
+++ /work/SRC/openSUSE:Factory/.python-scrypt.new.5913/python-scrypt.changes    
2020-12-02 13:58:28.401817070 +0100
@@ -1,0 +2,7 @@
+Tue Dec  1 14:31:41 UTC 2020 - Dirk Mueller <dmuel...@suse.com>
+
+- update to 0.8.17:
+  * add_dll_directory for python 3.8 on windows, as importlib.util.find_spec 
does not search all paths anymore
+  * Add additional test vector from RFC
+
+-------------------------------------------------------------------

Old:
----
  scrypt-0.8.15.tar.gz

New:
----
  scrypt-0.8.17.tar.gz

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

Other differences:
------------------
++++++ python-scrypt.spec ++++++
--- /var/tmp/diff_new_pack.gCmYHv/_old  2020-12-02 13:58:28.929817626 +0100
+++ /var/tmp/diff_new_pack.gCmYHv/_new  2020-12-02 13:58:28.933817631 +0100
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-scrypt
-Version:        0.8.15
+Version:        0.8.17
 Release:        0
 Summary:        Bindings for scrypt
 License:        BSD-2-Clause

++++++ scrypt-0.8.15.tar.gz -> scrypt-0.8.17.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/PKG-INFO new/scrypt-0.8.17/PKG-INFO
--- old/scrypt-0.8.15/PKG-INFO  2020-05-21 12:48:14.000000000 +0200
+++ new/scrypt-0.8.17/PKG-INFO  2020-09-14 08:02:34.525633000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: scrypt
-Version: 0.8.15
+Version: 0.8.17
 Summary: Bindings for the scrypt key derivation function library
 Home-page: https://github.com/holgern/py-scrypt
 Author: Magnus Hallin
@@ -76,7 +76,7 @@
         You can install py-scrypt from this repository if you want the latest
         but possibly non-compiling version::
         
-            $ hg clone http://bitbucket.org/mhallin/py-scrypt
+            $ git clone https://github.com/holgern/py-scrypt.git
             $ cd py-scrypt
             $ python setup.py build
         
@@ -106,6 +106,13 @@
         
         Changelog
         =========
+        0.8.17
+        ------
+        * add_dll_directory for python 3.8 on windows, as 
importlib.util.find_spec does not search all paths anymore 
+         
+        0.8.16
+        ------
+        * Add additional test vector from RFC (thanks to @ChrisMacNaughton)
         
         0.8.15
         ------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/README.rst new/scrypt-0.8.17/README.rst
--- old/scrypt-0.8.15/README.rst        2020-05-21 12:26:06.000000000 +0200
+++ new/scrypt-0.8.17/README.rst        2020-09-12 09:54:52.000000000 +0200
@@ -66,7 +66,7 @@
 You can install py-scrypt from this repository if you want the latest
 but possibly non-compiling version::
 
-    $ hg clone http://bitbucket.org/mhallin/py-scrypt
+    $ git clone https://github.com/holgern/py-scrypt.git
     $ cd py-scrypt
     $ python setup.py build
 
@@ -96,6 +96,13 @@
 
 Changelog
 =========
+0.8.17
+------
+* add_dll_directory for python 3.8 on windows, as importlib.util.find_spec 
does not search all paths anymore 
+ 
+0.8.16
+------
+* Add additional test vector from RFC (thanks to @ChrisMacNaughton)
 
 0.8.15
 ------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/scrypt/scrypt.py 
new/scrypt-0.8.17/scrypt/scrypt.py
--- old/scrypt-0.8.15/scrypt/scrypt.py  2020-05-21 12:25:08.000000000 +0200
+++ new/scrypt-0.8.17/scrypt/scrypt.py  2020-09-12 21:21:56.000000000 +0200
@@ -12,11 +12,18 @@
     import imp
     _scrypt = cdll.LoadLibrary(imp.find_module('_scrypt')[1])
 else:
+    if sys.version_info >= (3, 8) and sys.platform == 'win32':
+        lib_path = os.path.join(os.path.normpath(sys.prefix), 'Library', 'bin')
+        build_dir = os.path.join(os.path.dirname(__file__), '../')
+        if os.path.exists(lib_path):
+            os.add_dll_directory(lib_path)
+        if os.path.exists(build_dir):
+            os.add_dll_directory(build_dir)
     import importlib
     import importlib.util
     _scrypt = cdll.LoadLibrary(importlib.util.find_spec('_scrypt').origin)
 
-__version__ = '0.8.15'
+__version__ = '0.8.17'
 
 _scryptenc_buf = _scrypt.exp_scryptenc_buf
 _scryptenc_buf.argtypes = [c_char_p,  # const uint_t  *inbuf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/scrypt/tests/hashvectors.csv 
new/scrypt-0.8.17/scrypt/tests/hashvectors.csv
--- old/scrypt-0.8.15/scrypt/tests/hashvectors.csv      2020-04-07 
11:58:21.000000000 +0200
+++ new/scrypt-0.8.17/scrypt/tests/hashvectors.csv      2020-09-09 
15:05:45.000000000 +0200
@@ -2,4 +2,5 @@
 
,,16,1,1,77d6576238657b203b19ca42c18a0497f16b4844e3074ae8dfdffa3fede21442fcd0069ded0948f8326a753a0fc81f17e8d3e0fb2e0d3628cf35e20c38d18906
 
password,NaCl,1024,8,16,fdbabe1c9d3472007856e7190d01e9fe7c6ad7cbc8237830e77376634b3731622eaf30d92e22a3886ff109279d9830dac727afb94a83ee6d8360cbdfa2cc0640
 
pleaseletmein,SodiumChloride,16384,8,1,7023bdcb3afd7348461c06cd81fd38ebfda8fbba904f8e3ea9b543f6545da1f2d5432955613f0fcf62d49705242a9af9e61e85dc0d651e40dfcf017b45575887
-pleaseletmein,SodiumChloride,32768,16,4,cbc397a9b5f5a53048c5b9f039ee1246d9532c8089fb346a4ab47cd0701febf18652b1ee042e070d1b6c631c43fd05ececd5b165ee1c2ffc1a2e98406fc2cd52
\ No newline at end of file
+pleaseletmein,SodiumChloride,32768,16,4,cbc397a9b5f5a53048c5b9f039ee1246d9532c8089fb346a4ab47cd0701febf18652b1ee042e070d1b6c631c43fd05ececd5b165ee1c2ffc1a2e98406fc2cd52
+pleaseletmein,SodiumChloride,1048576,8,1,2101cb9b6a511aaeaddbbe09cf70f881ec568d574a2ffd4dabe5ee9820adaa478e56fd8f4ba5d09ffa1c6d927c40f4c337304049e8a952fbcbf45c6fa77a41a4
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/scrypt.egg-info/PKG-INFO 
new/scrypt-0.8.17/scrypt.egg-info/PKG-INFO
--- old/scrypt-0.8.15/scrypt.egg-info/PKG-INFO  2020-05-21 12:48:14.000000000 
+0200
+++ new/scrypt-0.8.17/scrypt.egg-info/PKG-INFO  2020-09-14 08:02:33.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: scrypt
-Version: 0.8.15
+Version: 0.8.17
 Summary: Bindings for the scrypt key derivation function library
 Home-page: https://github.com/holgern/py-scrypt
 Author: Magnus Hallin
@@ -76,7 +76,7 @@
         You can install py-scrypt from this repository if you want the latest
         but possibly non-compiling version::
         
-            $ hg clone http://bitbucket.org/mhallin/py-scrypt
+            $ git clone https://github.com/holgern/py-scrypt.git
             $ cd py-scrypt
             $ python setup.py build
         
@@ -106,6 +106,13 @@
         
         Changelog
         =========
+        0.8.17
+        ------
+        * add_dll_directory for python 3.8 on windows, as 
importlib.util.find_spec does not search all paths anymore 
+         
+        0.8.16
+        ------
+        * Add additional test vector from RFC (thanks to @ChrisMacNaughton)
         
         0.8.15
         ------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scrypt-0.8.15/setup.py new/scrypt-0.8.17/setup.py
--- old/scrypt-0.8.15/setup.py  2020-05-21 12:26:41.000000000 +0200
+++ new/scrypt-0.8.17/setup.py  2020-09-09 18:39:47.000000000 +0200
@@ -102,7 +102,7 @@
     libraries=libraries)
 
 setup(name='scrypt',
-      version='0.8.15',
+      version='0.8.17',
       description='Bindings for the scrypt key derivation function library',
       author='Magnus Hallin',
       author_email='mhal...@gmail.com',
_______________________________________________
openSUSE Commits mailing list -- commit@lists.opensuse.org
To unsubscribe, email commit-le...@lists.opensuse.org
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives: 
https://lists.opensuse.org/archives/list/commit@lists.opensuse.org

Reply via email to