blob: 4f15ce57952f784f093ffcc665348e82dda76813 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
Name: fedora-packager
Version: 0.1.1
Release: 1%{?dist}
Summary: Tools for setting up a fedora maintainer environment
Group: Applications/Productivity
License: GPLv2+
URL: https://hosted.fedoraproject.org/projects/fedora-packager/
Source0: https://hosted.fedoraproject.org/projects/fedora-packager/attachment/wiki/WikiStart/fedora-packager-0.1.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: koji bodhi-client plague-client
Requires: rpm-build rpmdevtools rpmlint
Requires: cvs mercurial git bzr
Requires: gcc gcc-c++ mock
BuildArch: noarch
%description
Set of utilities useful for a fedora packager in setting up their environment.
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc COPYING TODO AUTHORS ChangeLog
%{_bindir}/fedora-packager-setup.sh
%{_bindir}/fedora-cvs
%changelog
* Mon Dec 03 2007 Dennis Gilmore <dennis@ausil.us> - 0.1.1-1
- fix typo in description
- update to 0.1.1 fixes typo in fedora-cvs
* Sun Nov 11 2007 Dennis Gilmore <dennis@ausil.us> - 0.1-1
- initial build
|