From: <abe...@us...> - 2012-06-17 20:16:52
|
Revision: 5575 http://astlinux.svn.sourceforge.net/astlinux/?rev=5575&view=rev Author: abelbeck Date: 2012-06-17 20:16:46 +0000 (Sun, 17 Jun 2012) Log Message: ----------- libxml2, version bump to 2.8.0, security fixes CVE-2011-1944, CVE-2011-2821, CVE-2011-2834, CVE-2011-3919, CVE-2012-0841. Previous version was dated Nov 4 2010 Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2012-06-17 19:29:43 UTC (rev 5574) +++ branches/1.0/package/libxml2/libxml2.mk 2012-06-17 20:16:46 UTC (rev 5575) @@ -4,9 +4,10 @@ # ############################################################# -LIBXML2_VERSION = 2.7.8 +LIBXML2_VERSION = 2.8.0 LIBXML2_SITE = ftp://xmlsoft.org/libxml2 LIBXML2_INSTALL_STAGING = YES +LIBXML2_AUTORECONF = YES ifneq ($(BR2_LARGEFILE),y) LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2012-12-17 20:31:13
|
Revision: 5820 http://astlinux.svn.sourceforge.net/astlinux/?rev=5820&view=rev Author: abelbeck Date: 2012-12-17 20:31:06 +0000 (Mon, 17 Dec 2012) Log Message: ----------- libxml2, version bump to 2.9.0 Note: 'LIBXML2_AUTORECONF = YES' removed since it now requires a newer autoconf than we commonly have, regardless AUTORECONF should no longer be necessary since it was only added when configure.in patches were applied in the past. Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2012-12-17 19:52:37 UTC (rev 5819) +++ branches/1.0/package/libxml2/libxml2.mk 2012-12-17 20:31:06 UTC (rev 5820) @@ -4,10 +4,9 @@ # ############################################################# -LIBXML2_VERSION = 2.8.0 +LIBXML2_VERSION = 2.9.0 LIBXML2_SITE = ftp://xmlsoft.org/libxml2 LIBXML2_INSTALL_STAGING = YES -LIBXML2_AUTORECONF = YES ifneq ($(BR2_LARGEFILE),y) LIBXML2_CONF_ENV = CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-01-18 03:44:06
|
Revision: 6363 http://sourceforge.net/p/astlinux/code/6363 Author: abelbeck Date: 2014-01-18 03:44:02 +0000 (Sat, 18 Jan 2014) Log Message: ----------- libxml2, version bump to 2.9.1 Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2014-01-18 01:23:34 UTC (rev 6362) +++ branches/1.0/package/libxml2/libxml2.mk 2014-01-18 03:44:02 UTC (rev 6363) @@ -4,7 +4,7 @@ # ############################################################# -LIBXML2_VERSION = 2.9.0 +LIBXML2_VERSION = 2.9.1 LIBXML2_SITE = ftp://xmlsoft.org/libxml2 LIBXML2_INSTALL_STAGING = YES @@ -19,23 +19,36 @@ $(SED) "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/xml2-config ln -snf $(STAGING_DIR)/usr/include/libxml2/libxml $(STAGING_DIR)/usr/include/libxml endef - LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP HOST_LIBXML2_DEPENDENCIES = host-pkg-config HOST_LIBXML2_CONF_OPT = --without-debug --without-python +ifneq ($(BR2_HAVE_DEVFILES),y) define LIBXML2_REMOVE_CONFIG_SCRIPTS - $(RM) -f $(TARGET_DIR)/usr/bin/xml2-config + rm -f $(TARGET_DIR)/usr/bin/xml2-config endef - -ifneq ($(BR2_HAVE_DEVFILES),y) LIBXML2_POST_INSTALL_TARGET_HOOKS += LIBXML2_REMOVE_CONFIG_SCRIPTS endif +ifeq ($(BR2_PACKAGE_ZLIB),y) +LIBXML2_DEPENDENCIES += zlib +LIBXML2_CONF_OPT += --with-zlib +else +LIBXML2_CONF_OPT += --without-zlib +endif + +LIBXML2_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBICONV),libiconv) + +ifeq ($(BR2_ENABLE_LOCALE)$(BR2_PACKAGE_LIBICONV),y) +LIBXML2_CONF_OPT += --with-iconv +else +LIBXML2_CONF_OPT += --without-iconv +endif + $(eval $(call AUTOTARGETS,package,libxml2)) $(eval $(call AUTOTARGETS,package,libxml2,host)) # libxml2 for the host -LIBXML2_HOST_BINARY:=$(HOST_DIR)/usr/bin/xmllint +LIBXML2_HOST_BINARY = $(HOST_DIR)/usr/bin/xmllint This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-10-15 21:38:54
|
Revision: 6764 http://sourceforge.net/p/astlinux/code/6764 Author: abelbeck Date: 2014-10-15 21:38:51 +0000 (Wed, 15 Oct 2014) Log Message: ----------- libxml2, remove stray file on target Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2014-10-15 21:24:09 UTC (rev 6763) +++ branches/1.0/package/libxml2/libxml2.mk 2014-10-15 21:38:51 UTC (rev 6764) @@ -28,6 +28,7 @@ ifneq ($(BR2_HAVE_DEVFILES),y) define LIBXML2_REMOVE_CONFIG_SCRIPTS rm -f $(TARGET_DIR)/usr/bin/xml2-config + rm -f $(TARGET_DIR)/usr/lib/xml2Conf.sh endef LIBXML2_POST_INSTALL_TARGET_HOOKS += LIBXML2_REMOVE_CONFIG_SCRIPTS endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-10-18 20:15:21
|
Revision: 6770 http://sourceforge.net/p/astlinux/code/6770 Author: abelbeck Date: 2014-10-18 20:15:12 +0000 (Sat, 18 Oct 2014) Log Message: ----------- libxml2, version bump to 2.9.2, security fixes: CVE-2014-3660, CVE-2014-0191 Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2014-10-16 15:48:26 UTC (rev 6769) +++ branches/1.0/package/libxml2/libxml2.mk 2014-10-18 20:15:12 UTC (rev 6770) @@ -4,7 +4,7 @@ # ############################################################# -LIBXML2_VERSION = 2.9.1 +LIBXML2_VERSION = 2.9.2 LIBXML2_SITE = ftp://xmlsoft.org/libxml2 LIBXML2_INSTALL_STAGING = YES @@ -22,6 +22,7 @@ LIBXML2_POST_INSTALL_STAGING_HOOKS += LIBXML2_STAGING_LIBXML2_CONFIG_FIXUP HOST_LIBXML2_DEPENDENCIES = host-pkg-config +LIBXML2_DEPENDENCIES = host-pkg-config HOST_LIBXML2_CONF_OPT = --without-debug --without-python This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2014-10-19 15:07:25
|
Revision: 6772 http://sourceforge.net/p/astlinux/code/6772 Author: abelbeck Date: 2014-10-19 15:07:21 +0000 (Sun, 19 Oct 2014) Log Message: ----------- libxml2, build fix from upstream Buildroot Ref: http://git.buildroot.net/buildroot/commit/package?id=91709de4175a27bc5cdecd4bb65b505c726e3aa1 Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2014-10-18 20:17:47 UTC (rev 6771) +++ branches/1.0/package/libxml2/libxml2.mk 2014-10-19 15:07:21 UTC (rev 6772) @@ -36,7 +36,7 @@ ifeq ($(BR2_PACKAGE_ZLIB),y) LIBXML2_DEPENDENCIES += zlib -LIBXML2_CONF_OPT += --with-zlib +LIBXML2_CONF_OPT += --with-zlib=$(STAGING_DIR)/usr else LIBXML2_CONF_OPT += --without-zlib endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-05-23 21:42:24
|
Revision: 7682 http://sourceforge.net/p/astlinux/code/7682 Author: abelbeck Date: 2016-05-23 21:42:22 +0000 (Mon, 23 May 2016) Log Message: ----------- libxml2, version bump to 2.9.4, Fixes a bunch of security issues including: CVE-2016-1762: Heap-based buffer overread in xmlNextChar CVE-2016-1834: heap-buffer-overflow in xmlStrncat CVE-2016-3705: Missing increments of recursion depth counter to XML parser Modified Paths: -------------- branches/1.0/package/libxml2/libxml2.mk Modified: branches/1.0/package/libxml2/libxml2.mk =================================================================== --- branches/1.0/package/libxml2/libxml2.mk 2016-05-20 15:15:36 UTC (rev 7681) +++ branches/1.0/package/libxml2/libxml2.mk 2016-05-23 21:42:22 UTC (rev 7682) @@ -4,7 +4,7 @@ # ############################################################# -LIBXML2_VERSION = 2.9.3 +LIBXML2_VERSION = 2.9.4 LIBXML2_SITE = ftp://xmlsoft.org/libxml2 LIBXML2_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |