Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/evolvotron/files/, x11-misc/evolvotron/
Date: Wed, 07 Feb 2018 08:51:33
Message-Id: 1517993479.04329b66abf9db23372d370a5c99d540ae26538e.kensington@gentoo
1 commit: 04329b66abf9db23372d370a5c99d540ae26538e
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 7 08:50:58 2018 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 08:51:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04329b66
7
8 x11-misc/evolvotron: remove 0.6.3-r1
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 x11-misc/evolvotron/Manifest | 1 -
13 x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild | 50 ----------------------
14 .../evolvotron/files/evolvotron-0.6.3-gcc6.patch | 15 -------
15 3 files changed, 66 deletions(-)
16
17 diff --git a/x11-misc/evolvotron/Manifest b/x11-misc/evolvotron/Manifest
18 index 76d6ee1377e..a787e0f2a0a 100644
19 --- a/x11-misc/evolvotron/Manifest
20 +++ b/x11-misc/evolvotron/Manifest
21 @@ -1,2 +1 @@
22 -DIST evolvotron-0.6.3.tar.gz 182357 BLAKE2B cbd095eac272aa035bf398ce00448b693242f0ac7e4d8387d9204e6be6eb624e1639a14f0f06193b8d0f041a0aae5d401e38049f5c8c6205503015d8d845e92d SHA512 4cb5e3bda340c3444c5d59aa0569010c1845104a67996a596840aec768964a96798dc61bab7c6a77de3a4586010d8d066941795145400ad9a3fd336269e681a9
23 DIST evolvotron-0.7.1.tar.gz 179516 BLAKE2B b73c813fdf134e0e4c7882e06a12bc06acfb6dcdf4a38043c4c30027bf00da10df85d6877abdbd8ca6393496038ba9fa0c32a16b0f37dd14d72cc63c00a17d1c SHA512 74f48dc0881a82d999ccc910df026da80fcc46a906fe2fbb8edbae50a1fa42a3379087f00dd21fd9e5d69cee7c6fc745b80f8703b1af1ebc3a1cdb52ffbe16e9
24
25 diff --git a/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild b/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild
26 deleted file mode 100644
27 index 9cf5f328931..00000000000
28 --- a/x11-misc/evolvotron/evolvotron-0.6.3-r1.ebuild
29 +++ /dev/null
30 @@ -1,50 +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 qmake-utils
36 -
37 -DESCRIPTION="Generative art image evolver"
38 -HOMEPAGE="https://sourceforge.net/projects/evolvotron/"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
44 -IUSE=""
45 -
46 -RDEPEND="
47 - dev-libs/boost:=
48 - dev-qt/qtcore:4
49 - dev-qt/qtgui:4
50 -"
51 -DEPEND="${RDEPEND}"
52 -
53 -S=${WORKDIR}/${PN}
54 -
55 -PATCHES=( "${FILESDIR}"/${P}-gcc6.patch )
56 -
57 -DOCS=( BUGS NEWS README TODO USAGE )
58 -HTML_DOCS=( evolvotron.html )
59 -
60 -src_configure() {
61 - eqmake4 main.pro
62 -}
63 -
64 -src_compile() {
65 - local etsubdir
66 - for etsubdir in \
67 - libfunction libevolvotron evolvotron evolvotron_render evolvotron_mutate
68 - do
69 - emake sub-${etsubdir}
70 - done
71 -}
72 -
73 -src_install() {
74 - local bin
75 - for bin in ${PN}{,_mutate,_render}; do
76 - dobin ${bin}/${bin}
77 - done
78 - doman man/man1/*
79 - einstalldocs
80 -}
81
82 diff --git a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch b/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch
83 deleted file mode 100644
84 index 709d61b29a6..00000000000
85 --- a/x11-misc/evolvotron/files/evolvotron-0.6.3-gcc6.patch
86 +++ /dev/null
87 @@ -1,15 +0,0 @@
88 -Description: Fix compilation with GCC6 by making implict conversion to bool explicit
89 -Author: Axel Beckert <abe@××××××.org>
90 -Bug-Debian: https://bugs.debian.org/811660
91 -
92 ---- a/libevolvotron/mutatable_image_computer.h
93 -+++ b/libevolvotron/mutatable_image_computer.h
94 -@@ -193,7 +193,7 @@
95 - //! Indicate whether computation us taking place (only intended for counting outstanding threads).
96 - bool active() const
97 - {
98 -- return _task;
99 -+ return (bool)_task;
100 - }
101 - };
102 -