add: ops2deb (#410)

This commit is contained in:
madomado
2023-04-30 07:14:41 +08:00
committed by GitHub
parent 0f0b2cb4bd
commit a598daf86f
3 changed files with 46 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
project pkg {
rpm {
spec = "ops2deb.spec"
}
}
+40
View File
@@ -0,0 +1,40 @@
%global debug_package %nil
%define _python_dist_allow_version_zero # upstream issue?
Name: python3-ops2deb
Version: 2.4.1
Release: 1%?dist
Summary: Generate Debian packages for common devops tools
License: MIT
URL: https://github.com/upciti/ops2deb
Source0: %url/archive/refs/tags/%version.tar.gz
BuildRequires: python3-devel poetry python3.10
BuildRequires: python3dist(setuptools)
%description
ops2deb is designed to generate Debian packages for common devops tools, but can be used to package any portable application.
It consumes a configuration file and outputs .deb packages. ops2deb can also track new releases of upstream applications and
automatically bump application versions in its configuration file.
%prep
%autosetup -n ops2deb-%version
%build
poetry build
%install
python3.10 -m ensurepip
python3.10 -m pip install installer
python3.10 -m installer --destdir=%buildroot dist/*.whl
rm -rf %buildroot/%python3_sitelib/*/__pycache__
%files
%license LICENSE
%doc README.md
/usr/bin/ops2deb
/usr/lib/python3*/site-packages/ops2deb*
%changelog
* Fri Apr 28 2023 windowsboy111 <windowsboy111@fyralabs.com> - 2.4.1-1
- Initial package.
+1
View File
@@ -0,0 +1 @@
rpm.version(gh("upciti/ops2deb"));