Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qimgv/
Date: Fri, 04 Oct 2019 05:39:51
Message-Id: 1570167571.d0d289287aad7c4096edcdb50101f7e113f46723.juippis@gentoo
1 commit: d0d289287aad7c4096edcdb50101f7e113f46723
2 Author: Jiayi Zhao <jeff.no.zhao <AT> gmail <DOT> com>
3 AuthorDate: Wed Oct 2 15:59:17 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 4 05:39:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d28928
7
8 media-gfx/qimgv: remove old 0.8.2
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Jiayi Zhao <jeff.no.zhao <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/13124
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 media-gfx/qimgv/Manifest | 1 -
16 media-gfx/qimgv/qimgv-0.8.2.ebuild | 56 --------------------------------------
17 2 files changed, 57 deletions(-)
18
19 diff --git a/media-gfx/qimgv/Manifest b/media-gfx/qimgv/Manifest
20 index b2668420d91..d974a51f05e 100644
21 --- a/media-gfx/qimgv/Manifest
22 +++ b/media-gfx/qimgv/Manifest
23 @@ -1,2 +1 @@
24 -DIST qimgv-0.8.2.tar.gz 237098 BLAKE2B da71da019e87041cfa9f21592827e5a5623b2088e1349e534c437b0d5e50377980279fe99b7a18fb447c99ddb643a15c418fcfa2f261d3a559c639f560add0c4 SHA512 e80caa356cd2c7607a1d92a4ef4a79486ed504adb8ae454557e6a94d1d3ca5c023b78921e49777b1a06ca82556255d51357948281aae6a671ec01c597492a2cf
25 DIST qimgv-0.8.5.tar.gz 242650 BLAKE2B 25ac2854b0c35e2288b0e770559bac5ac0152df1e73b025fe99609e3f7126ad0c5342a6f87dd34b0847b22031ca77db7b98b1ef8b9c278fcbebb395454d426a4 SHA512 f4c3df7db433eca04ed0827039a02fcbb6e0d5b2f696010351dc6238c39b7a08784780ad8d56f3701d13506dd6c64671ce361817928d7fb2bb25b88c3f3d32ce
26
27 diff --git a/media-gfx/qimgv/qimgv-0.8.2.ebuild b/media-gfx/qimgv/qimgv-0.8.2.ebuild
28 deleted file mode 100644
29 index 52a5b418e7b..00000000000
30 --- a/media-gfx/qimgv/qimgv-0.8.2.ebuild
31 +++ /dev/null
32 @@ -1,56 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit cmake-utils xdg-utils
39 -
40 -DESCRIPTION="A cross-platform image viewer with webm support, written in qt5"
41 -HOMEPAGE="https://github.com/easymodo/qimgv"
42 -SRC_URI="https://github.com/easymodo/qimgv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="exif kde"
48 -
49 -BDEPEND="
50 - dev-util/cmake
51 - virtual/pkgconfig
52 -"
53 -DEPEND="
54 - dev-qt/qtconcurrent:5
55 - dev-qt/qtcore:5
56 - dev-qt/qtgui:5
57 - dev-qt/qtwidgets:5
58 - media-video/mpv[libmpv]
59 - exif? ( media-libs/libexif )
60 - kde? ( kde-frameworks/kwindowsystem:5 )
61 -"
62 -RDEPEND="
63 - ${DEPEND}
64 -"
65 -
66 -src_prepare() {
67 - cmake-utils_src_prepare
68 - # respect make.conf CXXFLAGS
69 - sed -i -e '/set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -lstdc++fs -O3")/d' CMakeLists.txt || die
70 -}
71 -
72 -src_configure() {
73 - local mycmakeargs=(
74 - -DEXIV2=$(usex exif)
75 - -DKDE_SUPPORT=$(usex kde)
76 - )
77 - cmake-utils_src_configure
78 -}
79 -
80 -pkg_postinst() {
81 - xdg_icon_cache_update
82 - xdg_desktop_database_update
83 -}
84 -
85 -pkg_postrm() {
86 - xdg_icon_cache_update
87 - xdg_desktop_database_update
88 -}