Commit Graph

17 Commits

Author SHA1 Message Date
krant 9df1acff08 tar: update to 1.35
Signed-off-by: krant <aleksey.vasilenko@gmail.com>
2024-02-02 17:55:01 +08: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 9668b2886a tar: add PKG_CONFIG_DEPENDS
fixes compilation when deselecting options.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-07-28 14:18:00 -07:00
Rosen Penev 9fed947615 tar: update to 1.34
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-02-28 18:34:08 -08:00
Huangbin Zhan 48ef683087 tar: alternatives instead of postinst
Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
2020-06-23 22:43:40 +08:00
Rosen Penev c53ed17fd5
tar: Add zstd capability
Small cleanups.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-07-22 19:46:20 -07:00
Daniel Golle a258aa1cbe tar: update to version 1.32
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2019-03-10 21:37:01 +01:00
Rosen Penev ffec2cdfbf
tar: Update to 1.31
Fixes CVE-2018-20482

Added PKG_BUILD_PARALLEL for faster compilation.

Added PKG_CPE_ID for proper CVE tracking.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-01-28 16:45:58 -08:00
Álvaro Fernández Rojas fe3aae91ff tar: update to v1.30
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2017-12-31 18:44:53 +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
Daniel Dickinson d811a84077 utils/tar: Fix tar build dependency and CVE-2016-6321
Should be PKG_BUILD_DEPENDS not BUILD_DEPENDS

Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2016-12-27 19:52:56 +01:00
Daniel Dickinson 8d4f5d8bda utils/tar: Default to acl and xattr support if it's core default
If we've enable POSIX ACL's and XATTR support as the default, then
make tar build with such support by default as well.

Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
2016-06-19 17:34:43 -04:00
Daniel Dickinson 7a492968d6 utils/tar: Fix defaulting to selecting dependencies
Due to KConfig misbehavior the tar config options where getting
enabled even when tar was not enabled.  We fix this by enclosing
the options in an if PACKAGE_tar ; endif block.

Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
2016-06-02 08:09:43 -04:00
Álvaro Fernández Rojas 10273da243 tar: update to v1.29
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2016-06-01 17:51:40 +02:00
Daniel Dickinson 488be84075 utils/tar: Make compression, acl, and xattr support configuration options
This patch make building tar with POSIX ACL and XATTR
support configuration options.  It also makes building
seamless (e.g. -z -J -j) compression support a configuration
option for each compression program available in OpenWrt.

It also makes POSIX ACL support disabled by default
(by default OpenWrt doesn't build POSIX ACL support
into the kernel, never mind allowing to mount with it
enabled).  Also XATTR support is disabled by
default as this seems to be the standard default for packages
in OpenWrt.

Finally Bzip2, Gzip, and XZ seamless support are made
available by default and appropriate dependencies
are added based on the configuration choice.

Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
2016-05-16 04:23:30 -04:00
Álvaro Fernández Rojas 8d196b7c4f tar: add libacl and libattr dependencies
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2015-03-10 23:46:24 +01:00
Álvaro Fernández Rojas 94e7fbdda1 tar: import from oldpackages and upgrade to 1.28
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2015-03-09 19:57:57 +01:00