Accepting request 155037 from home:posophe:branches:devel:languages:python
update OBS-URL: https://build.opensuse.org/request/show/155037 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-keyring?expand=0&rev=9
This commit is contained in:
parent
87e59b20ca
commit
50f28b9f1f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ef9fad76daeadd4ea2f8992e768d8dd873c812dd4c226cae1e64ccca4627377b
|
||||
size 46907
|
3
keyring-1.2.2.zip
Normal file
3
keyring-1.2.2.zip
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:20e4e34f15deca61d5a58edc1d2e5e3720cbdc340726d4918590036db6decfab
|
||||
size 79028
|
@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 10 14:33:59 UTC 2013 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 1.2.2:
|
||||
* Fixed handling situations when user cancels kwallet dialog or denies
|
||||
access for the app.
|
||||
- Add new dependencies
|
||||
- FIx shebang rpmlint warnings
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 8 22:12:52 UTC 2012 - Nico.Laus.2001@gmx.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-keyring
|
||||
#
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -16,7 +16,7 @@
|
||||
#
|
||||
|
||||
Name: python-keyring
|
||||
Version: 0.9.1
|
||||
Version: 1.2.2
|
||||
Release: 0
|
||||
Url: http://bitbucket.org/kang/python-keyring-lib
|
||||
Summary: Store and access your passwords safely
|
||||
@ -25,8 +25,11 @@ Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/k/keyring/keyring-%{version}.zip
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-mock
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: python-pytest-runner
|
||||
BuildRequires: unzip
|
||||
Requires: python-mock
|
||||
Provides: python-keyring-kde = %{version}
|
||||
Obsoletes: python-keyring-kde < %{version}
|
||||
Provides: python-keyring-gnome = %{version}
|
||||
@ -43,6 +46,9 @@ from python. It can be used in any application that needs safe password storage.
|
||||
|
||||
%prep
|
||||
%setup -q -n keyring-%{version}
|
||||
# For rpmlint warning: remove shebang from python library:
|
||||
sed -i '/^#!/d' ./keyring/cli.py
|
||||
sed -i '/^#!/d' ./keyring/backends/_win_crypto.py
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
@ -57,7 +63,8 @@ nosetests
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc CONTRIBUTORS.txt README CHANGES.txt
|
||||
%doc CONTRIBUTORS.txt README.rst CHANGES.rst
|
||||
%{_bindir}/keyring
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user