aboutsummaryrefslogtreecommitdiff
path: root/lang/lua-openssl
Commit message (Collapse)AuthorAge
* treewide: refresh hashes after move to use ZSTD as defaultRobert Marko2024-04-07
| | | | | | | | With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
* lua-openssl: Update to version 0.8.5-1Amnon Paz2023-10-03
| | | | Signed-off-by: Amnon Paz <pazamnon@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>
* lua-openssl: update to version 0.8.2-1Maciej Krüger2022-05-26
| | | | Signed-off-by: Maciej Krüger <mkg20001@gmail.com>
* lua-openssl: update to 0.8.0-6Rosen Penev2021-10-15
| | | | | | Remove upstreamed patches and backport cmake fix. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* lua-openssl: try to fix buildbotRosen Penev2021-04-04
| | | | | | Something is weird there. Can't reproduce on CI or locally. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* lua-openssl: update to 0.7.8-0Rosen Penev2021-04-02
| | | | | | | | | | | Swith to building with CMake to avoid huge patching of the stock Makefile. Reorganize Makefile for consistency between packages. Add patch to fix deprecated OpenSSL functions. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* lua-openssl: Upgrade to v0.7.4Amnon Paz2019-08-01
| | | | Signed-off-by: Amnon Paz <pazamnon@gmail.com>
* treewide: fix missing/wrong MIRROR_HASH for sources from githubYousong Zhou2018-07-02
| | | | | | | | | Some of them forgot to update MIRROR_HASH on version change, others updated with wrong hash value. The new values were generated from tarballs prepared by the newly introduced github-tarball download methoded and confirmed consistent with those from sources.openwrt.org Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* lua-openssl: upgrade to version 0.7.1Eneas U de Queiroz2018-05-21
| | | | | | This version brings compatibility with openssl 1.1.0 Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.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>
* treewide: use name in define and eval linesStijn Tintel2017-03-08
| | | | | | | | | | | | | | | For consistency, use full name instead of $(PKG_NAME) in define and eval lines for all packages. I've seen reviews that asked to do this before, and I am asking the same during reviews now. To avoid this in the future, fix this treewide so when people use existing packages as example, we will not have to request this change anymore. This makes all packages consistent with both LEDE and OpenWrt base repositories. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* lua-openssl: Fix makefileAmnon Paz2016-10-30
|
* lua-openssl: Introduce new packageAmnon Paz2016-10-10
Add a Lua wrapper library for openssl. Add patches for: 1. Revise the makefile, so the package can be built under openwrt 2. Remove "lua_isinteger" implementation from the package's "compat" code in order to avoid linkage issues - An implementation already exists in the target's Lua package. 3. Support OPENSSL_NO_SSL3_METHOD & OPENSSL_NO_COMP Signed-off-by: Amnon Paz <pazamnon@gmail.com>