[Python-modules-commits] [python-nacl] 01/06: Import python-nacl_1.1.2.orig.tar.gz
Colin Watson
cjwatson at moszumanska.debian.org
Fri Nov 3 10:23:13 UTC 2017
This is an automated email from the git hooks/post-receive script.
cjwatson pushed a commit to branch master
in repository python-nacl.
commit 09f79dbc0d26604066a5e2a5f4e76e10594a63d9
Author: Colin Watson <cjwatson at debian.org>
Date: Fri Nov 3 10:09:51 2017 +0000
Import python-nacl_1.1.2.orig.tar.gz
---
PKG-INFO | 7 ++++++-
README.rst | 5 +++++
setup.py | 2 +-
src/PyNaCl.egg-info/PKG-INFO | 7 ++++++-
src/nacl/__init__.py | 2 +-
5 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/PKG-INFO b/PKG-INFO
index 2e9547d..7403a18 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: PyNaCl
-Version: 1.1.1
+Version: 1.1.2
Summary: Python binding to the Networking and Cryptography (NaCl) library
Home-page: https://github.com/pyca/pynacl/
Author: The PyNaCl developers
@@ -73,6 +73,11 @@ Description: PyNaCl
Changes
-------
+ * 1.1.2 - 2017-03-31:
+
+ * reorder link time library search path when using bundled
+ libsodium
+
* 1.1.1 - 2017-03-15:
* Fixed a circular import bug in ``nacl.utils``.
diff --git a/README.rst b/README.rst
index f936dcf..e4bafca 100644
--- a/README.rst
+++ b/README.rst
@@ -65,6 +65,11 @@ Features
Changes
-------
+* 1.1.2 - 2017-03-31:
+
+ * reorder link time library search path when using bundled
+ libsodium
+
* 1.1.1 - 2017-03-15:
* Fixed a circular import bug in ``nacl.utils``.
diff --git a/setup.py b/setup.py
index d02b08e..b991eb7 100644
--- a/setup.py
+++ b/setup.py
@@ -177,7 +177,7 @@ class build_ext(_build_ext):
self.include_dirs.append(
os.path.join(build_clib.build_clib, "include"),
)
- self.library_dirs.append(
+ self.library_dirs.insert(0,
os.path.join(build_clib.build_clib, "lib"),
)
diff --git a/src/PyNaCl.egg-info/PKG-INFO b/src/PyNaCl.egg-info/PKG-INFO
index 2e9547d..7403a18 100644
--- a/src/PyNaCl.egg-info/PKG-INFO
+++ b/src/PyNaCl.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: PyNaCl
-Version: 1.1.1
+Version: 1.1.2
Summary: Python binding to the Networking and Cryptography (NaCl) library
Home-page: https://github.com/pyca/pynacl/
Author: The PyNaCl developers
@@ -73,6 +73,11 @@ Description: PyNaCl
Changes
-------
+ * 1.1.2 - 2017-03-31:
+
+ * reorder link time library search path when using bundled
+ libsodium
+
* 1.1.1 - 2017-03-15:
* Fixed a circular import bug in ``nacl.utils``.
diff --git a/src/nacl/__init__.py b/src/nacl/__init__.py
index ec6a5ba..f569e37 100644
--- a/src/nacl/__init__.py
+++ b/src/nacl/__init__.py
@@ -24,7 +24,7 @@ __summary__ = ("Python binding to the Networking and Cryptography (NaCl) "
"library")
__uri__ = "https://github.com/pyca/pynacl/"
-__version__ = "1.1.1"
+__version__ = "1.1.2"
__author__ = "The PyNaCl developers"
__email__ = "cryptography-dev at python.org"
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-nacl.git
More information about the Python-modules-commits
mailing list