Commit Graph

25 Commits

Author SHA1 Message Date
Nick Hainke 19cbe27570 libxslt: update to 1.1.39
Release Notes:
- https://gitlab.gnome.org/GNOME/libxslt/-/releases/v1.1.38
- https://gitlab.gnome.org/GNOME/libxslt/-/releases/v1.1.39

Fixes: #22836
Signed-off-by: Nick Hainke <vincent@systemli.org>
2023-12-07 18:41:14 +01:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Rosen Penev 0f9d554f1c libxslt: update to 1.1.37
Upstream URL changed. There's also a cmake build now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-11-05 17:40:56 -07:00
Maxim Anisimov b5ac497d66 libxslt: fix compilation because of wrong libxml2 check in configure script
More details: 90c34c8bb9

Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com>
2021-08-05 09:14:07 +03:00
Sebastian Kemper 48c838772f libxslt: allow access to iconv
Since commit d18692c libxml2 is linked against iconv. Now libxslt needs
access to iconv as well. Without it the build fails.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2021-02-09 22:00:06 +01:00
Rosen Penev c1d21df55b
libxslt: add autoreconf to fix compilation
Arch Linux fails to compile without it as it tries to link to host
libraries.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 22:37:40 -08:00
Alexandru Ardelean 852c117c60 libs: libxslt: allow profiler to be enabled
The lxml package depends on the xsltGetProfileInformation() symbol to be
available.
Without it, the library is unusable at newer versions.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2020-05-27 11:03:29 +03:00
Rosen Penev b289809735
libxslt: update to 1.1.34
Fixes all known CVEs.

Various Makefile cleanups for consistency between packages.

Added PIC explicitly (was implicit). Removed two extra features.

Removed autoreconf and added PKG_BUILD_PARALLEL for faster compilation.

Roughly matched host configure args with target ones.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-03-20 19:35:34 -07:00
Sebastian Kemper 05f0beb6a8 libxslt/host: depend on libxml2/host
The host build requires libxml2-dev. This commit adds the dependency for
libxml2/host, as the host system may not have it installed. This also
avoids using the host's xml2-config (in /usr/bin for instance) while
linking to libraries in staging_dir/hostpkg.

ldd staging_dir/hostpkg/bin/xsltproc | grep xml2
	libxml2.so.2 => /home/sk/tmp/openwrt/staging_dir/hostpkg/lib/libxml2.so.2 (0x00007fcc0644c000)

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2019-10-26 14:48:19 +02:00
Florian Eckert 48ad713a14 libxslt: add host build
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2019-10-22 14:40:36 +02:00
Jan Pavlinec f77c53cff1
libxslt: patch security issues
Fixes:
CVE-2019-13117
CVE-2019-13118

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-07-24 15:36:56 +02:00
Jan Pavlinec d410c6b0b6
libxslt: patch security issue and add CPE id
Fixes CVE-2019-11068

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-04-23 15:23:19 +02:00
Rosen Penev 666d28e94e
libxslt: Update to 1.1.33
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-01-13 10:39:10 -08:00
Sebastian Kemper 54512199ee libxslt: install all lib symlinks
Makes sure that even i.e. libxslt.so symlink gets copied to the target.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-02-24 12:06:23 +01:00
Sebastian Kemper baef65fed0 libxslt: update xsltproc depends
libxml2 can be removed as libxslt already depends on it.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-02-24 12:04:58 +01:00
Sebastian Kemper a57ffe6c63 libxslt: remove $(FPIC) from TARGET_CFLAGS
libxslt already makes sure that the compiler emits position-independent
code. Adding $(FPIC) makes no difference. In addition the libxslt build
system puts its own flag behind the CFLAGS, overriding whatever was set
before.

Also with $(FPIC) in CFLAGS even the libxslt utils get compiled with
PIC, which us undesirable.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-02-24 12:02:49 +01:00
Sebastian Kemper 0b1ee9ed44 libxslt: version bump
- version bump to 1.1.32
- add --disable-silent-rules for verbose build output

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2018-01-30 14:57:25 +01:00
Michal Hrusecky 0e275385af
libxslt: Update to version 1.1.31
Signed-off-by: Michal Hrusecky <Michal@Hrusecky.net>
2017-10-31 22:52:20 +01:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Matthias Schiffer ee211f94ec
libxslt: revert $(STAGING_DIR_HOSTPKG) to $(STAGING_DIR)/host where appropriate
Host files installed in Build/InstallDev are target-specific and will stay
in $(STAGING_DIR)/host after the STAGING_DIR_HOSTPKG unification.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2017-01-14 19:01:13 +01:00
Matthias Schiffer 4a984a8d60
treewide: replace $(STAGING_DIR)/host and $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
As both LEDE and OpenWrt have STAGING_DIR_HOSTPKG now, we can start to rely
on it. See 73b7f55424 for more information on
STAGING_DIR_HOSTPKG.

STAGING_DIR_HOSTPKG won't actually be changed before the first LEDE release
(it is equivalent to $(STAGING_DIR)/host), so this simple search/replace
cleanup is safe to apply. Doing this cleanup now will be useful for the
Gluon project (an OpenWrt/LEDE based firmware framework) for experimenting
with modifying STAGING_DIR_HOSTPKG before doing this in the LEDE upstream.

Also fixes a typo in the dbus Makefile ("STAGIND_DIR").

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2017-01-10 18:25:54 +01:00
Jiri Slachta a3a8bbdc51 libssh2, libxslt, tiff: change PKG_MAINTAINER email address
Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
2016-05-31 20:22:37 +02:00
Stefan Weil d9c37187e6 libs: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2016-04-13 16:05:03 +02:00
Jiri Slachta 90c93bed5c libxslt: add licensing information
Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
2014-08-10 09:24:48 +02:00
Jiri Slachta f6d2c55587 libxslt: import from oldpackages
Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
2014-07-19 16:20:05 +02:00