From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9610E15ACFC for ; Sun, 30 Apr 2023 17:30:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAFD9E07E6; Sun, 30 Apr 2023 17:30:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5A3EE07E6 for ; Sun, 30 Apr 2023 17:30:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74FFB341277 for ; Sun, 30 Apr 2023 17:30:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D421CA40 for ; Sun, 30 Apr 2023 17:30:16 +0000 (UTC) From: "Laura Aléanor" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Laura Aléanor" Message-ID: <1682875630.3c688d1898cb446a014d77b05b5db0cddfa33392.lav@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/gnu-apl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/gnu-apl/Manifest dev-lang/gnu-apl/gnu-apl-1.8.ebuild dev-lang/gnu-apl/metadata.xml X-VCS-Directories: dev-lang/gnu-apl/ X-VCS-Committer: lav X-VCS-Committer-Name: Laura Aléanor X-VCS-Revision: 3c688d1898cb446a014d77b05b5db0cddfa33392 X-VCS-Branch: dev Date: Sun, 30 Apr 2023 17:30:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c84e85de-924b-4511-84b3-6e96b8e2962d X-Archives-Hash: 8aa1277513eb753904d254d95c8ddfd7 commit: 3c688d1898cb446a014d77b05b5db0cddfa33392 Author: Laura Aino Violetta Aléanor vampires gay> AuthorDate: Sun Apr 30 17:27:10 2023 +0000 Commit: Laura Aléanor vampires gay> CommitDate: Sun Apr 30 17:27:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c688d18 dev-lang/gnu-apl: new package, add 1.8 Signed-off-by: Laura Aino Violetta Aléanor vampires.gay> dev-lang/gnu-apl/Manifest | 1 + dev-lang/gnu-apl/gnu-apl-1.8.ebuild | 32 ++++++++++++++++++++++++++++++++ dev-lang/gnu-apl/metadata.xml | 17 +++++++++++++++++ 3 files changed, 50 insertions(+) diff --git a/dev-lang/gnu-apl/Manifest b/dev-lang/gnu-apl/Manifest new file mode 100644 index 000000000..68ef3529c --- /dev/null +++ b/dev-lang/gnu-apl/Manifest @@ -0,0 +1 @@ +DIST apl-1.8.tar.gz 3565018 BLAKE2B fb1ff3a0c1b22fbd0b03f270d6fdc2d5a5efb83aa7d5ad675d8a6b40b4446663a3f76e80602491c621404d9283bda5ccd146f82bbda7f088f279662e0e3d01e1 SHA512 7b903f2d280bba85fd4efb7c5f26e969930c34fdf4667b93adc445521b2eb19cba54f602d823ed56d31d6d596ffce29479c870a110a41f91aa5b7e1747000b54 diff --git a/dev-lang/gnu-apl/gnu-apl-1.8.ebuild b/dev-lang/gnu-apl/gnu-apl-1.8.ebuild new file mode 100644 index 000000000..e609889d2 --- /dev/null +++ b/dev-lang/gnu-apl/gnu-apl-1.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022-2023 Laura Aléanor +# Distributed under the terms of the GNU General Public License v3 or later + +EAPI=8 + +DESCRIPTION="GNU interpreter for the APL programming language" +HOMEPAGE="https://www.gnu.org/software/apl/" +SRC_URI="mirror://gnu/apl/apl-${PV}.tar.gz" +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/apl-${PV}" + +IUSE="static-libs erlang libapl python gtk3 pcre2 sqlite3 postgresql" + +RDEPEND="gtk3? ( >=gui-libs/gtk-3.0.0 ) + sqlite3? ( >=dev-db/sqlite-3.0.0 ) + postgresql? ( dev-db/postgresql ) + pcre2? ( dev-libs/libpcre2 )" + +src_configure () { + econf $(use_enable static-libs static)\ + $(use erlang && echo --with-erlang)\ + $(use libapl && echo --with-libapl)\ + $(use python && echo --with-python)\ + $(use gtk3 && echo --with-gtk3)\ + $(use pcre2 && echo --with-pcre)\ + $(use sqlite3 && echo --with-sqlite3)\ + $(use postgresql && echo --with-postgresql)\ + CXX_WERROR=no +} diff --git a/dev-lang/gnu-apl/metadata.xml b/dev-lang/gnu-apl/metadata.xml new file mode 100644 index 000000000..e89cbe0a8 --- /dev/null +++ b/dev-lang/gnu-apl/metadata.xml @@ -0,0 +1,17 @@ + + + + + lav@vampires.gay + Laura Aléanor + + + Build the Erlang interface + Build the Python extension lib_gnu_apl.so + Include the interface to gtk3 + Build as a shared library rather than an executable + Enable pcre2 + Use postrgesql + Use sqlite3 + +