summaryrefslogtreecommitdiff
path: root/dev-cpp/ada/ada-2.9.1.ebuild
diff options
context:
space:
mode:
authorEsteve Varela Colominas <esteve.varela@gmail.com>2024-08-31 01:08:57 +0200
committerYixun Lan <dlan@gentoo.org>2024-09-04 02:30:56 +0000
commitec541f19a6b9df6e094e22de608cdd0697a7e4e9 (patch)
treed6bdd994588aaaa2bfdaf08029205879e208f9cc /dev-cpp/ada/ada-2.9.1.ebuild
parent1cb4cb75ba262928bd283747912cc68868b2f855 (diff)
downloadgentoo-ec541f19a6b9df6e094e22de608cdd0697a7e4e9.tar.gz
gentoo-ec541f19a6b9df6e094e22de608cdd0697a7e4e9.tar.bz2
gentoo-ec541f19a6b9df6e094e22de608cdd0697a7e4e9.zip
dev-cpp/ada: New package version 2.9.1
Signed-off-by: Esteve Varela Colominas <esteve.varela@gmail.com> Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-cpp/ada/ada-2.9.1.ebuild')
-rw-r--r--dev-cpp/ada/ada-2.9.1.ebuild26
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-cpp/ada/ada-2.9.1.ebuild b/dev-cpp/ada/ada-2.9.1.ebuild
new file mode 100644
index 000000000000..c87e72f6e853
--- /dev/null
+++ b/dev-cpp/ada/ada-2.9.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2024 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"
+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
+}