summaryrefslogtreecommitdiff
path: root/dev-cpp/ada/ada-3.3.0.ebuild
diff options
context:
space:
mode:
authorEsteve Varela Colominas <esteve.varela@gmail.com>2025-09-23 23:34:16 +0200
committerSam James <sam@gentoo.org>2025-09-24 02:29:22 +0100
commit1a9af02700b2d86d95264a4e1c5b13574b400c67 (patch)
tree9b735a4e2597b025b87e704e2e01174d40cc94fa /dev-cpp/ada/ada-3.3.0.ebuild
parentfc03555e1bf9f89339f1884e57fcf5c98c4a2822 (diff)
downloadgentoo-1a9af02700b2d86d95264a4e1c5b13574b400c67.tar.gz
gentoo-1a9af02700b2d86d95264a4e1c5b13574b400c67.tar.bz2
gentoo-1a9af02700b2d86d95264a4e1c5b13574b400c67.zip
dev-cpp/ada: Bump to 3.3.0
Signed-off-by: Esteve Varela Colominas <esteve.varela@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43915 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-cpp/ada/ada-3.3.0.ebuild')
-rw-r--r--dev-cpp/ada/ada-3.3.0.ebuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-cpp/ada/ada-3.3.0.ebuild b/dev-cpp/ada/ada-3.3.0.ebuild
new file mode 100644
index 000000000000..61e1ba4e5132
--- /dev/null
+++ b/dev-cpp/ada/ada-3.3.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="WHATWG-compliant and fast URL parser written in modern C++"
+HOMEPAGE="https://github.com/ada-url/ada"
+
+SRC_URI="https://github.com/ada-url/ada/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 MIT"
+SLOT="0/$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm64 ~loong ~riscv"
+RESTRICT="test"
+
+src_configure() {
+ local mycmakeargs=(
+ # Building anything other than the library requires the CPM package manager
+ # which isn't very well equipped for packaging...
+ -DADA_TESTING=NO
+ -DADA_TOOLS=NO
+ )
+ cmake_src_configure
+}