forked from pool/python-port-for
* Dropped support for Python 3.8 (it has reached EOL) * Added Python 3.13 to the supported Python Versions * Update to README's badges * Update to automerge pipeline * Updated black installation to not install on python version older than 3.12 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-port-for?expand=0&rev=10
102 lines
3.2 KiB
RPMSpec
102 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package python-port-for
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-port-for
|
|
Version: 0.7.4
|
|
Release: 0
|
|
License: MIT
|
|
Summary: Utility that helps with local TCP ports managment
|
|
URL: https://github.com/kmike/port-for/
|
|
Group: Development/Languages/Python
|
|
Source: https://github.com/kmike/port-for/archive/refs/tags/v%{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
|
|
port-for is a command-line utility and a python library that
|
|
helps with local TCP ports management.
|
|
|
|
It can find an unused TCP localhost port and remember the association::
|
|
|
|
$ sudo port-for foo
|
|
37987
|
|
|
|
This can be useful when you are installing a stack of software
|
|
with multiple parts needing port numbers.
|
|
|
|
There are several rules port-for is trying to follow to find and
|
|
return a new unused port:
|
|
|
|
1) Port must be unused: port-for checks this by trying to connect
|
|
to the port and to bind to it.
|
|
|
|
2) Port must be IANA unassigned and otherwise not well-known:
|
|
this is acheived by maintaining unassigned ports list
|
|
(parsed from IANA and Wikipedia).
|
|
|
|
3) Port shouldn't be inside ephemeral port range.
|
|
This is important because ports from ephemeral port range can
|
|
be assigned temporary by OS (e.g. by machine's IP stack) and
|
|
this may prevent service restart in some circumstances.
|
|
``port-for`` doesn't return ports from ephemeral port ranges
|
|
configured at the current machine.
|
|
|
|
4) Other heuristics are also applied: ``port-for`` tries to return
|
|
a port from larger port ranges; it also doesn't return ports that are
|
|
too close to well-known ports.
|
|
|
|
%prep
|
|
%setup -q -n port-for-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand rm -f %{buildroot}%{$python_sitelib}/port_for/tests.py* %{buildroot}%{$python_sitelib}/port_for/__pycache__/tests.*
|
|
%python_clone -a %{buildroot}%{_bindir}/port-for
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%post
|
|
%python_install_alternative port-for
|
|
|
|
%postun
|
|
%python_uninstall_alternative port-for
|
|
|
|
%files %{python_files}
|
|
%license LICENSE.txt
|
|
%doc README.rst
|
|
%{python_sitelib}/port_for
|
|
%{python_sitelib}/port_for-%{version}.dist-info
|
|
%python_alternative %{_bindir}/port-for
|
|
|
|
%changelog
|