Accepting request 970980 from home:mcepl:branches:devel:languages:python:flask
Required for testing of Werkzeug. OBS-URL: https://build.opensuse.org/request/show/970980 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ephemeral-port-reserve?expand=0&rev=1
This commit is contained in:
commit
b66855bebb
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
BIN
ephemeral-port-reserve-1.1.4.tar.gz
(Stored with Git LFS)
Normal file
BIN
ephemeral-port-reserve-1.1.4.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
4
python-ephemeral-port-reserve.changes
Normal file
4
python-ephemeral-port-reserve.changes
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 19 19:52:50 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Initial packaging effort for ephemeral-port-reserve 1.1.4.
|
72
python-ephemeral-port-reserve.spec
Normal file
72
python-ephemeral-port-reserve.spec
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-ephemeral-port-reserve
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%define modname ephemeral-port-reserve
|
||||||
|
Name: python-ephemeral-port-reserve
|
||||||
|
Version: 1.1.4
|
||||||
|
Release: 0
|
||||||
|
Summary: Bind to an ephemeral port, force it into the TIME_WAIT state, and unbind it
|
||||||
|
License: MIT
|
||||||
|
URL: https://github.com/Yelp/ephemeral-port-reserve/
|
||||||
|
# GH URL is necessary because of missing tests, gh#Yelp/ephemeral-port-reserve#16
|
||||||
|
Source: https://github.com/Yelp/%{modname}/archive/refs/tags/v%{version}.tar.gz#/%{modname}-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun): update-alternatives
|
||||||
|
BuildArch: noarch
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
|
%description
|
||||||
|
Bind to an ephemeral port, force it into the TIME_WAIT state, and unbind it.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1 -n %{modname}-%{version}
|
||||||
|
|
||||||
|
sed -i -e '1{/env python/d}' ephemeral_port_reserve.py
|
||||||
|
|
||||||
|
%build
|
||||||
|
%pyproject_wheel
|
||||||
|
|
||||||
|
%install
|
||||||
|
%pyproject_install
|
||||||
|
%python_clone -a %{buildroot}%{_bindir}/ephemeral-port-reserve
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%pytest
|
||||||
|
|
||||||
|
%post
|
||||||
|
%python_install_alternative ephemeral-port-reserve
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%python_uninstall_alternative ephemeral-port-reserve
|
||||||
|
|
||||||
|
%files %{python_files}
|
||||||
|
%python_alternative %{_bindir}/ephemeral-port-reserve
|
||||||
|
|
||||||
|
%{python_sitelib}/__pycache__
|
||||||
|
%{python_sitelib}/ephemeral_port_reserve-%{version}*-info
|
||||||
|
%{python_sitelib}/ephemeral_port_reserve.py
|
||||||
|
|
||||||
|
%changelog
|
Loading…
Reference in New Issue
Block a user