mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
add in a starter specfile
This commit is contained in:
parent
c12104f50d
commit
10bb17959c
1 changed files with 63 additions and 0 deletions
63
centpkg.spec
Normal file
63
centpkg.spec
Normal file
|
@ -0,0 +1,63 @@
|
|||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
|
||||
Name: centpkg
|
||||
Version: 0.1
|
||||
Release: 2%{?dist}
|
||||
Summary: CentOS utility for working with dist-git
|
||||
|
||||
Group: Applications/System
|
||||
License: GPLv2+
|
||||
URL: https://git.centos.org/summary/centpkg.git
|
||||
Source0: centpkg-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root%(%{__id_u} -n)
|
||||
|
||||
# CentOS Distributed Packages
|
||||
Requires: redhat-rpm-config
|
||||
Requires: python-pycurl
|
||||
|
||||
# EPEL Distributed Packages
|
||||
Requires: pyrpkg >= 1.17
|
||||
Requires: koji
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
# CentOS Distributed build-requires
|
||||
BuildRequires: python-devel, python-setuptools
|
||||
|
||||
# EPEL Distributed build-requires
|
||||
BuildRequires: pyrpkg
|
||||
|
||||
%description
|
||||
Provides the centpkg command for working with dist-git
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
%install
|
||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc README.md COPYING
|
||||
%config(noreplace) %{_sysconfdir}/rpkg
|
||||
%{_bindir}/%{name}
|
||||
%{python_sitelib}/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Jul 05 2014 Brian Stinson bstinson@ksu.edu - 0.1-2
|
||||
- Update readme and add exception checking when running toplevel commands
|
||||
|
||||
* Sat Jul 05 2014 Brian Stinson bstinson@ksu.edu - 0.1-1
|
||||
- Local builds and mockbuilds work
|
||||
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue