mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-01 17:32:18 +00:00
41da51479c
* chore(sync): frawhide -> f43 * bump(bitwarden-cli.bin): release 1 → 2 * bump(bazzite-portal): release 2 → 3 * bump(veracrypt): release 1 → 2 * bump(devpod): release 2 → 3 --------- Co-authored-by: hamachitan[bot] <252235638+hamachitan[bot]@users.noreply.github.com>
55 lines
1.1 KiB
RPMSpec
55 lines
1.1 KiB
RPMSpec
%define debug_package %{nil}
|
|
|
|
%global pypi_name pyzmq
|
|
%global _desc Python bindings for zeromq.
|
|
|
|
Name: python-%{pypi_name}
|
|
Version: 27.1.0
|
|
Release: 1%?dist
|
|
Summary: Python bindings for zeromq
|
|
License: MIT
|
|
URL: https://github.com/zeromq/pyzmq
|
|
Source0: %{pypi_source}
|
|
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-setuptools
|
|
BuildRequires: python3-scikit-build-core
|
|
BuildRequires: python3-cython
|
|
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc
|
|
BuildRequires: gcc-c++
|
|
|
|
Packager: Owen Zimmerman <owen@fyralabs.com>
|
|
|
|
%description
|
|
%_desc
|
|
|
|
%package -n python3-%{pypi_name}
|
|
Summary: %{summary}
|
|
Provides: pyzmq
|
|
Provides: %{pypi_name}
|
|
%{?python_provide:%python_provide python3-%{pypi_name}}
|
|
|
|
%description -n python3-%{pypi_name}
|
|
%_desc
|
|
|
|
%prep
|
|
%autosetup -n %{pypi_name}-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%pyproject_save_files zmq
|
|
|
|
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
|
%doc README.md AUTHORS.md CONTRIBUTING.md SECURITY.md
|
|
%license LICENSE.md
|
|
|
|
%changelog
|
|
* Sun Nov 23 2025 Owen Zimmerman <owen@fyralabs.com>
|
|
- Initial commit
|