60 lines
1.7 KiB
RPMSpec
60 lines
1.7 KiB
RPMSpec
|
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 <silvan.calarco@mambasoft.it>
|
||
|
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 <silvan.calarco@mambasoft.it> 0.20170821git-1mamba
|
||
|
- package created using the webbuild interface
|