Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/sakura/
Date: Sun, 03 Jun 2018 13:32:30
Message-Id: 1528032681.8c68aa942b053d78faff4885d1b6d35ed1b2b9b1.johu@gentoo
1 commit: 8c68aa942b053d78faff4885d1b6d35ed1b2b9b1
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 3 13:31:01 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 3 13:31:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c68aa94
7
8 x11-terms/sakura: Remove 3.4.0
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 x11-terms/sakura/Manifest | 1 -
13 x11-terms/sakura/sakura-3.4.0.ebuild | 56 ------------------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/x11-terms/sakura/Manifest b/x11-terms/sakura/Manifest
17 index 65485f42352..4b74e5af898 100644
18 --- a/x11-terms/sakura/Manifest
19 +++ b/x11-terms/sakura/Manifest
20 @@ -1,3 +1,2 @@
21 DIST sakura-3.3.4.tar.bz2 52839 BLAKE2B 8fbab050b6983625dd77a6ef52a56cbcd854d40c1f22a10e845171bab78b49263d5dc6a7e2e2a00d0ffc0140995b453755009fdc85e1f6d950336201873bc155 SHA512 a84849e2fa7b45da513ff05a1e1636eb8d331b7c632f18605d6aa01463e44d877c057f2f628bfdc27e9f6ff29b0441ba248885d92341ed3a9b5eb281d02e34d7
22 -DIST sakura-3.4.0.tar.bz2 54907 BLAKE2B c31d757e9467240d8455cbc7189f2104b0620f208ffbf7815fd834da08beeb59218931621656e4c920cadadca41bf682f321fe935151887cf99c1afe0800c980 SHA512 5d8f62638bd826a294b240960f2bd696583f8cad4799ab5862796b6210320f94ee11e64847c36ca6765f9281fb8fabb7a699db6fcf1de41c5e7f82bb281e9512
23 DIST sakura-3.5.0.tar.bz2 55432 BLAKE2B 9accd09eac359b64637ff5c318e50e32f5bfa27cf7fb5d4a99c91391e14f145020bd19077e20585b78149e5ac5f281abaf1098dbbaf111e54fd5ad5fbb2f4887 SHA512 20c691342c68a2a6f7397da754c83b19c7622e25984ae9fe9fef47492e19cd7589dd9d1bd2ccb82bd9c6ab82f92c97c1b742795434a101a0e169c6f901f40d9e
24
25 diff --git a/x11-terms/sakura/sakura-3.4.0.ebuild b/x11-terms/sakura/sakura-3.4.0.ebuild
26 deleted file mode 100644
27 index 315f2a8ec16..00000000000
28 --- a/x11-terms/sakura/sakura-3.4.0.ebuild
29 +++ /dev/null
30 @@ -1,56 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -inherit cmake-utils eutils flag-o-matic
36 -
37 -DESCRIPTION="sakura is a terminal emulator based on GTK and VTE"
38 -HOMEPAGE="http://www.pleyades.net/david/projects/sakura/"
39 -SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86 ~arm-linux ~x86-linux"
44 -
45 -RDEPEND="
46 - >=dev-libs/glib-2.20:2
47 - x11-libs/gtk+:3[X]
48 - x11-libs/libX11
49 - x11-libs/vte:2.91
50 -"
51 -DEPEND="
52 - ${RDEPEND}
53 - >=dev-lang/perl-5.10.1
54 - virtual/pkgconfig
55 -"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-3.1.3-flags.patch
59 -)
60 -
61 -DOCS=(
62 - AUTHORS
63 -)
64 -
65 -src_prepare() {
66 - sed -i "/FILES INSTALL/d" CMakeLists.txt || die
67 -
68 - strip-linguas -i po/
69 - local lingua
70 - for lingua in po/*.po; do
71 - lingua="${lingua/po\/}"
72 - lingua="${lingua/.po}"
73 - if ! has ${lingua} ${LINGUAS}; then
74 - rm po/${lingua}.po || die
75 - fi
76 - done
77 -
78 - cmake-utils_src_prepare
79 - # sakura.c:1740:3: warning: implicit declaration of function ‘readlink’
80 - # [-Wimplicit-function-declaration]
81 - append-cppflags -D_DEFAULT_SOURCE
82 -
83 - # sakura.c:1348:9: error: ‘for’ loop initial declarations are only allowed
84 - # in C99 or C11 mode
85 - append-cflags -std=c99
86 -}