Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: third_party/libxslt/libxslt.spec.in

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxslt/libxslt.pc.in ('k') | third_party/libxslt/libxslt/Makefile.am » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 Summary: Library providing the GNOME XSLT engine
2 Name: libxslt
3 Version: @VERSION@
4 Release: 1%{?dist}%{?extra_release}
5 License: MIT
6 Group: Development/Libraries
7 Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
8 BuildRoot: %{_tmppath}/%{name}-%{version}-root
9 URL: http://xmlsoft.org/XSLT/
10 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@
11 BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@
12 BuildRequires: python python-devel
13 BuildRequires: libxml2-python
14 BuildRequires: libgcrypt-devel
15 Prefix: %{_prefix}
16 Docdir: %{_docdir}
17
18 %description
19 This C library allows to transform XML files into other XML files
20 (or HTML, text, ...) using the standard XSLT stylesheet transformation
21 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_V ERSION@
22 installed. The xsltproc command is a command line interface to the XSLT engine
23
24 %package devel
25 Summary: Libraries, includes, etc. to embed the GNOME XSLT engine
26 Group: Development/Libraries
27 Requires: libxslt = %{version}-%{release}
28 Requires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@
29 Requires: libgcrypt-devel
30 Requires: pkgconfig
31
32 %description devel
33 This C library allows to transform XML files into other XML files
34 (or HTML, text, ...) using the standard XSLT stylesheet transformation
35 mechanism. To use it you need to have a version of libxml2 >= @LIBXML_REQUIRED_V ERSION@
36 installed.
37
38 %package python
39 Summary: Python bindings for the libxslt library
40 Group: Development/Libraries
41 Requires: libxslt = %{version}-%{release}
42 Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@
43 Requires: libxml2-python >= @LIBXML_REQUIRED_VERSION@
44 Requires: python
45
46 %description python
47 The libxslt-python package contains a module that permits applications
48 written in the Python programming language to use the interface
49 supplied by the libxslt library to apply XSLT transformations.
50
51 This library allows to parse sytlesheets, uses the libxml2-python
52 to load and save XML and HTML files. Direct access to XPath and
53 the XSLT transformation context are possible to extend the XSLT language
54 with XPath functions written in Python.
55
56 %prep
57 %setup -q
58
59 %build
60 %configure
61 make
62 gzip -9 ChangeLog
63
64 %install
65 rm -fr %{buildroot}
66
67 %makeinstall
68
69 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
70 rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/%{name}{,-python}-%{version}
71
72 %check
73 make check
74
75 %clean
76 rm -fr %{buildroot}
77
78 %post
79 /sbin/ldconfig
80
81 %postun
82 /sbin/ldconfig
83
84 %files
85 %defattr(-, root, root)
86
87 %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
88 %doc doc/*.html doc/html doc/tutorial doc/tutorial2 doc/*.gif
89 %doc doc/EXSLT
90 %doc %{_mandir}/man1/xsltproc.1*
91 %{_libdir}/lib*.so.*
92 %{_libdir}/libxslt-plugins
93 %{prefix}/bin/xsltproc
94
95 %files devel
96 %defattr(-, root, root)
97
98 %doc AUTHORS ChangeLog.gz NEWS README Copyright TODO FEATURES
99 %doc doc/libxslt-api.xml
100 %doc doc/libxslt-refs.xml
101 %doc doc/EXSLT/libexslt-api.xml
102 %doc doc/EXSLT/libexslt-refs.xml
103 %doc %{_mandir}/man3/libxslt.3*
104 %doc %{_mandir}/man3/libexslt.3*
105 %doc doc/*.html doc/html doc/*.gif doc/*.png
106 %doc doc/tutorial
107 %doc doc/tutorial2
108 %doc doc/images
109 %doc doc/EXSLT
110 %{_libdir}/lib*.so
111 %{_libdir}/*a
112 %{_libdir}/*.sh
113 %{prefix}/share/aclocal/libxslt.m4
114 %{prefix}/include/*
115 %{prefix}/bin/xslt-config
116 %{_libdir}/pkgconfig/libxslt.pc
117 %{_libdir}/pkgconfig/libexslt.pc
118
119 %files python
120 %defattr(-, root, root)
121
122 %doc AUTHORS ChangeLog.gz NEWS README Copyright FEATURES
123 %{_libdir}/python*/site-packages/libxslt.py*
124 %{_libdir}/python*/site-packages/libxsltmod*
125 %doc python/TODO
126 %doc python/libxsltclass.txt
127 %doc python/tests/*.py
128 %doc python/tests/*.xml
129 %doc python/tests/*.xsl
130
131 %changelog
132 * @RELDATE@ Daniel Veillard <veillard@redhat.com>
133 - upstream release @VERSION@ see http://xmlsoft.org/XSLT/news.html
OLDNEW
« no previous file with comments | « third_party/libxslt/libxslt.pc.in ('k') | third_party/libxslt/libxslt/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698