Accepting request 523591 from devel:libraries:c_c++
1 OBS-URL: https://build.opensuse.org/request/show/523591 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxslt?expand=0&rev=53
This commit is contained in:
commit
93d5715494
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 11 18:35:31 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Fix RPM groups. Drop ineffective --with-pic.
|
||||||
|
Trim conjecture from description.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 28 18:49:10 UTC 2017 - mpluskal@suse.com
|
Fri Jul 28 18:49:10 UTC 2017 - mpluskal@suse.com
|
||||||
|
|
||||||
|
@ -61,7 +61,6 @@ XSLT language with XPath functions written in Python.
|
|||||||
autoreconf -fvi
|
autoreconf -fvi
|
||||||
%configure \
|
%configure \
|
||||||
--with-python=python \
|
--with-python=python \
|
||||||
--with-pic \
|
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-silent-rules
|
--disable-silent-rules
|
||||||
make %{?_smp_mflags} PYTHON_SITE_PACKAGES=%{py_sitedir} pythondir=%{py_sitedir}
|
make %{?_smp_mflags} PYTHON_SITE_PACKAGES=%{py_sitedir} pythondir=%{py_sitedir}
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 11 18:35:31 UTC 2017 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Fix RPM groups. Drop ineffective --with-pic.
|
||||||
|
Trim conjecture from description.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 28 18:48:39 UTC 2017 - mpluskal@suse.com
|
Fri Jul 28 18:48:39 UTC 2017 - mpluskal@suse.com
|
||||||
|
|
||||||
|
25
libxslt.spec
25
libxslt.spec
@ -23,7 +23,7 @@ Version: 1.1.29
|
|||||||
Release: 0
|
Release: 0
|
||||||
Summary: XSL Transformation Library
|
Summary: XSL Transformation Library
|
||||||
License: MIT AND GPL-2.0+
|
License: MIT AND GPL-2.0+
|
||||||
Group: System/Libraries
|
Group: Development/Libraries/C and C++
|
||||||
Url: http://xmlsoft.org/XSLT/
|
Url: http://xmlsoft.org/XSLT/
|
||||||
Source0: ftp://xmlsoft.org/libxslt/libxslt-%{version}.tar.gz
|
Source0: ftp://xmlsoft.org/libxslt/libxslt-%{version}.tar.gz
|
||||||
Source1: ftp://xmlsoft.org/libxslt/libxslt-%{version}.tar.gz.asc
|
Source1: ftp://xmlsoft.org/libxslt/libxslt-%{version}.tar.gz.asc
|
||||||
@ -51,10 +51,8 @@ transformation mechanism.
|
|||||||
It is based on libxml (version 2) for XML parsing, tree manipulation,
|
It is based on libxml (version 2) for XML parsing, tree manipulation,
|
||||||
and XPath support. It is written in plain C, making as few assumptions
|
and XPath support. It is written in plain C, making as few assumptions
|
||||||
as possible and sticks closely to ANSI C/POSIX for easy embedding.
|
as possible and sticks closely to ANSI C/POSIX for easy embedding.
|
||||||
Although not primarily designed with performance in mind, libxslt seems
|
It includes support for the EXSLT set of extension functions as well
|
||||||
to be a relatively fast processor. It also includes full support for
|
as some common extensions present in other XSLT engines.
|
||||||
the EXSLT set of extension functions as well as some common extensions
|
|
||||||
present in other XSLT engines.
|
|
||||||
|
|
||||||
%package -n %{libname}
|
%package -n %{libname}
|
||||||
Summary: XSL Transformation Library
|
Summary: XSL Transformation Library
|
||||||
@ -69,13 +67,11 @@ transformation mechanism.
|
|||||||
It is based on libxml (version 2) for XML parsing, tree manipulation,
|
It is based on libxml (version 2) for XML parsing, tree manipulation,
|
||||||
and XPath support. It is written in plain C, making as few assumptions
|
and XPath support. It is written in plain C, making as few assumptions
|
||||||
as possible and sticks closely to ANSI C/POSIX for easy embedding.
|
as possible and sticks closely to ANSI C/POSIX for easy embedding.
|
||||||
Although not primarily designed with performance in mind, libxslt seems
|
It includes support for the EXSLT set of extension functions as well
|
||||||
to be a relatively fast processor. It also includes full support for
|
as some common extensions present in other XSLT engines.
|
||||||
the EXSLT set of extension functions as well as some common extensions
|
|
||||||
present in other XSLT engines.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Include Files and Libraries mandatory for Development
|
Summary: Development files for libxslt
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1+
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{libname} = %{version}
|
Requires: %{libname} = %{version}
|
||||||
@ -85,8 +81,12 @@ Requires: libgcrypt-devel
|
|||||||
Requires: libgpg-error-devel
|
Requires: libgpg-error-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains all necessary include files and libraries needed
|
libxslt allows you to transform XML files into other XML files
|
||||||
to develop applications that require these.
|
(or HTML, text, and more) using the standard XSLT stylesheet
|
||||||
|
transformation mechanism.
|
||||||
|
|
||||||
|
This subpackage contains the header files for developing
|
||||||
|
applications that want to make use of the XSLT libraries.
|
||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
Summary: Extended Stylesheet Language (XSL) Transformation utilities
|
Summary: Extended Stylesheet Language (XSL) Transformation utilities
|
||||||
@ -112,7 +112,6 @@ xtend the
|
|||||||
autoreconf -fvi
|
autoreconf -fvi
|
||||||
%configure \
|
%configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--with-pic \
|
|
||||||
--without-python \
|
--without-python \
|
||||||
--disable-silent-rules
|
--disable-silent-rules
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
Loading…
Reference in New Issue
Block a user