Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
Date: Thu, 03 Nov 2022 03:09:08
Message-Id: 1667437971.84dce05a355e98a0d500d2f0b4d86ce8665d0545.cybertailor@gentoo
1 commit: 84dce05a355e98a0d500d2f0b4d86ce8665d0545
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Nov 2 15:44:20 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Thu Nov 3 01:12:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84dce05a
7
8 dev-vcs/got: add missing dep
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 .../got/{got-0.77.ebuild => got-0.77-r1.ebuild} | 25 +++++++++++++---------
13 1 file changed, 15 insertions(+), 10 deletions(-)
14
15 diff --git a/dev-vcs/got/got-0.77.ebuild b/dev-vcs/got/got-0.77-r1.ebuild
16 similarity index 71%
17 rename from dev-vcs/got/got-0.77.ebuild
18 rename to dev-vcs/got/got-0.77-r1.ebuild
19 index f8642b4cf..f7846ca77 100644
20 --- a/dev-vcs/got/got-0.77.ebuild
21 +++ b/dev-vcs/got/got-0.77-r1.ebuild
22 @@ -3,8 +3,6 @@
23
24 EAPI=8
25
26 -inherit toolchain-funcs
27 -
28 MY_PN="${PN}-portable"
29 DESCRIPTION="Portable version of the Game of Trees version control system"
30 HOMEPAGE="https://gameoftrees.org"
31 @@ -16,15 +14,22 @@ SLOT="0"
32 KEYWORDS="~amd64 ~x86"
33
34 DEPEND="
35 + dev-libs/libevent:=
36 sys-libs/ncurses:=[unicode(+)]
37 sys-libs/zlib:=
38 - elibc_Darwin? ( dev-libs/ossp-uuid )
39 - elibc_SunOS? ( sys-libs/libuuid )
40 - !elibc_Darwin? ( dev-libs/libbsd )
41 - !elibc_Darwin? ( !elibc_SunOS? (
42 - app-crypt/libmd
43 - sys-apps/util-linux
44 - ) )
45 + elibc_Darwin? (
46 + dev-libs/ossp-uuid
47 + )
48 + elibc_SunOS? (
49 + sys-libs/libuuid
50 + )
51 + !elibc_Darwin? (
52 + dev-libs/libbsd
53 + !elibc_SunOS? (
54 + app-crypt/libmd
55 + sys-apps/util-linux
56 + )
57 + )
58 "
59 BDEPEND="
60 virtual/pkgconfig
61 @@ -36,5 +41,5 @@ RDEPEND="${DEPEND}"
62 DOCS=( CHANGELOG CHANGES README TODO )
63
64 src_compile() {
65 - emake AR=$(tc-getAR) GOT_RELEASE=Yes
66 + emake GOT_RELEASE=Yes
67 }