]> git.pld-linux.org Git - packages/bzrtools.git/blob - bzrtools.spec
a225d3b41c19a864ee36cb327ab367a863e792b9
[packages/bzrtools.git] / bzrtools.spec
1 %define         ver     1.15
2 %define         minor   0
3 Summary:        A collection of utilities and plugins for Bazaar
4 Summary(pl.UTF-8):      Zbiór narzędzi i wtyczek dla programu Bazaar
5 Name:           bzrtools
6 Version:        %{ver}.%{minor}
7 Release:        1
8 License:        GPL v2
9 Group:          Development/Version Control
10 Source0:        http://code.launchpad.net/bzrtools/stable/%{version}/+download/%{name}-%{version}.tar.gz
11 # Source0-md5:  23f0385123a02e961df63457b4de31e5
12 URL:            http://bazaar-vcs.org/BzrTools
13 BuildRequires:  python-devel >= 1:2.4
14 BuildRequires:  rpmbuild(macros) >= 1.219
15 %pyrequires_eq  python
16 Requires:       bzr >= %{ver}
17 Requires:       diffutils
18 Requires:       graphviz >= 2.6
19 Requires:       librsvg
20 Requires:       patch
21 Requires:       rsync >= 2.6.6
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 BzrTools is a collection of plugins for Bazaar (bzr). Among the
26 included plugins are:
27 - push - uses rsync to push local changes to a remote server
28 - annotate - prints a file annotated with the revision next to each
29   line
30 - shelve/unshelve - allows you to undo some changes, commit, and
31   restore
32 - clean-tree - remove unknown, ignored-junk, or unversioned files from
33   the tree
34 - graph-ancestry - use dot to produce branch ancestry graphs
35 - shell - a bzr command interpreter with command completion
36 - patch - apply a patch to your tree from a file or URL
37
38 %description -l pl.UTF-8
39 BZrTools to zestaw wtyczek do programu Bazaar (bzr). Zestaw zawiera
40 następujące narzędzia:
41 - push - używa programu rsync do wysłania lokalnych zmian na zdalny
42   serwer
43 - annotate - wyświetla przypisy odnośnie rewizji w każdej linii
44   pliku
45 - shelve/unshelve - pozwala na powrót do wcześniejszych zmian,
46   zatwierdzenia zmian i przywrócenia stanu sprzed dokonania zmian
47 - clean-tree - usuwa nieznane, ignorowane pliki z projektu
48 - graph-ancestry - graficzne przedstawienie rodowodu plików w
49   projekcie
50 - shell - interpreter poleceń bzr z dopełnianiem poleceń
51 - patch - pozwala na nakładanie łat z pliku lub adresu URL
52
53 %prep
54 %setup -q -n %{name}
55
56 %build
57 %{__python} setup.py build
58
59 %install
60 rm -rf $RPM_BUILD_ROOT
61 %{__python} setup.py install \
62         --install-purelib %{py_sitedir} \
63         --optimize=2 \
64         --root=$RPM_BUILD_ROOT
65
66 %py_postclean
67
68 %clean
69 rm -rf $RPM_BUILD_ROOT
70
71 %files
72 %defattr(644,root,root,755)
73 %doc NEWS NEWS.Shelf README README.Shelf TODO TODO.Shelf CREDITS
74 %{py_sitedir}/bzrlib/plugins/bzrtools
This page took 0.072875 seconds and 2 git commands to generate.