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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0320A1382C5 for ; Thu, 18 Mar 2021 22:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 453CCE08A2; Thu, 18 Mar 2021 22:43:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18180E08A2 for ; Thu, 18 Mar 2021 22:43:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62598335DEF for ; Thu, 18 Mar 2021 22:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2FFF4A8 for ; Thu, 18 Mar 2021 22:43:11 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1616107229.60a12f04753f3f5478b8769ba7c35482b86bec65.xgqt@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-scheme/guile-gi/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-scheme/guile-gi/Manifest dev-scheme/guile-gi/guile-gi-0.3.1.ebuild dev-scheme/guile-gi/guile-gi-9999.ebuild dev-scheme/guile-gi/metadata.xml X-VCS-Directories: dev-scheme/guile-gi/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 60a12f04753f3f5478b8769ba7c35482b86bec65 X-VCS-Branch: dev Date: Thu, 18 Mar 2021 22:43:11 +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: e06c379e-70ec-48c4-84a5-ee8eab2be830 X-Archives-Hash: 482d9225b2032002facf0a007df088b3 commit: 60a12f04753f3f5478b8769ba7c35482b86bec65 Author: Maciej Barć riseup net> AuthorDate: Thu Mar 18 22:40:27 2021 +0000 Commit: Maciej Barć protonmail com> CommitDate: Thu Mar 18 22:40:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60a12f04 dev-scheme/guile-gi: new pkg; add 0.3.1 and live Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Maciej Barć riseup.net> dev-scheme/guile-gi/Manifest | 1 + dev-scheme/guile-gi/guile-gi-0.3.1.ebuild | 52 +++++++++++++++++++++++++++++++ dev-scheme/guile-gi/guile-gi-9999.ebuild | 52 +++++++++++++++++++++++++++++++ dev-scheme/guile-gi/metadata.xml | 24 ++++++++++++++ 4 files changed, 129 insertions(+) diff --git a/dev-scheme/guile-gi/Manifest b/dev-scheme/guile-gi/Manifest new file mode 100644 index 00000000..073a4bf2 --- /dev/null +++ b/dev-scheme/guile-gi/Manifest @@ -0,0 +1 @@ +DIST guile-gi-0.3.1.tar.gz 345440 BLAKE2B 17c4ecda48951244d427098767072621278750614919f13d1b03b7ecda5f06b2274c7db50c4288b4bfe581cd852e80cd1d4137b5ccc0e18d0e23866e1eba323a SHA512 b866df95946069cad606bc8f7e7c988665029482bcb986109d652728023151a5e60ee39e86635b9f0b9f0d4d3a9cd72f39b65ee983438f71dff186994e3af197 diff --git a/dev-scheme/guile-gi/guile-gi-0.3.1.ebuild b/dev-scheme/guile-gi/guile-gi-0.3.1.ebuild new file mode 100644 index 00000000..5b3da487 --- /dev/null +++ b/dev-scheme/guile-gi/guile-gi-0.3.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Bindings for GObject Introspection and libgirepository for Guile" +HOMEPAGE="https://github.com/spk121/guile-gi" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/spk121/${PN}.git" +else + SRC_URI="https://github.com/spk121/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +# Tests fail +RESTRICT="strip test" +LICENSE="GPL-3" +SLOT="0" + +BDEPEND=" + sys-apps/texinfo +" +DEPEND=" + >=dev-scheme/guile-2.0.9 + dev-libs/gobject-introspection +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + find "${S}" -name "*.scm" -exec touch {} + || die +} + +src_configure() { + sh ./bootstrap || die + + local myconf=( + --enable-introspection="yes" + --enable-hardening + ) + econf "${myconf[@]}" +} + +src_install() { + default + + mv "${D}/usr/share/doc/${PN}"/* "${D}/usr/share/doc/${PF}" || die + rm -r "${D}/usr/share/doc/${PN}" || die +} diff --git a/dev-scheme/guile-gi/guile-gi-9999.ebuild b/dev-scheme/guile-gi/guile-gi-9999.ebuild new file mode 100644 index 00000000..5b3da487 --- /dev/null +++ b/dev-scheme/guile-gi/guile-gi-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Bindings for GObject Introspection and libgirepository for Guile" +HOMEPAGE="https://github.com/spk121/guile-gi" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/spk121/${PN}.git" +else + SRC_URI="https://github.com/spk121/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +# Tests fail +RESTRICT="strip test" +LICENSE="GPL-3" +SLOT="0" + +BDEPEND=" + sys-apps/texinfo +" +DEPEND=" + >=dev-scheme/guile-2.0.9 + dev-libs/gobject-introspection +" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + find "${S}" -name "*.scm" -exec touch {} + || die +} + +src_configure() { + sh ./bootstrap || die + + local myconf=( + --enable-introspection="yes" + --enable-hardening + ) + econf "${myconf[@]}" +} + +src_install() { + default + + mv "${D}/usr/share/doc/${PN}"/* "${D}/usr/share/doc/${PF}" || die + rm -r "${D}/usr/share/doc/${PN}" || die +} diff --git a/dev-scheme/guile-gi/metadata.xml b/dev-scheme/guile-gi/metadata.xml new file mode 100644 index 00000000..04839c41 --- /dev/null +++ b/dev-scheme/guile-gi/metadata.xml @@ -0,0 +1,24 @@ + + + + + xgqt@riseup.net + Maciej Barć + + + This is a library for GNU Guile to create language bindings + via GObject Introspection. + This is beta code. It is only partially documented. The API is + stabilizing, but may still be subject to change. + Guile GI has two primary components: + - The gi scheme modules: guile modules that provide functionality + to dynamically generate Scheme API from GObject typelib files. + - libguile-gi.so or libguile-gi.dll: a compiled module that contains + glue code to interface with GObject. + To create bindings, use the use-typelibs syntax found in + the (gi) library. + + + spk121/guile-gi + +