mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-scheme/guile-gi: new package; add version 0.3.1 and live
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
1
dev-scheme/guile-gi/Manifest
Normal file
1
dev-scheme/guile-gi/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST guile-gi-0.3.1.tar.gz 345440 BLAKE2B 17c4ecda48951244d427098767072621278750614919f13d1b03b7ecda5f06b2274c7db50c4288b4bfe581cd852e80cd1d4137b5ccc0e18d0e23866e1eba323a SHA512 b866df95946069cad606bc8f7e7c988665029482bcb986109d652728023151a5e60ee39e86635b9f0b9f0d4d3a9cd72f39b65ee983438f71dff186994e3af197
|
||||
55
dev-scheme/guile-gi/guile-gi-0.3.1.ebuild
Normal file
55
dev-scheme/guile-gi/guile-gi-0.3.1.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Bindings for GObject Introspection and libgirepository for Guile"
|
||||
HOMEPAGE="https://spk121.github.io/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
|
||||
x11-libs/gtk+:3[introspection]
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
# guile generates ELF files without use of C or machine code
|
||||
# It's a portage's false positive. bug #677600
|
||||
QA_PREBUILT='*[.]go'
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
|
||||
find "${S}" -name "*.scm" -exec touch {} + || die
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf --enable-introspection="yes"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
|
||||
}
|
||||
55
dev-scheme/guile-gi/guile-gi-9999.ebuild
Normal file
55
dev-scheme/guile-gi/guile-gi-9999.ebuild
Normal file
@@ -0,0 +1,55 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="Bindings for GObject Introspection and libgirepository for Guile"
|
||||
HOMEPAGE="https://spk121.github.io/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
|
||||
x11-libs/gtk+:3[introspection]
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
# guile generates ELF files without use of C or machine code
|
||||
# It's a portage's false positive. bug #677600
|
||||
QA_PREBUILT='*[.]go'
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
|
||||
find "${S}" -name "*.scm" -exec touch {} + || die
|
||||
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf --enable-introspection="yes"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${PF}" || die
|
||||
}
|
||||
23
dev-scheme/guile-gi/metadata.xml
Normal file
23
dev-scheme/guile-gi/metadata.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>scheme@gentoo.org</email>
|
||||
<name>Gentoo Scheme Project</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
This is a library for GNU Guile to create language bindings via GObject
|
||||
Introspection.
|
||||
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.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<bugs-to>https://github.com/spk121/guile-gi/issues/</bugs-to>
|
||||
<remote-id type="github">spk121/guile-gi</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user