From 41e84f539422235d92cad9609d81b55b6acda730 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 17:45:08 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.7.7-1mamba;Sat Jul 31 2021] --- README.md | 2 ++ setconf.spec | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 setconf.spec diff --git a/README.md b/README.md index b53ef86..a49d305 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # setconf +Utility for easily changing settings in configuration files. + diff --git a/setconf.spec b/setconf.spec new file mode 100644 index 0000000..a7328e4 --- /dev/null +++ b/setconf.spec @@ -0,0 +1,40 @@ +Name: setconf +Version: 0.7.7 +Release: 1mamba +Summary: Utility for easily changing settings in configuration files +Group: System/Tools +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://setconf.roboticoverlords.org/ +Source: https://setconf.roboticoverlords.org/setconf-%{version}.tar.xz +License: GPL +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END +Requires: /usr/bin/python + +%description +Utility for easily changing settings in configuration files. + +%prep +%setup -q + +%build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -Dm755 setconf.py %{buildroot}%{_bindir}/setconf +install -Dm644 setconf.1.gz %{buildroot}%{_mandir}/man1/setconf.1.gz + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/setconf +%{_mandir}/man1/setconf.1* +%doc COPYING + +%changelog +* Sat Jul 31 2021 Silvan Calarco 0.7.7-1mamba +- package created using the webbuild interface