Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libqtxdg/
Date: Thu, 30 Sep 2021 17:24:42
Message-Id: 1633022529.9204df2596ffcd631b6ea19b6ea638bf3387fe6e.asturm@gentoo
1 commit: 9204df2596ffcd631b6ea19b6ea638bf3387fe6e
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 06:51:27 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 17:22:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9204df25
7
8 dev-libs/libqtxdg: remove version 3.6.0
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 dev-libs/libqtxdg/Manifest | 1 -
15 dev-libs/libqtxdg/libqtxdg-3.6.0.ebuild | 52 ---------------------------------
16 2 files changed, 53 deletions(-)
17
18 diff --git a/dev-libs/libqtxdg/Manifest b/dev-libs/libqtxdg/Manifest
19 index a7500221a5c..70d67e6602a 100644
20 --- a/dev-libs/libqtxdg/Manifest
21 +++ b/dev-libs/libqtxdg/Manifest
22 @@ -1,2 +1 @@
23 -DIST libqtxdg-3.6.0.tar.xz 76028 BLAKE2B 138f0f8bf9889c7f6aa0d4016c52d4c7745a9f3b34b53babba5d0be457485157d66884395488d4e978ba953332696b977bb60c1d04b6b0a53086ab7f3b0b4492 SHA512 8574bb6834c0a44c983e906c3d84fb5cfd6e2f40ec2ac70f4998ec5fe213aeb0d4439ff294f56c1988cb9d1b311c4e074906ba66b21d24190a911d0e643d1a16
24 DIST libqtxdg-3.7.1.tar.xz 74832 BLAKE2B 92b0f47412e04fa3100f1045a0ceb69ee7787634ab02883958156b96e756aecae1e916fa9963ef072e1d78f337102b2bfb7a42a1dcd9481fd158dde73e57fcef SHA512 764fb953c5c5564a8f5e189f3fa867b82e1da215e0734d2fb995bb29ba163936a38cf68c6c812ff3c183b7ab4fce59d1189c68885b65f103accb5446e71682e7
25
26 diff --git a/dev-libs/libqtxdg/libqtxdg-3.6.0.ebuild b/dev-libs/libqtxdg/libqtxdg-3.6.0.ebuild
27 deleted file mode 100644
28 index c25bbb458b3..00000000000
29 --- a/dev-libs/libqtxdg/libqtxdg-3.6.0.ebuild
30 +++ /dev/null
31 @@ -1,52 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake virtualx
38 -
39 -DESCRIPTION="Qt Implementation of XDG Standards"
40 -HOMEPAGE="https://lxqt.github.io/"
41 -
42 -if [[ ${PV} == *9999 ]]; then
43 - inherit git-r3
44 - EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
45 -else
46 - SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
47 - KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
48 -fi
49 -
50 -LICENSE="LGPL-2.1+ Nokia-Qt-LGPL-Exception-1.1"
51 -SLOT="0"
52 -IUSE="test"
53 -
54 -RESTRICT="!test? ( test )"
55 -
56 -BDEPEND="
57 - >=dev-util/lxqt-build-tools-0.8.0
58 - virtual/pkgconfig
59 -"
60 -RDEPEND="
61 - dev-qt/qtcore:5
62 - dev-qt/qtdbus:5
63 - dev-qt/qtgui:5=
64 - dev-qt/qtsvg:5
65 - dev-qt/qtwidgets:5
66 - dev-qt/qtxml:5
67 - x11-misc/xdg-utils
68 -"
69 -DEPEND="${RDEPEND}
70 - test? ( dev-qt/qttest:5 )
71 -"
72 -
73 -src_configure() {
74 - local mycmakeargs=(
75 - -DBUILD_TESTS=$(usex test)
76 - )
77 - cmake_src_configure
78 -}
79 -
80 -src_test() {
81 - # Tests don't work with C
82 - LC_ALL=en_US.utf8 virtx cmake_src_test
83 -}