aboutsummaryrefslogtreecommitdiff
path: root/utils/tar
Commit message (Collapse)AuthorAge
* tar: update to 1.35krant2024-02-02
| | | | Signed-off-by: krant <aleksey.vasilenko@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* tar: add PKG_CONFIG_DEPENDSRosen Penev2022-07-28
| | | | | | fixes compilation when deselecting options. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tar: update to 1.34Rosen Penev2021-02-28
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tar: alternatives instead of postinstHuangbin Zhan2020-06-23
| | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* tar: Add zstd capabilityRosen Penev2019-07-22
| | | | | | Small cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tar: update to version 1.32Daniel Golle2019-03-10
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* tar: Update to 1.31Rosen Penev2019-01-28
| | | | | | | | | 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>
* tar: update to v1.30Álvaro Fernández Rojas2017-12-31
| | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | 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>
* utils/tar: Fix tar build dependency and CVE-2016-6321Daniel Dickinson2016-12-27
| | | | | | | 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>
* utils/tar: Default to acl and xattr support if it's core defaultDaniel Dickinson2016-06-19
| | | | | | | 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>
* utils/tar: Fix defaulting to selecting dependenciesDaniel Dickinson2016-06-02
| | | | | | | | 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>
* tar: update to v1.29Álvaro Fernández Rojas2016-06-01
| | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* utils/tar: Make compression, acl, and xattr support configuration optionsDaniel Dickinson2016-05-16
| | | | | | | | | | | | | | | | | | | | 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>
* tar: add libacl and libattr dependenciesÁlvaro Fernández Rojas2015-03-10
| | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* tar: import from oldpackages and upgrade to 1.28Álvaro Fernández Rojas2015-03-09
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>