Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlockedfile/
Date: Fri, 23 Feb 2018 00:48:36
Message-Id: 1519346904.73dd6347fbd64b75b9ab457a1791d84dc65d7783.pesa@gentoo
1 commit: 73dd6347fbd64b75b9ab457a1791d84dc65d7783
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 23 00:47:57 2018 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 23 00:48:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73dd6347
7
8 dev-qt/qtlockedfile: remove 2.4.1_p20150629-r1
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 .../qtlockedfile-2.4.1_p20150629-r1.ebuild | 55 ----------------------
13 1 file changed, 55 deletions(-)
14
15 diff --git a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild b/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild
16 deleted file mode 100644
17 index a413f124f18..00000000000
18 --- a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild
19 +++ /dev/null
20 @@ -1,55 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit qmake-utils
27 -
28 -MY_P=qt-solutions-${PV#*_p}
29 -
30 -DESCRIPTION="QFile extension with advisory locking functions"
31 -HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/"
32 -SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz"
33 -
34 -LICENSE="|| ( LGPL-2.1 GPL-3 )"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
37 -IUSE="doc"
38 -
39 -DEPEND="
40 - dev-qt/qtcore:5
41 -"
42 -RDEPEND="${DEPEND}"
43 -
44 -S="${WORKDIR}/${MY_P}/${PN}"
45 -
46 -src_prepare() {
47 - default
48 -
49 - echo 'SOLUTIONS_LIBRARY = yes' > config.pri
50 - echo 'QT -= gui' >> src/qtlockedfile.pri
51 -
52 - sed -i -e "s/-head/-${PV%.*}/" common.pri || die
53 - sed -i -e '/SUBDIRS+=example/d' ${PN}.pro || die
54 -}
55 -
56 -src_configure() {
57 - eqmake5
58 -}
59 -
60 -src_install() {
61 - use doc && local HTML_DOCS=( doc/html/. )
62 -
63 - # libraries
64 - dolib.so lib/*
65 -
66 - # headers
67 - insinto "$(qt5_get_headerdir)"/QtSolutions
68 - doins src/QtLockedFile src/${PN}.h
69 -
70 - # .prf files
71 - insinto "$(qt5_get_mkspecsdir)"/features
72 - doins "${FILESDIR}"/${PN}.prf
73 -
74 - default
75 -}