23fa2b9
%bcond_without tests
3dd45e6
# The xvfb tests sometimes hang in koji.
3dd45e6
%bcond_with xvfb_tests
Ratnadeep Debnath 22821d4
Ratnadeep Debnath 820deed
Name:           python-keyring
29648ea
Version:        23.5.0
29648ea
Release:        1%{?dist}
cf0f0dc
Summary:        Store and access your passwords safely
23fa2b9
8c2648f
License:        MIT and Python
cf0f0dc
URL:            https://github.com/jaraco/keyring
23fa2b9
Source0:        %{pypi_source keyring}
Orion Poplawski aa0e98d
23fa2b9
BuildArch:      noarch
Orion Poplawski aa0e98d
23fa2b9
BuildRequires:  python3-devel
23fa2b9
BuildRequires:  python3dist(setuptools)
23fa2b9
BuildRequires:  python3dist(setuptools-scm[toml])
23fa2b9
%if %{with tests}
23fa2b9
# setup.cfg: install_requires
23fa2b9
BuildRequires:  python3dist(secretstorage)
23fa2b9
BuildRequires:  python3dist(jeepney)
29648ea
BuildRequires:  python3dist(importlib-metadata)
23fa2b9
# setup.cfg: [testing] extra (but without linting/typechecking/coverage)
23fa2b9
BuildRequires:  python3dist(pytest)
3dd45e6
%if %{with xvfb_tests}
aa0c69f
# Run graphical tests in non-graphical build environment.
aa0c69f
BuildRequires:  xorg-x11-server-Xvfb
aa0c69f
# Enable libsecret backend
aa0c69f
BuildRequires:  python3-gobject
aa0c69f
BuildRequires:  libsecret
aa0c69f
BuildRequires:  gnome-keyring
aa0c69f
BuildRequires:  /usr/bin/dbus-launch
23fa2b9
%endif
3dd45e6
%endif
23fa2b9
23fa2b9
%global desc %{expand: \
23fa2b9
The Python keyring library provides an easy way to access the system keyring
23fa2b9
service from python. It can be used in any application that needs safe password
23fa2b9
storage.
23fa2b9
23fa2b9
These recommended keyring backends are supported:
cf0f0dc
23fa2b9
  • macOS Keychain
23fa2b9
  • Freedesktop Secret Service supports many DE including GNOME (requires
23fa2b9
    secretstorage)
23fa2b9
  • KDE4 & KDE5 KWallet (requires dbus)
23fa2b9
  • Windows Credential Locker
cf070c0
23fa2b9
Other keyring implementations are available through third-party backends.}
Orion Poplawski aa0e98d
Ratnadeep Debnath 820deed
23fa2b9
%description
Orion Poplawski aa0e98d
%desc
Ratnadeep Debnath 820deed
23fa2b9
23fa2b9
%package -n     python3-keyring
7ecd9f7
Summary:        Python 3 library to access the system keyring service
Ratnadeep Debnath 22821d4
23fa2b9
%description -n python3-keyring
Orion Poplawski aa0e98d
%desc
23fa2b9
Ratnadeep Debnath 820deed
Ratnadeep Debnath 820deed
%prep
23fa2b9
%setup -q -n keyring-%{version}
23fa2b9
352fecf
rm -frv keyring.egg-info
23fa2b9
8c2648f
Ratnadeep Debnath 820deed
%build
Orion Poplawski aa0e98d
%py3_build
23fa2b9
Ratnadeep Debnath 22821d4
Ratnadeep Debnath 820deed
%install
Orion Poplawski aa0e98d
%py3_install
23fa2b9
# For compatibility with historical versions of this package, when there were
23fa2b9
# both python2 and python3 packages:
29648ea
ln -s keyring %{buildroot}%{_bindir}/keyring-python3
23fa2b9
Christopher Meng 5e9c40a
cf0f0dc
%check
23fa2b9
%if %{with tests}
29648ea
# This fails because it finds two EntryPoint instances. Replicating the test in
29648ea
# with the final installed RPM produces only one, as the test is expecting, so
29648ea
# this seems to be an artifact of the build environment. See upstream issue:
29648ea
# https://github.com/jaraco/keyring/issues/526
29648ea
k="${k-}${k+ and }not test_entry_point"
29648ea
3dd45e6
%if %{with xvfb_tests}
aa0c69f
%global __pytest /usr/bin/xvfb-run -a /usr/bin/pytest
3dd45e6
%endif
29648ea
%pytest -k "${k-}"
2eae747
%endif
Ratnadeep Debnath 820deed
Ratnadeep Debnath 22821d4
23fa2b9
%files -n python3-keyring
23fa2b9
%license LICENSE
cf0f0dc
%doc CHANGES.rst README.rst
23fa2b9
23fa2b9
%{_bindir}/keyring-python3
2eae747
%{_bindir}/keyring
23fa2b9
Christopher Meng 5e9c40a
%{python3_sitelib}/keyring-%{version}-py%{python3_version}.egg-info
Christopher Meng 5e9c40a
%{python3_sitelib}/keyring
23fa2b9
Ratnadeep Debnath 22821d4
Ratnadeep Debnath 4d6f47a
%changelog
29648ea
* Thu Mar 24 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 23.5.0-1
29648ea
- Update to 23.5.0 (close RHBZ#1920125)
29648ea
- Drop EPEL8 compatibility in the Fedora spec file: this upstream release
29648ea
  requires setuptools features not available in EPEL8
3dd45e6
- Allow using xvfb to run the tests for the libsecret backend; disable by
3dd45e6
  default because tests occasionally hang in koji when doing so
29648ea
23fa2b9
* Tue Mar 22 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 21.8.0-6
23fa2b9
- Drop workarounds for EPEL7 and for EOL Fedoras
23fa2b9
- Update description text from upstream
23fa2b9
- Stop using deprecated nose package for tests
23fa2b9
0133a06
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.8.0-5
0133a06
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
0133a06
5fdfc8b
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.8.0-4
5fdfc8b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
5fdfc8b
c536178
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 21.8.0-3
c536178
- Rebuilt for Python 3.10
c536178
6aa6c4c
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.8.0-2
6aa6c4c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
6aa6c4c
f74f4b7
* Wed Jan 13 2021 Joel Capitao <jcapitao@redhat.com> - 21.8.0-1
f74f4b7
- Update to 21.8.0 (rhbz#1910110)
f74f4b7
28a3e32
* Mon Nov 09 2020 Joel Capitao <jcapitao@redhat.com> - 21.5.0-1
28a3e32
- Update to 21.5.0 (rhbz#1873845)
28a3e32
3c2526a
* Mon Aug 24 2020 Christopher Tubbs <ctubbsii@fedoraproject.org> - 21.3.1-1
3c2526a
- new version 21.3.1 (rhbz#1871352)
3c2526a
925e928
* Wed Aug 12 2020 Merlin Mathesius <mmathesi@redhat.com> - 21.3.0-2
925e928
- Drop manual (Build)Requires on python3-importlib-metadata for RHEL9+ and ELN.
925e928
d7b4a86
* Mon Aug 03 2020 Christopher Tubbs <ctubbsii@fedoraproject.org> - 21.3.0-1
d7b4a86
- new version 21.3.0 (rhbz#1810846)
d7b4a86
bb60612
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 21.2.0-3
bb60612
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
bb60612
864afb7
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 21.2.0-2
864afb7
- Rebuilt for Python 3.9
864afb7
dc55bc0
* Fri Apr 17 2020 Christopher Tubbs <ctubbsii@fedoraproject.org> - 21.2.0-1
dc55bc0
- new version (rhbz#1810846)
dc55bc0
ca21c5a
* Tue Feb 11 2020 Christopher Tubbs <ctubbsii@fedoraproject.org> - 21.1.0-1
ca21c5a
- new version 21.1.0 (rhbz#1790114)
ca21c5a
ab90154
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 21.0.0-2
ab90154
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
ab90154
a5c73ad
* Fri Jan 10 2020 Christopher Tubbs <ctubbsii@fedoraproject.org> - 21.0.0-1
a5c73ad
- new version 21.0.0 (rhbz#1782317)
a5c73ad
12cd719
* Wed Dec 04 2019 Fabio Valentini <decathorpe@gmail.com> - 19.3.0-2
12cd719
- Drop manual (Build)Requires on python3-importlib-metadata in rawhide/f32.
12cd719
db439c6
* Tue Dec 03 2019 Christopher Tubbs <ctubbsii@fedoraproject.org> - 19.3.0-1
db439c6
- new version 19.3.0 (rhbz#1778416)
db439c6
ea2705e
* Fri Sep 20 2019 Christopher Tubbs <ctubbsii@fedoraproject.org> - 19.2.0-1
ea2705e
- new version 19.2.0 (rhbz#1751298)
ea2705e
3f62ef3
* Thu Aug 22 2019 Christopher Tubbs <ctubbsii@fedoraproject.org> - 19.1.0-1
3f62ef3
- new version 19.1.0 (rhbz#1744382)
3f62ef3
9a3f00c
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.2-3
9a3f00c
- Rebuilt for Python 3.8
9a3f00c
bfddd8c
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.0.2-2
bfddd8c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
bfddd8c
607d648
* Tue May 21 2019 Christopher Tubbs <ctubbsii@fedoraproject.org> - 19.0.2-1
607d648
- new version 19.0.2 (rhbz#1711472)
607d648
c546b5f
* Thu May 09 2019 Orion Poplawski <orion@nwra.com> - 19.0.1-2
c546b5f
- Drop BR on pytest-cache
c546b5f
b9619a8
* Thu Mar 28 2019 Christopher Tubbs <ctubbsii@fedoraproject.org> - 19.0.1-1
b9619a8
- Update to 19.0.1 (rhbz#1691871)
b9619a8
f63a786
* Fri Feb 08 2019 Yatin Karel <ykarel@redhat.com> - 17.1.1-1
f63a786
- Update to 17.1.1
f63a786
6c391f0
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 15.2.0-2
6c391f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
6c391f0
2394144
* Tue Dec 11 2018 David King <amigadave@amigadave.com> - 15.2.0-1
2394144
- Update to 15.2.0
2394144
341ec7a
* Thu Oct 18 2018 Miro Hrončok <mhroncok@redhat.com> - 13.2.1-4
341ec7a
- Remove python2 subpackage from Fedora 30+
341ec7a
0934d11
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 13.2.1-3
0934d11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
0934d11
32bb17b
* Sat Jul 07 2018 Miro Hrončok <mhroncok@redhat.com> - 13.2.1-2
32bb17b
- Add missing dependency on entrypoints (#1598998)
32bb17b
5166937
* Fri Jul 06 2018 Christopher Tubbs <ctubbsii@fedoraproject.org> - 13.2.1-1
5166937
- Update to 13.2.1
5166937
2eae747
* Thu Jul 05 2018 Christopher Tubbs <ctubbsii@fedoraproject.org> - 13.2.0-1
2eae747
- Update to 13.2.0
2eae747
0d4efc4
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 11.0.0-4
0d4efc4
- Rebuilt for Python 3.7
0d4efc4
cf5a568
* Fri Mar 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 11.0.0-3
cf5a568
- Update Python 2 dependency declarations to new packaging standards
cf5a568
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
cf5a568
cb6d057
* Thu Mar 08 2018 Christopher Tubbs <ctubbsii@fedoraproject.org> - 11.0.0-2
cb6d057
- Remove unused BR pycryptopp (rhbz#1552676)
cb6d057
4167da5
* Mon Mar  5 2018 Haïkel Guémar <hguemar@fedoraproject.org> - 11.0.0-1
4167da5
- Upstream 11.0.0 (RHBZ#1539962)
4167da5
c5d2967
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 10.6.0-2
c5d2967
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c5d2967
3b4165f
* Fri Jan 12 2018 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.6.0-1
3b4165f
- Update to 10.6.0 (rhbz#1532092)
3b4165f
d8e22ec
* Thu Dec 21 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.5.1-1
d8e22ec
- Update to 10.5.1; fix AttributeError with kwallet backend (bz#1526653)
d8e22ec
4e47a89
* Thu Nov 16 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.5.0-1
4e47a89
- Update to 10.5.0; bz#1512519
4e47a89
9755eed
* Mon Aug 28 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.4.0-2
9755eed
- Use python2-* naming conventions for *Requires
9755eed
ba3dc2b
* Mon Aug 28 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.4.0-1
ba3dc2b
- Update to python-keyring 10.4.0 (bz#1464676)
ba3dc2b
ef58140
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 10.3.2-3
ef58140
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ef58140
c407b87
* Tue Apr 11 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.3.2-2
c407b87
- Fix dependency on setuptools_scm for f25
c407b87
f72372d
* Mon Apr 10 2017 Christopher Tubbs <ctubbsii@fedoraproject.org> - 10.3.2-1
f72372d
- Update to python-keyring 10.3.2
f72372d
ae18ec8
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0-7
ae18ec8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ae18ec8
b7aceb8
* Thu Dec 22 2016 Miro Hrončok <mhroncok@redhat.com> - 9.0-6
b7aceb8
- Rebuild for Python 3.6
b7aceb8
cf070c0
* Wed Dec 21 2016 Christopher Tubbs <ctubbsii@fedoraproject.org> - 9.0-5
cf070c0
- Add dependency on python-SecretStorage (bz#1328218,bz#1398710)
cf070c0
7811846
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 9.0-4
7811846
- Rebuild for Python 3.6
7811846
Orion Poplawski aa0e98d
* Mon Nov 21 2016 Orion Poplawski <orion@cora.nwra.com> - 9.0-3
Orion Poplawski aa0e98d
- Enable python 3 build for EPEL
Orion Poplawski aa0e98d
- Ship python2-keyring
Orion Poplawski aa0e98d
- Modernize spec
Orion Poplawski aa0e98d
004dc39
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.0-2
004dc39
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
004dc39
cf0f0dc
* Mon May 02 2016 Matthias Runge <mrunge@redhat.com> - 9.0-1
Orion Poplawski aa0e98d
- update to 9.0, resolves rhbz#1271641, rhbz#1195985
cf0f0dc
e5eb8b1
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-4
e5eb8b1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e5eb8b1
Robert Kuska 96b17b6
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 5.0-3
Robert Kuska 96b17b6
- Rebuilt for Python3.5 rebuild
Robert Kuska 96b17b6
7e94a74
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0-2
7e94a74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7e94a74
352fecf
* Wed Feb 04 2015 Christopher Meng <rpm@cicku.me> - 5.0-1
352fecf
- Update to 5.0
8c2648f
- Revise license tag to match upstream.
352fecf
3116048
* Sat Aug 02 2014 Christopher Meng <rpm@cicku.me> - 4.0-1
3116048
- Update to 4.0
3116048
3d24281
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8-3
3d24281
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3d24281
e2bc1f7
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 3.8-2
e2bc1f7
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
e2bc1f7
5804f27
* Tue May 13 2014 Christopher Meng <rpm@cicku.me> - 3.8-1
5804f27
- Update to 3.8
5804f27
fdfcbba
* Sat Mar 08 2014 Christopher Meng <rpm@cicku.me> - 3.6-1
fdfcbba
- Update to 3.6
fdfcbba
7ecd9f7
* Thu Feb 13 2014 Christopher Meng <rpm@cicku.me> - 3.4-1
7ecd9f7
- Update to 3.4(BZ#1064256)
7ecd9f7
- Ensure the obsolete line works for the old packages really.
7ecd9f7
Christopher Meng 5e9c40a
* Mon Dec 02 2013 Christopher Meng <rpm@cicku.me> - 3.3-1
Christopher Meng 5e9c40a
- Update to 3.3(BZ#1007354,BZ#872262)
Christopher Meng 5e9c40a
- Cleanup dependencies mess(BZ#1030944).
Christopher Meng 5e9c40a
- Optimize the %%changelog section of the spec.
Christopher Meng 5e9c40a
Christopher Meng 5e9c40a
* Tue Oct 22 2013 Ratnadeep Debnath <rtnpro@gmail.com> - 3.1-1
Ratnadeep Debnath 22821d4
- Bump to version 3.1
fc952d1
16af5db
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7-3
16af5db
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
16af5db
121bfb0
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7-2
121bfb0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
121bfb0
Christopher Meng 5e9c40a
* Sat Jan 14 2012 Ratnadeep Debnath <rtnpro@gmail.com> 0.7-1
rtnpro 74f7c59
- Python 3 is now supported. All tests now pass under Python 3.2 on Windows and
rtnpro 74f7c59
Linux (although Linux backend support is limited). Fixes #28.
rtnpro 74f7c59
- Extension modules on Mac and Windows replaced by pure-Python ctypes
rtnpro 74f7c59
implementations. Thanks to Jérôme Laheurte.
rtnpro 74f7c59
- WinVaultKeyring now supports multiple passwords for the same service.
rtnpro 74f7c59
Fixes #47.
rtnpro 74f7c59
- Most of the tests don't require user interaction anymore.
rtnpro 74f7c59
- Entries stored in Gnome Keyring appears now with a meaningful name if you try
rtnpro 74f7c59
to browser your keyring (for ex. with Seahorse)
rtnpro 74f7c59
- Tests from Gnome Keyring no longer pollute the user own keyring.
rtnpro 74f7c59
- keyring.util.escape now accepts only unicode strings. Don't try to encode
rtnpro 74f7c59
strings passed to it.
3eb94f2
Christopher Meng 5e9c40a
* Tue Nov 08 2011 Ratnadeep Debnath <rtnpro@gmail.com> 0.6.2-1
rtnpro 74f7c59
- fix compiling on OSX with XCode 4.0
rtnpro 74f7c59
- Gnome keyring should not be used if there is no DISPLAY or if the dbus is not around
rtnpro 74f7c59
    (https://bugs.launchpad.net/launchpadlib/+bug/752282).
rtnpro 74f7c59
- Added keyring.http for facilitating HTTP Auth using keyring.
rtnpro 74f7c59
- Add a utility to access the keyring from the command line.
8fe6068
Christopher Meng 5e9c40a
* Mon Jan 10 2011 Ratnadeep Debnath <rtnpro@gmail.com> 0.5.1-1
Ratnadeep Debnath 4d6f47a
- Remove a spurious KDE debug message when using KWallet
Ratnadeep Debnath 4d6f47a
- Fix a bug that caused an exception if the user canceled the KWallet dialog
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Sun Nov 28 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.5-2
rtnpro 74f7c59
- Removed sub-packages: gnome and kwallet; removed "Requires: PyKDE4 PyQt4"
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Mon Nov 22 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.5-1
Ratnadeep Debnath 4d6f47a
- RPM for keyring-0.5
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Mon Nov 01 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.4-1
Ratnadeep Debnath 820deed
- Updated rpm to python-keyring version 0.4
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Sat Oct 30 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2-4
Ratnadeep Debnath 820deed
- Filtered gnome_keyring.so from the provides list, removed kdelibs-devel
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Sat Oct 02 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2-3
Ratnadeep Debnath 820deed
- Updated dependencies to kdelibs4-devel, some cleanup
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Tue Aug 24 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2-2
Ratnadeep Debnath 820deed
- Some updates according to bugzilla reviews
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Sat Jun 26 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2-1.3
Ratnadeep Debnath 820deed
- Some cleanup
Ratnadeep Debnath 820deed
Ratnadeep Debnath 820deed
* Sat Jun 26 2010 Felix Schwarz <felix.schwarz@oss.schwarz.eu> 0.2-1.2
Ratnadeep Debnath 820deed
- add KWallet subpackage
Ratnadeep Debnath 820deed
Ratnadeep Debnath 820deed
* Mon Jun 21 2010 Felix Schwarz <felix.schwarz@oss.schwarz.eu> 0.2-1.1
Ratnadeep Debnath 820deed
- add build dependencies
Ratnadeep Debnath 820deed
- create subpackage for gnome, disable KWallet for now
Ratnadeep Debnath 820deed
- look for files in arch-dependend site-packages
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Tue May 25 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2-1
Ratnadeep Debnath 820deed
- Incorporated some changes with reference to http://vcrhonek.fedorapeople.org/python-keyring/python-keyring.spec
Ratnadeep Debnath 820deed
- Fixed some rpmlint errors
Ratnadeep Debnath 820deed
Christopher Meng 5e9c40a
* Wed May 19 2010 Ratnadeep Debnath <rtnpro@gmail.com> 0.2
Ratnadeep Debnath 820deed
- Initial RPM package