aboutsummaryrefslogtreecommitdiff
path: root/libs/libyaml-cpp
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>
* libyaml-cpp: update to 0.7.0Rosen Penev2021-07-21
| | | | | | Switch to AUTORELEASE for simplicity. 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>
* treewide: build CMake projects with NinjaRosen Penev2021-03-27
| | | | | | | | | | | | | | | | | | | | faster to compile. A small selection of packages was tested going from: Executed in 696.30 secs fish external usr time 82.98 mins 395.00 micros 82.98 mins sys time 9.02 mins 0.00 micros 9.02 mins to: Executed in 592.20 secs fish external usr time 84.84 mins 361.00 micros 84.84 mins sys time 8.85 mins 57.00 micros 8.85 mins Tested by running make -j 12 and wiping staging/build_dir/target_x 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>
* libyaml-cpp: fix compilation with libcxxRosen Penev2020-10-18
| | | | | | Added GitHub patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libyaml-cpp: Update to 0.63Rosen Penev2019-11-19
| | | | | | | | Several Makefile cleanups for consistency. Added ABI_VERSION. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libyaml-cpp: copy file matching libs sonameEneas U de Queiroz2018-12-07
| | | | | | | The soname is not set to the full version, but only major.minor. This uses libyaml-cpp.so.?.? to try to get it right. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* libyaml-cpp: Add PKD_CPE_ID for proper CVE trackingRosen Penev2018-11-29
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libyaml-cpp: Update to 0.6.2 + switch to codeloadRosen Penev2018-11-17
| | | | | | Simpler. Got rid of tests for a faster compile. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libyaml: introducing libyaml-cpp packageSteven Hessing2017-11-01
Signed-off-by: Steven Hessing <steven.hessing@gmail.com>