source: projects/specs/trunk/p/pypoppler/pypoppler-vl.spec @ 521

Revision 521, 1.9 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
2
3Name:           pypoppler
4Version:        0.12.1
5Release:        1%{?_dist_release}
6Summary:        Python bindings for the Poppler PDF rendering library
7Summary(ja):    Poppler PDF レンダリングライブラリの Python バインディング
8
9Group:          Applications/Publishing
10License:        GPLv2+
11URL:            https://launchpad.net/poppler-python
12Source0:        http://launchpad.net/poppler-python/trunk/development/+download/%{name}-%{version}.tar.gz
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  pygtk2-devel
16BuildRequires:  atk-devel
17BuildRequires:  poppler-devel
18BuildRequires:  pycairo-devel
19#BuildRequires:  poppler-glib-devel >= 0.10.5
20
21
22%description
23Python bindings for the Poppler PDF rendering library. It is needed to
24run programs written in Python and using Poppler set.
25
26
27%prep
28%setup -q
29
30
31%build
32%configure --disable-static
33make %{?_smp_mflags}
34
35
36%install
37rm -rf %{buildroot}
38make install DESTDIR=%{buildroot} INSTALL="install -p"
39find %{buildroot} -type f -name "*.la" -exec rm -f {} ';'
40
41
42%clean
43rm -rf %{buildroot}
44
45
46%files
47%defattr(-,root,root,-)
48%doc AUTHORS ChangeLog COPYING NEWS
49%{python_sitearch}/poppler*
50
51
52%changelog
53* Thu Feb 11 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.12.1-1
54- initail build for VineSeed
55
56* Thu Nov 19 2009 Fabian Affolter <fabian@bernewireless.net> - 0.12.1-1
57- Updated to new upstream version 0.12.1
58
59* Thu Sep 17 2009 Fabian Affolter <fabian@bernewireless.net> - 0.10.1-1
60- Updated to new upstream version 0.10.1
61
62* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-2
63- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
64
65* Sat Apr 25 2009 Fabian Affolter <fabian@bernewireless.net> - 0.10.0-1
66- Initial package for Fedora
Note: See TracBrowser for help on using the repository browser.