Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-git/
Date: Wed, 26 Feb 2020 13:27:24
Message-Id: 1582723628.3bd1a1b6a14d12cad6c98609a1cb1352201f7cea.slyfox@gentoo
1 commit: 3bd1a1b6a14d12cad6c98609a1cb1352201f7cea
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 26 13:27:08 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 26 13:27:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd1a1b6
7
8 dev-scheme/guile-git: bump up to 0.3.0
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-scheme/guile-git/Manifest | 1 +
14 dev-scheme/guile-git/guile-git-0.3.0.ebuild | 41 +++++++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/dev-scheme/guile-git/Manifest b/dev-scheme/guile-git/Manifest
18 index c809e13d6b6..415129e471b 100644
19 --- a/dev-scheme/guile-git/Manifest
20 +++ b/dev-scheme/guile-git/Manifest
21 @@ -1 +1,2 @@
22 DIST guile-git-0.2.0.tar.gz 262570 BLAKE2B 5e2f326ab3afd23acb552cddf0175094f3efa817337b06219e048766b63df2a27a8fea38866452cc3137367410cfa6b9d4f7075f0586c4f8c429a5715dc194d1 SHA512 b5267130516db995132ff5bb5a19a68ccb3483d8ba5dff1a886a8acf4ecb43adf033638e59032b7a244eb4e35f72def3f40d7d071395154416e08dd5be86edf3
23 +DIST guile-git-0.3.0.tar.gz 275273 BLAKE2B 75c7e9b89446676adfa5e81c6cfeac9df19d77d1565450fdf892c01f9ef472dafe0ee7f8c8ff888421457d8e260e6f8e02a6e846952cbbff69ef4d75a467787c SHA512 98af9106c0b5d0f01c6d9550705c58116b8a38acb3c329e08822b8b81717c7c0147cfd74314e693c803e17b476af7b2f80ed2422652bbebfcc14271b654e839d
24
25 diff --git a/dev-scheme/guile-git/guile-git-0.3.0.ebuild b/dev-scheme/guile-git/guile-git-0.3.0.ebuild
26 new file mode 100644
27 index 00000000000..1f0eb73bd07
28 --- /dev/null
29 +++ b/dev-scheme/guile-git/guile-git-0.3.0.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Guile bindings of git"
37 +HOMEPAGE="https://gitlab.com/guile-git/guile-git"
38 +SRC_URI="https://gitlab.com/guile-git/guile-git/uploads/4c563d8e7e1ff84396abe8ca7011bcaf/guile-git-${PV}.tar.gz"
39 +
40 +LICENSE="LGPL-3+"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE=""
44 +
45 +RDEPEND="
46 + >=dev-scheme/guile-2.0.11:=
47 + dev-scheme/bytestructures
48 + >=dev-libs/libgit2-0.28.0:=
49 +"
50 +DEPEND="${RDEPEND}"
51 +
52 +RESTRICT=test # Tets suite needs a fix: https://gitlab.com/guile-git/guile-git/issues/18
53 +
54 +src_prepare() {
55 + default
56 +
57 + # guile is trying to avoid recompilation by checking if file
58 + # /usr/lib64/guile/2.2/site-ccache/<foo>
59 + # is newer than
60 + # <foo>
61 + # In case it is instead of using <foo> guile
62 + # loads system one (from potentially older version of package).
63 + # To work it around we bump last modification timestamp of
64 + # '*.scm' files.
65 + # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
66 + find "${S}" -name "*.scm" -exec touch {} + || die
67 +}
68 +
69 +src_test() {
70 + emake check VERBOSE=1
71 +}