aboutsummaryrefslogtreecommitdiff
path: root/libs/libcoap
Commit message (Collapse)AuthorAge
* treewide: assign PKG_CPE_IDFabrice Fontaine2024-02-04
| | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@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>
* libcoap: make sure `libcoap-3-notls.so` is installedLeo Soares2022-05-20
| | | | | | | | This commit fixes an issue where the `libcoap-3-notls.so` is not installed, in some cases leaving the target's root with no library and just a broken link from `libcoap-3.so` to `libcoap-3-notls.so`. Signed-off-by: Leo Soares <leo@hyper.ag>
* libcoap: update to 4.3.0Rosen Penev2021-09-26
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libcoap: update to 4.2.1Rosen Penev2020-02-14
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* libcoap: Update to 4.2.0 and switch to codeloadRosen Penev2019-06-03
| | | | | | | | | | Simplifies the Makefile. Added PKG_BUILD_PARALLEL for faster compilation. Added ABI_VERSION parameter to handle package updates. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libcoap: update to v4.1.2Hans Dedecker2017-09-18
| | | | | | | Update libcoap to latest stable version 4.1.2 While at it switch from tar extension bz2 to xz Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
* libcoap: add coap client and server packagesHans Dedecker2017-09-14
| | | | | | | | | | | Client package adds the CoAP client allowing to communicate with 6LoWPAN devices via the CoAP protocol. Server package adss the CoAP server and the CoAP Resource Directory server. The CoAP server allows to simulate 6LoWPAN devices which can be addressed via the CoAP protocol while the CoAP Resource Directory server can handle resource registrations using the CoAP protocol. Signed-off-by: Hans Dedecker <dedeckeh@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>
* libcoap: fix PKG_BUILD_DIRHauke Mehrtens2016-12-25
| | | | | | | | | | | libcoap is not building in LEDE any more because it is extracted to /libcoap/ and the package makefiles try to access it at /libcoap-2da31de732c0e51a9bc9e1d4aea21e25da89cf87/. This patch defines a PKG_BUILD_DIR variable to make it use /libcoap/ without the hash. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* Treewide fix of typo: PKG_LICENSE_FILE --> PKG_LICENSE_FILESMichael Heimpold2016-09-03
| | | | | | Without the trailing _S_ the variable is not considered at all. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* libcoap: Pass endian flags down to targetKarl Palsson2015-10-14
| | | | | | Fixes github issue #1856 Signed-off-by: Karl Palsson <karlp@tweak.net.au>
* libcoap: Add new packageAnton Glukhov2015-10-01
Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com>