Accepting request 673043 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/673043 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-twine?expand=0&rev=5
This commit is contained in:
commit
eb2c2b3d46
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fdff00d235b964a9679fc0c127228eb83fb82b59552efb130cd878ace39f3473
|
|
||||||
size 55301
|
|
35
fix-keyring-support.patch
Normal file
35
fix-keyring-support.patch
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
From 5e80bfa08808b15a340687f8224d449fa906ac8e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dustin Ingram <di@users.noreply.github.com>
|
||||||
|
Date: Mon, 1 Oct 2018 16:30:32 -0500
|
||||||
|
Subject: [PATCH] Fix keyring support
|
||||||
|
|
||||||
|
---
|
||||||
|
twine/utils.py | 8 ++++++--
|
||||||
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/twine/utils.py b/twine/utils.py
|
||||||
|
index 83a1867..57eefb3 100644
|
||||||
|
--- a/twine/utils.py
|
||||||
|
+++ b/twine/utils.py
|
||||||
|
@@ -35,6 +35,11 @@
|
||||||
|
except ImportError:
|
||||||
|
from urllib.parse import urlparse, urlunparse
|
||||||
|
|
||||||
|
+try:
|
||||||
|
+ import keyring # noqa
|
||||||
|
+except ImportError:
|
||||||
|
+ pass
|
||||||
|
+
|
||||||
|
from twine import exceptions
|
||||||
|
|
||||||
|
# Shim for raw_input in python3
|
||||||
|
@@ -211,8 +216,7 @@ def get_password_from_keyring(system, username):
|
||||||
|
return
|
||||||
|
|
||||||
|
try:
|
||||||
|
- import keyring
|
||||||
|
- return keyring.get_password(system, username)
|
||||||
|
+ return sys.modules['keyring'].get_password(system, username)
|
||||||
|
except Exception as exc:
|
||||||
|
warnings.warn(str(exc))
|
||||||
|
|
@ -1,3 +1,30 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 9 19:52:43 CET 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Add fix-keyring-support.patch fixing
|
||||||
|
gh#pypa/twine#408
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Feb 9 13:45:55 UTC 2019 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Deduplicate installed files
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 4 14:54:32 UTC 2019 - Hans-Peter Jansen <hpj@urpla.net>
|
||||||
|
|
||||||
|
- update to version 1.12.1
|
||||||
|
- bug`404` Fix regression with upload exit code
|
||||||
|
|
||||||
|
- update to version 1.12.0
|
||||||
|
- feature`395 major` Add twine check command to check long description
|
||||||
|
- feature`392 major` Drop support for Python 3.3
|
||||||
|
- feature`363` Empower --skip-existing for Artifactory repositories
|
||||||
|
- bug`367` Avoid MD5 when Python is compiled in FIPS mode
|
||||||
|
|
||||||
|
- Fix source URL
|
||||||
|
- add python-readme_renderer dependency
|
||||||
|
- BuildRequire python2-pyblake2 for successful testing
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 21 09:30:29 UTC 2018 - tchvatal@suse.com
|
Mon May 21 09:30:29 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-twine
|
# spec file for package python-twine
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -12,28 +12,33 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
Name: python-twine
|
Name: python-twine
|
||||||
Version: 1.11.0
|
Version: 1.12.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Collection of utilities for interacting with PyPI
|
Summary: Collection of utilities for interacting with PyPI
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/pypa/twine
|
URL: https://github.com/pypa/twine
|
||||||
Source: https://github.com/pypa/twine/archive/%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/twine/twine-%{version}.tar.gz
|
||||||
|
# gh#pypa/twine#408
|
||||||
|
Patch0: fix-keyring-support.patch
|
||||||
BuildRequires: %{python_module pkginfo >= 1.4.2}
|
BuildRequires: %{python_module pkginfo >= 1.4.2}
|
||||||
BuildRequires: %{python_module pretend}
|
BuildRequires: %{python_module pretend}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module readme_renderer >= 24.0}
|
||||||
BuildRequires: %{python_module requests >= 2.17.0}
|
BuildRequires: %{python_module requests >= 2.17.0}
|
||||||
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
BuildRequires: %{python_module requests-toolbelt >= 0.8.0}
|
||||||
BuildRequires: %{python_module setuptools >= 0.7.0}
|
BuildRequires: %{python_module setuptools >= 0.7.0}
|
||||||
BuildRequires: %{python_module tqdm >= 4.14}
|
BuildRequires: %{python_module tqdm >= 4.14}
|
||||||
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-pkginfo >= 1.4.2
|
Requires: python-pkginfo >= 1.4.2
|
||||||
|
Requires: python-readme_renderer >= 24.0
|
||||||
Requires: python-requests >= 2.17.0
|
Requires: python-requests >= 2.17.0
|
||||||
Requires: python-requests-toolbelt >= 0.8.0
|
Requires: python-requests-toolbelt >= 0.8.0
|
||||||
Requires: python-setuptools >= 0.7.0
|
Requires: python-setuptools >= 0.7.0
|
||||||
@ -42,17 +47,22 @@ Requires(post): update-alternatives
|
|||||||
Requires(postun): update-alternatives
|
Requires(postun): update-alternatives
|
||||||
Recommends: python-keyring
|
Recommends: python-keyring
|
||||||
%ifpython2
|
%ifpython2
|
||||||
|
# tests/test_package.py will fail without pyblake2
|
||||||
|
BuildRequires: python2-pyblake2
|
||||||
Recommends: python-pyblake2
|
Recommends: python-pyblake2
|
||||||
%endif
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Twine is a utility for interacting with PyPI.
|
Twine is a utility for publishing Python packages on PyPI.
|
||||||
|
|
||||||
Currently it only supports registering projects and uploading distributions.
|
Currently it supports registering projects, uploading distributions, and
|
||||||
|
checking, if descriptions will render correctly.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n twine-%{version}
|
%setup -q -n twine-%{version}
|
||||||
|
%autopatch -p1
|
||||||
|
|
||||||
sed -i '1s/^#!.*//' twine/__main__.py
|
sed -i '1s/^#!.*//' twine/__main__.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -61,6 +71,7 @@ sed -i '1s/^#!.*//' twine/__main__.py
|
|||||||
%install
|
%install
|
||||||
%python_install
|
%python_install
|
||||||
%python_clone -a %{buildroot}%{_bindir}/twine
|
%python_clone -a %{buildroot}%{_bindir}/twine
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_version}
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_version}
|
||||||
|
3
twine-1.12.1.tar.gz
Normal file
3
twine-1.12.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7d89bc6acafb31d124e6e5b295ef26ac77030bf098960c2a4c4e058335827c5c
|
||||||
|
size 69659
|
Loading…
Reference in New Issue
Block a user