forked from pool/python-pypiserver
* use importlib_resources only when needed (#627) * use json client for update (#588) * solve deprecated types-pkg_resources (#589) * Update Deprecated Compose Commands for Pypiserver Services (#583) * Updated HTML formatting (#580) (#581) * deprecated setuptools.py when building in package.sh (#568) * use the right env variables in release-tag workflow (#569) * Handle tar.xz archives (#536) * support Python 3.12 (#539) * add tar xz test case (#538) * specify long_description as MD type (#532) * simpler release_tag action (#530) * Json Info for the same version (#511) * Switch default hash-algo to sha256 (#459) * cleanup release process (#516) * TOC internal links (#520) - Correct URL. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypiserver?expand=0&rev=17
105 lines
3.1 KiB
RPMSpec
105 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package python-pypiserver
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-pypiserver%{psuffix}
|
|
Version: 2.3.2
|
|
Release: 0
|
|
Summary: Minimal PyPI server for uploading & downloading packages with pip/easy_install
|
|
License: MIT
|
|
URL: https://github.com/pypiserver/pypiserver
|
|
Source: https://github.com/pypiserver/pypiserver/archive/v%{version}.tar.gz#/pypiserver-%{version}.tar.gz
|
|
BuildRequires: %{python_module pip >= 7}
|
|
BuildRequires: %{python_module setuptools-git >= 0.3}
|
|
BuildRequires: %{python_module setuptools_scm >= 1.15.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel >= 0.25.0}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-packaging
|
|
Requires: python-passlib >= 1.6
|
|
Requires: python-pip
|
|
%if 0%{?python_version_nodots} < 312
|
|
Requires: python-importlib-resources
|
|
%endif
|
|
Requires(post): update-alternatives
|
|
Requires(postun): update-alternatives
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
%if %{with test}
|
|
BuildRequires: %{python_module WebTest}
|
|
BuildRequires: %{python_module build >= 1.2}
|
|
BuildRequires: %{python_module pypiserver = %{version}}
|
|
BuildRequires: %{python_module pytest >= 3.5}
|
|
BuildRequires: %{python_module twine}
|
|
%endif
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
Minimal PyPI server for uploading & downloading packagesj with pip/easy_install
|
|
|
|
%prep
|
|
%setup -q -n pypiserver-%{version}
|
|
sed -i '1{/env python/d}' pypiserver/*.py
|
|
# we don't need the extensions for smoke testing
|
|
rm -f pytest.ini
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%pyproject_install
|
|
%python_clone -a %{buildroot}%{_bindir}/pypi-server
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
%endif
|
|
|
|
%if %{with test}
|
|
%check
|
|
# test_hash_algos:
|
|
# ERROR: No matching distribution found for a==1.0 (from centodeps)
|
|
# (see centodeps-setup.py)
|
|
%pytest tests -k "not (test_pipInstall_openOk or test_pipInstall_authedOk or test_hash_algos or test_pip_install_open_succeeds or test_pip_install_authed_succeeds)"
|
|
%endif
|
|
|
|
%post
|
|
%python_install_alternative pypi-server
|
|
|
|
%postun
|
|
%python_uninstall_alternative pypi-server
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE.txt
|
|
%{python_sitelib}/pypiserver
|
|
%{python_sitelib}/pypiserver-%{version}.dist-info
|
|
%python_alternative %{_bindir}/pypi-server
|
|
%endif
|
|
|
|
%changelog
|