Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/q4wine/
Date: Mon, 01 Apr 2019 20:45:16
Message-Id: 1554151492.5045bcb6b0798858d5664320474b260bb05485ca.asturm@gentoo
1 commit: 5045bcb6b0798858d5664320474b260bb05485ca
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 1 20:04:26 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 1 20:44:52 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5045bcb6
7
8 app-emulation/q4wine: Drop 1.3.6-r1
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-emulation/q4wine/Manifest | 1 -
14 app-emulation/q4wine/q4wine-1.3.6-r1.ebuild | 66 -----------------------------
15 2 files changed, 67 deletions(-)
16
17 diff --git a/app-emulation/q4wine/Manifest b/app-emulation/q4wine/Manifest
18 index 1fab7409ce9..6948f016b20 100644
19 --- a/app-emulation/q4wine/Manifest
20 +++ b/app-emulation/q4wine/Manifest
21 @@ -1,2 +1 @@
22 DIST q4wine-1.3.11.tar.bz2 2868845 BLAKE2B 98893b1f65bcb8b8f301d7046a650658a9537849818fddf4803471a626f24d8c812867daec1f167b1fa5cdce9f9c0c50323d715ea06c51f3d52f85904257d2b0 SHA512 95ac66632bc46b10659e1d0e5f3c68b73934a85ddcc6582abd367d28f9949ad0ca732a5596db800bbc76b40ae7cf05fd95febf6d8b44db20cf710c2c1e23288f
23 -DIST q4wine-1.3.6.tar.bz2 2867547 BLAKE2B b35a638e514108e4ee4be34b446a7d2d5ba00415d8f54cfee293988707b637d41945d3197a2132147e09d5a05153fd47a55701dcba358f3a2b3a2e6037f78aaa SHA512 1ff0ea2a4523fc5582ec67f5e305622653c4e387ac5f2cecde52289117ef879a60261fdbf9ddf421812765539124d4c5b6b37ff401530d3e061723a3c35d57f8
24
25 diff --git a/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild b/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild
26 deleted file mode 100644
27 index f5672e386af..00000000000
28 --- a/app-emulation/q4wine/q4wine-1.3.6-r1.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-utils gnome2-utils xdg-utils
37 -
38 -# Upstream names the package PV-rX. We change that to
39 -# PV_pX so we can use portage revisions.
40 -MY_P=${PN}-${PV/_p/-r}
41 -
42 -DESCRIPTION="Qt GUI configuration tool for Wine"
43 -HOMEPAGE="https://q4wine.brezblock.org.ua/"
44 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
45 -
46 -LICENSE="GPL-3"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="+dbus debug +ico +iso +wineappdb"
50 -
51 -CDEPEND="
52 - dev-qt/qtcore:5
53 - dev-qt/qtgui:5
54 - dev-qt/qtnetwork:5
55 - dev-qt/qtsingleapplication[qt5(+),X]
56 - dev-qt/qtsql:5[sqlite]
57 - dev-qt/qtwidgets:5
58 - dev-qt/qtxml:5
59 - dbus? ( dev-qt/qtdbus:5 )
60 - ico? ( >=media-gfx/icoutils-0.26.0 )
61 -"
62 -DEPEND="${CDEPEND}
63 - dev-qt/linguist-tools:5
64 -"
65 -RDEPEND="${CDEPEND}
66 - app-admin/sudo
67 - >=sys-apps/which-2.19
68 - iso? ( sys-fs/fuseiso )
69 -"
70 -
71 -S=${WORKDIR}/${MY_P}
72 -
73 -DOCS=( AUTHORS ChangeLog README )
74 -
75 -src_configure() {
76 - local mycmakeargs=(
77 - -DDEBUG=$(usex debug ON OFF)
78 - -DWITH_ICOUTILS=$(usex ico ON OFF)
79 - -DWITH_SYSTEM_SINGLEAPP=ON
80 - -DWITH_WINEAPPDB=$(usex wineappdb ON OFF)
81 - -DUSE_BZIP2=OFF
82 - -DUSE_GZIP=OFF
83 - -DWITH_DBUS=$(usex dbus ON OFF)
84 - )
85 - cmake-utils_src_configure
86 -}
87 -
88 -pkg_postinst() {
89 - gnome2_icon_cache_update
90 - xdg_desktop_database_update
91 -}
92 -
93 -pkg_postrm() {
94 - gnome2_icon_cache_update
95 - xdg_desktop_database_update
96 -}