From 05b1a207da6787c94e2c42bf7112e6c69e037741 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 20:02:31 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.20170821git-1mamba;Mon Aug 21 2017] --- README.md | 2 ++ yum-metadata-parser.spec | 59 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 yum-metadata-parser.spec diff --git a/README.md b/README.md index 44b82f6..00f3dee 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # yum-metadata-parser +YUM metadata parser written in. + diff --git a/yum-metadata-parser.spec b/yum-metadata-parser.spec new file mode 100644 index 0000000..86aa9a0 --- /dev/null +++ b/yum-metadata-parser.spec @@ -0,0 +1,59 @@ +Name: yum-metadata-parser +Version: 0.20170821git +Release: 1mamba +Summary: YUM metadata parser written in +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/rpm-software-management/yum-metadata-parser +## GITSOURCE https://github.com/rpm-software-management/yum-metadata-parser.git master +Source: https://github.com/rpm-software-management/yum-metadata-parser.git/master/yum-metadata-parser-%{version}.tar.bz2 +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libglib-devel +BuildRequires: libpython27-devel +BuildRequires: libsqlite-devel +BuildRequires: libxml2-devel +## AUTOBUILDREQ-END +BuildRequires: libpython-devel +Requires: python >= %python_version +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +%{summary}. + +%if 0%{?with_pyver} +%pyver_package +%endif + +%prep +%setup -q + +%build +CFLAGS="%{optflags}" %{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install \ + -O1 --skip-build \ + --root="%{buildroot}" \ + --install-headers=%{python_inc} \ + --install-lib=%{python_sitearch} \ + --record=%{name}.filelist + +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist + +%files %{?pyappend} -f %{name}.filelist +%defattr(-,root,root) +## note: this list is just an example; modify as required +# %{python_sitearch}/%{name}.py* +# %{python_sitearch}/%{name}.so +%doc AUTHORS +## note: eventually add the remaining documents (if any) +# %doc ChangeLog README + +%changelog +* Mon Aug 21 2017 Silvan Calarco 0.20170821git-1mamba +- package created using the webbuild interface