aboutsummaryrefslogtreecommitdiff
path: root/libs/poco
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>
* poco: switch to building with cmakeRosen Penev2021-10-21
| | | | | | | | Faster and works with mips64 targets. Removed all options as the defaults are updated. Added new dependencies. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* poco: update to 1.11.0Rosen Penev2021-08-15
| | | | | | Refresh patches and fix strerror one. uClibc also defines __GLIBC__. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* poco: update to 1.10.1Rosen Penev2021-04-02
| | | | | | | | Switch to AUTORELEASE for simplicity. Move MAINTAINER line up for consistency. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* poco: Added changes to InstallDev section and conditions for poco libs.Jakub Jalowiczor2019-10-21
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* poco: Minor changesJakub Jalowiczor2019-10-09
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* poco: A new variant of poco library poco-allJakub Jalowiczor2019-10-09
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* poco: Minor changesJakub Jalowiczor2019-10-07
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* poco: Package version changedJakub Jalowiczor2019-10-07
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* poco: Changed poco version to all, and from minimal build to typical.Jakub Jalowiczor2019-10-07
| | | | Signed-off-by: Jakub Jalowiczor <jaluwka@gmail.com>
* treewide: add PKG_CPE_ID for cvescannerJan Pavlinec2019-09-24
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* poco: Do not build on ARCRosen Penev2019-06-18
| | | | | | Not supported. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* poco: Update to 1.9.0Rosen Penev2018-11-19
| | | | | | Some minor adjustments. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* poco: update to version 1.8.1Jan Pavlinec2018-03-19
| | | | | | | Fix CVE-2017-1000472 - https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-1000472 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* 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>
* libs/poco: Use bz2 tarball instead of gzDaniel Engberg2017-01-10
| | | | | | | Use bz2 instead of gz tarball, saves about 900kbyte in size Do minor adjustments to download URL Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* poco: update to 1.7.7Jean-Michel Julien2017-01-04
| | | | | | Update package to latest stable version (1.7.7) Signed-off-by Jean-Michel Julien <jean-michel.julien@trilliantinc.com>
* poco: update to 1.7.5jmjulien2016-09-20
| | | | | | Update package to latest stable version (1.7.5) Signed-off-by Jean-Michel Julien <jean-michel.julien@trilliantinc.com>
* poco: update to 1.7.3jmjulien2016-05-10
| | | | | | Update package to latest stable version (1.7.3) Signed-off-by: Jean-Michel Julien <jean-michel.julien@trilliantinc.com>
* Drop the redundant -r option to $(CP)Yousong Zhou2016-03-12
| | | | | | | | | $(CP) was defined as `cp -fpR' since the very begining of OpenWrt build system (2006-06-22). The -R option should be enough and base packages use only $(CP) for the same purposes just fine and BSD manual of cp also discourages the use of `-r' option. So let's just tidy up the usage now. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* poco:add package for the Poco C++ libraryjmjulien2016-03-11
POrtable COmponents is a Modern, powerful open source C++ class libraries for building network- and internet-based applications that run on desktop, server, mobile and embedded systems. Original Makefile --> https://dev.openwrt.org/browser/packages/libs/poco/Makefile add license add maintainer update URL to latest github stable version (1.7.0) change patch to the configure file add a patch to build with musl-libc Signed-off-by: Jean-Michel Julien <jean-michel.julien@trilliantinc.com>