From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CF58E1382C5 for ; Fri, 23 Feb 2018 00:48:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A851E0897; Fri, 23 Feb 2018 00:48:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7A4B9E0897 for ; Fri, 23 Feb 2018 00:48:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 792D2335C43 for ; Fri, 23 Feb 2018 00:48:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DDD721C for ; Fri, 23 Feb 2018 00:48:31 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1519346904.73dd6347fbd64b75b9ab457a1791d84dc65d7783.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlockedfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild X-VCS-Directories: dev-qt/qtlockedfile/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 73dd6347fbd64b75b9ab457a1791d84dc65d7783 X-VCS-Branch: master Date: Fri, 23 Feb 2018 00:48:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2f408412-346e-493d-a863-300cbd7cae90 X-Archives-Hash: be952f687be5df8cffa492c9c52737d1 commit: 73dd6347fbd64b75b9ab457a1791d84dc65d7783 Author: Davide Pesavento gentoo org> AuthorDate: Fri Feb 23 00:47:57 2018 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Fri Feb 23 00:48:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73dd6347 dev-qt/qtlockedfile: remove 2.4.1_p20150629-r1 Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../qtlockedfile-2.4.1_p20150629-r1.ebuild | 55 ---------------------- 1 file changed, 55 deletions(-) diff --git a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild b/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild deleted file mode 100644 index a413f124f18..00000000000 --- a/dev-qt/qtlockedfile/qtlockedfile-2.4.1_p20150629-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit qmake-utils - -MY_P=qt-solutions-${PV#*_p} - -DESCRIPTION="QFile extension with advisory locking functions" -HOMEPAGE="https://code.qt.io/cgit/qt-solutions/qt-solutions.git/" -SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${MY_P}.tar.xz" - -LICENSE="|| ( LGPL-2.1 GPL-3 )" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="doc" - -DEPEND=" - dev-qt/qtcore:5 -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}/${PN}" - -src_prepare() { - default - - echo 'SOLUTIONS_LIBRARY = yes' > config.pri - echo 'QT -= gui' >> src/qtlockedfile.pri - - sed -i -e "s/-head/-${PV%.*}/" common.pri || die - sed -i -e '/SUBDIRS+=example/d' ${PN}.pro || die -} - -src_configure() { - eqmake5 -} - -src_install() { - use doc && local HTML_DOCS=( doc/html/. ) - - # libraries - dolib.so lib/* - - # headers - insinto "$(qt5_get_headerdir)"/QtSolutions - doins src/QtLockedFile src/${PN}.h - - # .prf files - insinto "$(qt5_get_mkspecsdir)"/features - doins "${FILESDIR}"/${PN}.prf - - default -}