[Python-modules-commits] [python-secretstorage] 01/03: Import python-secretstorage_2.3.1.orig.tar.gz

Dmitry Shachnev mitya57 at moszumanska.debian.org
Sat Aug 27 14:45:16 UTC 2016


This is an automated email from the git hooks/post-receive script.

mitya57 pushed a commit to branch master
in repository python-secretstorage.

commit 08ed03c79ce4619cdf9c487e20c36f6b8e0c4423
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date:   Sat Aug 27 17:43:21 2016 +0300

    Import python-secretstorage_2.3.1.orig.tar.gz
---
 .travis.yml                     | 4 +++-
 PKG-INFO                        | 8 ++++----
 README.rst                      | 4 ++--
 SecretStorage.egg-info/PKG-INFO | 8 ++++----
 changelog                       | 6 ++++++
 docs/conf.py                    | 2 +-
 secretstorage/__init__.py       | 2 +-
 setup.py                        | 4 ++--
 8 files changed, 23 insertions(+), 15 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 5cf7a7f..1707188 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,9 @@ python:
 before_install:
   - sudo apt-get update
   - sudo apt-get install -y libdbus-glib-1-dev
-install: pip install dbus-python cryptography
+install:
+  - which python3.3-config && sed -i "s|not getvar('Py_ENABLE_SHARED')|True|" $(which python3.3-config) || true
+  - pip install dbus-python cryptography
 before_script:
   - git clone git://git.gnome.org/libsecret.git
 script:
diff --git a/PKG-INFO b/PKG-INFO
index b3e2e24..4f6c6c4 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SecretStorage
-Version: 2.3.0
+Version: 2.3.1
 Summary: Python bindings to FreeDesktop.org Secret Service API
 Home-page: https://github.com/mitya57/secretstorage
 Author: Dmitry Shachnev
@@ -27,10 +27,10 @@ Description:
         including creating and deleting items and collections, editing items,
         locking and unlocking collections (asynchronous unlocking is also supported).
         
-        The documentation can be found on `pythonhosted.org`_.
+        The documentation can be found on `secretstorage.readthedocs.io`_.
         
         .. _`Secret Service`: https://specifications.freedesktop.org/secret-service/
-        .. _`pythonhosted.org`: https://pythonhosted.org/SecretStorage/
+        .. _`secretstorage.readthedocs.io`: https://secretstorage.readthedocs.io/en/latest/
         
         Building the module
         ===================
@@ -101,4 +101,4 @@ Classifier: Programming Language :: Python :: 3.5
 Classifier: Topic :: Security
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Requires: dbus
-Requires: Crypto
+Requires: cryptography
diff --git a/README.rst b/README.rst
index fc80743..a0a3279 100644
--- a/README.rst
+++ b/README.rst
@@ -18,10 +18,10 @@ SecretStorage supports most of the functions provided by Secret Service,
 including creating and deleting items and collections, editing items,
 locking and unlocking collections (asynchronous unlocking is also supported).
 
-The documentation can be found on `pythonhosted.org`_.
+The documentation can be found on `secretstorage.readthedocs.io`_.
 
 .. _`Secret Service`: https://specifications.freedesktop.org/secret-service/
-.. _`pythonhosted.org`: https://pythonhosted.org/SecretStorage/
+.. _`secretstorage.readthedocs.io`: https://secretstorage.readthedocs.io/en/latest/
 
 Building the module
 ===================
diff --git a/SecretStorage.egg-info/PKG-INFO b/SecretStorage.egg-info/PKG-INFO
index b3e2e24..4f6c6c4 100644
--- a/SecretStorage.egg-info/PKG-INFO
+++ b/SecretStorage.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: SecretStorage
-Version: 2.3.0
+Version: 2.3.1
 Summary: Python bindings to FreeDesktop.org Secret Service API
 Home-page: https://github.com/mitya57/secretstorage
 Author: Dmitry Shachnev
@@ -27,10 +27,10 @@ Description:
         including creating and deleting items and collections, editing items,
         locking and unlocking collections (asynchronous unlocking is also supported).
         
-        The documentation can be found on `pythonhosted.org`_.
+        The documentation can be found on `secretstorage.readthedocs.io`_.
         
         .. _`Secret Service`: https://specifications.freedesktop.org/secret-service/
-        .. _`pythonhosted.org`: https://pythonhosted.org/SecretStorage/
+        .. _`secretstorage.readthedocs.io`: https://secretstorage.readthedocs.io/en/latest/
         
         Building the module
         ===================
@@ -101,4 +101,4 @@ Classifier: Programming Language :: Python :: 3.5
 Classifier: Topic :: Security
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
 Requires: dbus
-Requires: Crypto
+Requires: cryptography
diff --git a/changelog b/changelog
index d56a7f4..3460385 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,9 @@
+SecretStorage 2.3.1, 2016-08-27
+===============================
+
+* Update requires line in setup.py for cryptography port.
+* Documentation is now hosted on ReadTheDocs.
+
 SecretStorage 2.3.0, 2016-08-17
 ===============================
 
diff --git a/docs/conf.py b/docs/conf.py
index 09063e3..a2f9ede 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -33,7 +33,7 @@ copyright = '2016, Dmitry Shachnev'
 # The short X.Y version.
 version = '2.3'
 # The full version, including alpha/beta/rc tags.
-release = '2.3.0'
+release = '2.3.1'
 
 # The name of the Pygments (syntax highlighting) style to use.
 pygments_style = 'sphinx'
diff --git a/secretstorage/__init__.py b/secretstorage/__init__.py
index 6ddc4f1..730d78e 100644
--- a/secretstorage/__init__.py
+++ b/secretstorage/__init__.py
@@ -21,7 +21,7 @@ from secretstorage.exceptions import SecretStorageException, \
  SecretServiceNotAvailableException, LockedException, \
  ItemNotFoundException
 
-__version_tuple__ = (2, 3, 0)
+__version_tuple__ = (2, 3, 1)
 __version__ = '.'.join(map(str, __version_tuple__))
 
 def dbus_init(main_loop=True, use_qt_loop=False):
diff --git a/setup.py b/setup.py
index 71142ee..2f11355 100755
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ try:
 except ImportError:
 	from distutils.core import setup
 
-version = '2.3.0'
+version = '2.3.1'
 
 readme_file = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
 long_description = '\n' + readme_file.read()
@@ -42,5 +42,5 @@ setup(name='SecretStorage',
 	extras_require={
 		'dbus-python': ['dbus-python'],
 	},
-	requires=['dbus', 'Crypto']
+	requires=['dbus', 'cryptography']
 )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-secretstorage.git



More information about the Python-modules-commits mailing list