]> git.pld-linux.org Git - packages/fedora-packager.git/blame_incremental - fedora-packager.spec
- 0.5.1.4, add bash-completion
[packages/fedora-packager.git] / fedora-packager.spec
... / ...
CommitLineData
1Summary: Tools for setting up a Fedora maintainer environment
2Name: fedora-packager
3Version: 0.5.1.4
4Release: 0.1
5License: GPL v2+
6Group: X11/Applications
7URL: https://fedorahosted.org/fedora-packager
8Source0: https://fedorahosted.org/releases/f/e/fedora-packager/%{name}-%{version}.tar.bz2
9# Source0-md5: 33f5944d3468413058b035dedac4588f
10BuildRequires: python-devel
11BuildRequires: rpmbuild(macros) >= 1.219
12#Requires: bodhi-client
13Requires: curl
14#Requires: koji
15#Requires: mock
16Requires: openssh-clients
17Requires: python-offtrac
18Requires: python-pyOpenSSL
19Requires: python-pycurl
20#Requires: redhat-rpm-config
21Requires: rpm-build
22#Requires: rpmdevtools
23#Requires: rpmlint
24Requires: koji
25BuildArch: noarch
26BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28%description
29Set of utilities useful for a Fedora packager in setting up their
30environment.
31
32%package -n fedpkg
33Summary: Fedora utility for working with dist-git
34Group: Applications/Databases
35Requires: curl
36Requires: fedora-packager = %{version}-%{release}
37Requires: python-argparse
38Requires: python-git >= 0.2.0
39Requires: python-kitchen
40
41%description -n fedpkg
42Provides the fedpkg command for working with dist-git.
43
44%package -n bash-completion-fedpkg
45Summary: bash-completion for fedpkg
46Summary(pl.UTF-8): bashowe uzupełnianie nazw dla fedpkg
47Group: Applications/Shells
48Requires: fedpkg = %{version}-%{release}
49Requires: bash-completion
50
51%description -n bash-completion-fedpkg
52bash-completion for fedpkg.
53
54%description -n bash-completion-fedpkg -l pl.UTF-8
55bashowe uzupełnianie nazw dla fedpkg.
56
57%prep
58%setup -q
59
60%build
61%configure
62%{__make}
63
64%install
65rm -rf $RPM_BUILD_ROOT
66%{__make} install \
67 DESTDIR=$RPM_BUILD_ROOT
68
69%py_postclean
70
71mv $RPM_BUILD_ROOT/etc/bash_completion.d/fedpkg{.bash,}
72
73%clean
74rm -rf $RPM_BUILD_ROOT
75
76%files
77%defattr(644,root,root,755)
78%doc TODO AUTHORS ChangeLog
79%attr(755,root,root) %{_bindir}/*
80%exclude %{_bindir}/fedpkg
81%{py_sitescriptdir}/fedora_cert
82
83%files -n fedpkg
84%defattr(644,root,root,755)
85%attr(755,root,root) %{_bindir}/fedpkg
86%{py_sitescriptdir}/pyfedpkg
87
88%files -n bash-completion-fedpkg
89%defattr(644,root,root,755)
90/etc/bash_completion.d/*
This page took 0.072035 seconds and 4 git commands to generate.