aboutsummaryrefslogtreecommitdiff
path: root/utils/tcsh
Commit message (Collapse)AuthorAge
* 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>
* tcsh: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | tcsh requires host-tool (gethost) to generate tc.defs.c file. To build this tool on macos, it is required to run ./configure script wihout target vars/flags, but this package is not splitted to host and target build. This patch splits build to host and target builds to compile host-tool(gethost) first, then compile tsch. Due to lack of support of separate building host and target, OpenWrt Makefile is modified to do it in the order below: 1. build host-tool (gethost) 2. build sh.err.h header for target 3. build tc.const.h header for target 4. copy gethost tool from host staging dir to target build dir 5. touch (make -t) gethost to protect it from recompiling 6. build tsch for target It is required to do step 2 and 3 because 'make -t' generates empty files but these files required to build tcsh Patch 020-cross.patch has been removed due to not required anymore (gethost build is separated and not affected by target configure flags and vars) Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* tcsh: update to 6.22.04Rosen Penev2021-06-04
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tcsh: update to 6.22.03Rosen Penev2020-12-01
| | | | | | | | Remove upstreamed patch Refresh others. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tcsh: fix compilation with GCC10Rosen Penev2020-07-02
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* tcsh: Update to 6.22.02Rosen Penev2020-01-05
| | | | | | | | | | | | | | Updated URL list. Changed to HTTPS also. Added PKG_BUILD_PARALLEL for faster compilation. Added PKG_INSTALL as is standard with most packages. Small optimization to shell script. Added two patches to fix compilation. Refreshed the other one. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* tcsh: fix out of memory crashNuno Goncalves2017-10-26
| | | | Signed-off-by: Nuno Goncalves <nunojpg@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>
* tcsh: bump to version 6.20Nuno Goncalves2016-11-28
| | | | Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* tcsh: bump to version 6.19.01Nuno Goncalves2016-11-12
| | | | Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* tcsh: move to Shells submenuAlberto Bursi2016-10-24
| | | | | Part of a wider housekeeping effort on the packages repository. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
* tcsh: remove patches as they are now upstreamNuno Goncalves2016-10-14
| | | | Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* tcsh: fix out of memory error with muslNuno Goncalves2015-07-18
| | | | | | Since __GLIBC__ is no longer defined under musl, we must hard patch it. Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* tcsh: add source mirrorsNuno Goncalves2015-07-11
| | | | Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* tcsh: fix musl compatibilityJo-Philipp Wich2015-06-18
| | | | | | | Avoid using `union wait` under musl as it does not provide this definition. Implement solution suggested by http://www.openwall.com/lists/musl/2013/06/21/4 Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* tcsh: update to 6.19.00Nuno Goncalves2015-05-25
| | | | Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
* misc: correct typo in Makefiles for PKG_LICENSE_FILESIan Leonard2014-11-24
| | | | Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* tcsh: move to github, bump version to 6.18.01Nuno Goncalves2014-09-16
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>