From caf2ab75b22eb1e6ebf404cc251e0ee0fac370bc Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Fri, 7 Mar 2025 19:37:13 -0600 Subject: [PATCH 1/3] Initial commit for rapidyaml --- packages/r/rapidyaml/MAINTAINERS.md | 5 +++++ packages/r/rapidyaml/monitoring.yaml | 7 +++++++ packages/r/rapidyaml/package.yml | 23 +++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 packages/r/rapidyaml/MAINTAINERS.md create mode 100644 packages/r/rapidyaml/monitoring.yaml create mode 100644 packages/r/rapidyaml/package.yml diff --git a/packages/r/rapidyaml/MAINTAINERS.md b/packages/r/rapidyaml/MAINTAINERS.md new file mode 100644 index 000000000000..25dd1fc3c47c --- /dev/null +++ b/packages/r/rapidyaml/MAINTAINERS.md @@ -0,0 +1,5 @@ +This file is used to indicate primary maintainership for this package. A package may list more than one maintainer to avoid bus factor issues. People on this list may be considered “subject-matter experts”. Please note that Solus staff may need to perform necessary rebuilds, upgrades, or security fixes as part of the normal maintenance of the Solus package repository. If you believe this package requires an update, follow documentation from https://help.getsol.us/docs/packaging/procedures/request-a-package-update. In the event that this package becomes insufficiently maintained, the Solus staff reserves the right to request a new maintainer, or deprecate and remove this package from the repository entirely. + +- Tracey Clark + - Email: traceyc.dev@tlcnet.info + - Matrix: @traceyc:matrix.org diff --git a/packages/r/rapidyaml/monitoring.yaml b/packages/r/rapidyaml/monitoring.yaml new file mode 100644 index 000000000000..2f0e42390951 --- /dev/null +++ b/packages/r/rapidyaml/monitoring.yaml @@ -0,0 +1,7 @@ +# Remove all comments before submitting, except CPE check date if none found +releases: + id: ~ # Check https://release-monitoring.org/ + rss: ~ # For example https://github.com/PyO3/maturin/releases.atom +# No known CPE, checked 2025-03-07 +security: + cpe: ~ diff --git a/packages/r/rapidyaml/package.yml b/packages/r/rapidyaml/package.yml new file mode 100644 index 000000000000..6d5acfa52d46 --- /dev/null +++ b/packages/r/rapidyaml/package.yml @@ -0,0 +1,23 @@ +name : rapidyaml +version : 0.8.0 +release : 1 +source : + - https://github.com/biojppm/rapidyaml/archive/refs/tags/v0.8.0.tar.gz : 6df750751fa608d6e6226bb3b91b0415236ee2377a02952b86c022ebb08e98c9 +homepage : https://github.com/biojppm/rapidyaml +license : MIT +component : + - programming.library + - # qt5 : programming.library + - # qt6 : programming.library +summary : Rapid YAML is a C++ library for parsing and generating YAML +description: | + Rapid YAML or ryml, for short. ryml is a C++ library to parse and emit YAML, and do it fast, on everything from x64 to bare-metal chips without operating system. +setup : | + %cmake_ninja +build : | + %ninja_build +profile : | + %ninja_check +install : | + %ninja_install + mv $installdir/usr/lib $installdir/%libdir% From 1806180c352c941e129986b49d7b75f3474aceb1 Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Mon, 7 Jul 2025 20:10:36 -0500 Subject: [PATCH 2/3] Update for 0.9.0 and change to git source --- packages/r/rapidyaml/package.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/packages/r/rapidyaml/package.yml b/packages/r/rapidyaml/package.yml index 6d5acfa52d46..fabdca530c96 100644 --- a/packages/r/rapidyaml/package.yml +++ b/packages/r/rapidyaml/package.yml @@ -1,23 +1,26 @@ name : rapidyaml -version : 0.8.0 +version : 0.9.0 release : 1 source : - - https://github.com/biojppm/rapidyaml/archive/refs/tags/v0.8.0.tar.gz : 6df750751fa608d6e6226bb3b91b0415236ee2377a02952b86c022ebb08e98c9 + - https://github.com/biojppm/rapidyaml/releases/download/v0.9.0/rapidyaml-0.9.0-src.tgz : e01c66b21dfbe3d7382ecab3dfe7efcdc47a068cd25fcc8279e8f462f69c995d homepage : https://github.com/biojppm/rapidyaml license : MIT component : - programming.library - - # qt5 : programming.library - - # qt6 : programming.library summary : Rapid YAML is a C++ library for parsing and generating YAML description: | Rapid YAML or ryml, for short. ryml is a C++ library to parse and emit YAML, and do it fast, on everything from x64 to bare-metal chips without operating system. +builddeps : + - pkgconfig(python3) + - python-setuptools + - swig + - git setup : | - %cmake_ninja + %cmake_ninja -DRYML_STANDALONE=ON -DRYML_DEV=OFF -DRYML_INSTALL=ON build : | %ninja_build profile : | %ninja_check -install : | +install : |- %ninja_install mv $installdir/usr/lib $installdir/%libdir% From 6d87bf4dcfa7c389647ac34b837985f46f66e3a6 Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Thu, 9 Oct 2025 20:42:50 -0500 Subject: [PATCH 3/3] fixup! Update for 0.9.0 and change to git source --- .../{r/rapidyaml => py/python-rapidyaml}/MAINTAINERS.md | 0 .../{r/rapidyaml => py/python-rapidyaml}/monitoring.yaml | 0 .../{r/rapidyaml => py/python-rapidyaml}/package.yml | 9 ++++++++- 3 files changed, 8 insertions(+), 1 deletion(-) rename packages/{r/rapidyaml => py/python-rapidyaml}/MAINTAINERS.md (100%) rename packages/{r/rapidyaml => py/python-rapidyaml}/monitoring.yaml (100%) rename packages/{r/rapidyaml => py/python-rapidyaml}/package.yml (73%) diff --git a/packages/r/rapidyaml/MAINTAINERS.md b/packages/py/python-rapidyaml/MAINTAINERS.md similarity index 100% rename from packages/r/rapidyaml/MAINTAINERS.md rename to packages/py/python-rapidyaml/MAINTAINERS.md diff --git a/packages/r/rapidyaml/monitoring.yaml b/packages/py/python-rapidyaml/monitoring.yaml similarity index 100% rename from packages/r/rapidyaml/monitoring.yaml rename to packages/py/python-rapidyaml/monitoring.yaml diff --git a/packages/r/rapidyaml/package.yml b/packages/py/python-rapidyaml/package.yml similarity index 73% rename from packages/r/rapidyaml/package.yml rename to packages/py/python-rapidyaml/package.yml index fabdca530c96..562882006a0b 100644 --- a/packages/r/rapidyaml/package.yml +++ b/packages/py/python-rapidyaml/package.yml @@ -1,8 +1,10 @@ -name : rapidyaml +name : python-rapidyaml version : 0.9.0 release : 1 source : - https://github.com/biojppm/rapidyaml/releases/download/v0.9.0/rapidyaml-0.9.0-src.tgz : e01c66b21dfbe3d7382ecab3dfe7efcdc47a068cd25fcc8279e8f462f69c995d + - git|https://github.com/biojppm/c4core.git : v0.2.7 + - git|https://github.com/biojppm/cmake.git : 889b315fd9931a961beca0af7df0fe8d96754a5f #c4core-cmake homepage : https://github.com/biojppm/rapidyaml license : MIT component : @@ -15,6 +17,11 @@ builddeps : - python-setuptools - swig - git +environment: | + # c4core + export POETRY_VIRTUALENVS_CREATE=false + # Flutter + export PATH="$PATH:$sources/flutter/bin" setup : | %cmake_ninja -DRYML_STANDALONE=ON -DRYML_DEV=OFF -DRYML_INSTALL=ON build : |