]> git.pld-linux.org Git - packages/make-request.git/blob - make-request.spec
72d65faa3cda54a6d292ed8d4cf32b5b34a10e3b
[packages/make-request.git] / make-request.spec
1 %define         githash 0954132a190c6303acc84d1b5891daa2d42a531c
2 Summary:        Tool for sending PLD-specific build requests
3 Summary(pl.UTF-8):      Narzędzie do wysyłania żądań budowania specyficznych dla PLD
4 Name:           make-request
5 Version:        1.90
6 Release:        1
7 License:        GPL
8 Group:          Development/Tools
9 Source0:        http://git.pld-linux.org/?p=projects/pld-builder.new.git;a=blob_plain;f=client/make-request.sh;hb=%{githash};/%{name}-%{version}.sh
10 # Source0-md5:  cb8a487f482d810eafcc900bbc34f8eb
11 URL:            http://git.pld-linux.org/?p=projects/pld-builder.new.git;a=summary
12 Requires:       gnupg
13 Suggests:       /usr/lib/sendmail
14 Suggests:       python
15 Obsoletes:      pld-builder-client
16 BuildArch:      noarch
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 A tool which, based on the way it's configured and on the cmdline
21 parameters given to it, generates an XML-formated build request, which
22 it then signs with the requester's PGP key (using the gpg utility) and
23 then sends it to the source builder via a sendmail compatible command
24 line application (by default invoking "sendmail -t").
25
26 Two modes of operation are:
27 - sending requests to build chosen package(s) on a specified group of
28   builders
29 - sending a chosen command to be executed on a specified group of
30   builders
31
32 It works with PLD (or compatible) package builders.
33
34 %description -l pl.UTF-8
35 Narzędzie, które w zależności od konfiguracji i parametrów linii
36 poleceń, generuje żądanie budowania w formacie XML, podpisuje je
37 kluczem PGP zlecającego (przy użyciu narzędzia gpg), a następnie
38 wysyła na builder źródłowy przy użyciu polecenia sendmail (domyślnie
39 "sendmail -t").
40
41 Dostępne są dwa tryby operacji:
42 - wysyłanie żądań zbudowania określonych pakietów na określonej grupie
43   builderów
44 - wysłanie podanego polecenia do wykonania na określonej grupie
45   builderów
46
47 Narzędzie działa z builderami pakietów PLD (lub kompatybilnymi).
48
49 %prep
50
51 %build
52 ver=$(awk -F= '/^VERSION=/{print $2}' %{SOURCE0})
53 test "$ver" = %{version}
54
55 %install
56 rm -rf $RPM_BUILD_ROOT
57 install -d $RPM_BUILD_ROOT%{_bindir}
58 install -p %{SOURCE0} $RPM_BUILD_ROOT%{_bindir}/%{name}
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %files
64 %defattr(644,root,root,755)
65 %attr(755,root,root) %{_bindir}/%{name}
This page took 0.037883 seconds and 2 git commands to generate.