Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/gource/
Date: Mon, 03 Sep 2018 13:21:22
Message-Id: 1535980866.10b03fc2a6842970423f1e22ceae078054029863.kensington@gentoo
1 commit: 10b03fc2a6842970423f1e22ceae078054029863
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 13:20:54 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 13:21:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b03fc2
7
8 dev-util/gource: remove 0.48
9
10 Package-Manager: Portage-2.3.44, Repoman-2.3.10
11
12 dev-util/gource/Manifest | 1 -
13 dev-util/gource/gource-0.48.ebuild | 49 --------------------------------------
14 2 files changed, 50 deletions(-)
15
16 diff --git a/dev-util/gource/Manifest b/dev-util/gource/Manifest
17 index 8b1de61bf44..1ed66d04d7a 100644
18 --- a/dev-util/gource/Manifest
19 +++ b/dev-util/gource/Manifest
20 @@ -1,2 +1 @@
21 -DIST gource-0.48.tar.gz 873333 BLAKE2B 95b876b486f0215f7516cb2bb940dd00771f67659cb2d10ad23e9da0732a51e3f2030d8f7599a8be901f0211bf1c484964f1fb66696be01c990a7b99d1123084 SHA512 5b638cac9b464c0d8f0df87ae0115c36d314cce9cd0ce269b05e0a635ff6f23e62d06d0def484b796267299041e4de675cb13a0381b19d9144bbdc1d3b7f1b16
22 DIST gource-0.49.tar.gz 874349 BLAKE2B b7d24f415944921deb7df33be4e9918291f5df6dd4813bf98727894e0192b881a583a1dacec2d6e8f2d1a0d6b644bc3b735ef8d7c0b7882d77bcd80913fe08c5 SHA512 cb3482dd06cf38bd775f2ac4b8f3bee78e480dd51e37527024df6e59d6e613290297d65e167a21364aa6251eff78a50ecc8a5fd3772a6e9a4ad22ca21b4b615e
23
24 diff --git a/dev-util/gource/gource-0.48.ebuild b/dev-util/gource/gource-0.48.ebuild
25 deleted file mode 100644
26 index 34639205e93..00000000000
27 --- a/dev-util/gource/gource-0.48.ebuild
28 +++ /dev/null
29 @@ -1,49 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit flag-o-matic
36 -
37 -DESCRIPTION="A software version control visualization tool"
38 -HOMEPAGE="http://gource.io/"
39 -SRC_URI="https://github.com/acaudwell/Gource/releases/download/${P}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE=""
45 -
46 -COMMON_DEPEND="
47 - >=dev-libs/boost-1.46:=[threads(+)]
48 - >=media-libs/glew-1.5:0=
49 - >=media-libs/libpng-1.2:0=
50 - media-libs/libsdl2[video,opengl,X]
51 - media-libs/sdl2-image[jpeg,png]
52 - dev-libs/libpcre:3
53 - dev-libs/tinyxml
54 - media-libs/freetype:2
55 - media-libs/mesa
56 - virtual/glu:0
57 -"
58 -RDEPEND="${COMMON_DEPEND}
59 - media-fonts/freefont
60 -"
61 -DEPEND="${COMMON_DEPEND}
62 - virtual/pkgconfig
63 - >=media-libs/glm-0.9.3
64 -"
65 -
66 -DOCS=( README ChangeLog THANKS )
67 -
68 -src_configure() {
69 - # fix bug #386525
70 - # this enables gource to be compiled against dev-libs/tinyxml[stl]
71 - if has_version dev-libs/tinyxml[stl]; then
72 - append-cppflags -DTIXML_USE_STL;
73 - fi
74 -
75 - econf \
76 - --enable-ttf-font-dir=/usr/share/fonts/freefont/ \
77 - --with-tinyxml
78 -}