From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsingleapplication/
Date: Sun, 6 May 2018 20:18:49 +0000 (UTC) [thread overview]
Message-ID: <1525637867.1018f900289ff48a6a4ff5eb395a316aec38983b.asturm@gentoo> (raw)
commit: 1018f900289ff48a6a4ff5eb395a316aec38983b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 18:03:15 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun May 6 20:17:47 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1018f900
dev-qt/qtsingleapplication: Drop old
Bug: https://bugs.gentoo.org/653986
Package-Manager: Portage-2.3.36, Repoman-2.3.9
dev-qt/qtsingleapplication/Manifest | 1 -
.../qtsingleapplication-2.6.1_p20150629.ebuild | 95 ----------------------
2 files changed, 96 deletions(-)
diff --git a/dev-qt/qtsingleapplication/Manifest b/dev-qt/qtsingleapplication/Manifest
index a4bc5fdc6e8..45d4d15e89b 100644
--- a/dev-qt/qtsingleapplication/Manifest
+++ b/dev-qt/qtsingleapplication/Manifest
@@ -1,2 +1 @@
-DIST qt-solutions-20150629.tar.xz 710488 BLAKE2B 102829e3b2afa7cb665c09fc259f9b966596a8245e8e8325c6c45e402bc337d205539b20be791e16515754c6d74247a714b278028e9ffbb74f578c9b8b39b094 SHA512 a95ed58f0218cd90d734a40eedd173b896fa0138ad235f3157d7bee538b16c5f385d93bae483fd22267f2984389b9940bb85ba0cd3d25c16124d56abb39568f5
DIST qt-solutions-20171024.tar.xz 710532 BLAKE2B 365f4c6fc3bee34bf26ac5039984ceac1d90527297b985b0d1b606f3ba67219bab7f7cba40b4adca55446c34e9f4fe218b4449ee255ba6f6409de78f80ccdaec SHA512 4784d88c2f40c88f06abeb728842875fb5e428a630dbf749f71055681b0c631803d2901b60aa8cc95f5f382dcd21da8d739873aa45e3dd3676ee95925f0198da
diff --git a/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild b/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild
deleted file mode 100644
index 92b582ef2f7..00000000000
--- a/dev-qt/qtsingleapplication/qtsingleapplication-2.6.1_p20150629.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multibuild qmake-utils
-
-MY_P=qt-solutions-${PV#*_p}
-
-DESCRIPTION="Qt library to start applications only once per user"
-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 qt4 +qt5 X"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-DEPEND="
- dev-qt/qtlockedfile[qt4?,qt5?]
- qt4? (
- dev-qt/qtcore:4
- X? ( dev-qt/qtgui:4 )
- )
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
- X? (
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- )
- )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}/${PN}
-
-pkg_setup() {
- MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_prepare() {
- epatch "${FILESDIR}/2.6.1_p20130904-unbundle-qtlockedfile.patch"
- epatch "${FILESDIR}/2.6.1_p20130904-no-gui.patch"
-
- echo 'SOLUTIONS_LIBRARY = yes' > config.pri
- use X || echo 'QTSA_NO_GUI = yes' >> config.pri
-
- sed -i -e "s/-head/-${PV%.*}/" common.pri || die
- sed -i -e '/SUBDIRS+=examples/d' ${PN}.pro || die
-
- # to ensure unbundling
- rm -f src/qtlockedfile*
-
- multibuild_copy_sources
-}
-
-src_configure() {
- myconfigure() {
- if [[ ${MULTIBUILD_VARIANT} == qt4 ]]; then
- eqmake4
- fi
- if [[ ${MULTIBUILD_VARIANT} == qt5 ]]; then
- eqmake5
- fi
- }
- multibuild_foreach_variant run_in_build_dir myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant run_in_build_dir default
-}
-
-src_install() {
- dodoc README.TXT
- use doc && dodoc -r doc/html
-
- myinstall() {
- # libraries
- dolib.so lib/*
-
- # headers
- insinto "$(${MULTIBUILD_VARIANT}_get_headerdir)"/QtSolutions
- doins src/qtsinglecoreapplication.h
- use X && doins src/{QtSingleApplication,${PN}.h}
-
- # .prf files
- insinto "$(${MULTIBUILD_VARIANT}_get_mkspecsdir)"/features
- doins "${FILESDIR}"/qtsinglecoreapplication.prf
- use X && doins "${FILESDIR}"/${PN}.prf
- }
- multibuild_foreach_variant run_in_build_dir myinstall
-}
next reply other threads:[~2018-05-06 20:18 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-06 20:18 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-10-29 13:31 [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtsingleapplication/ Yixun Lan
2021-09-08 16:55 Andreas Sturmlechner
2020-07-21 0:25 Sam James
2020-05-21 18:13 Andreas Sturmlechner
2018-05-06 18:21 Matt Turner
2018-04-24 23:59 Aaron Bauman
2018-02-23 1:04 Davide Pesavento
2018-02-23 1:04 Davide Pesavento
2018-02-22 10:51 Andreas Sturmlechner
2017-12-21 9:24 Michael Palimaka
2016-10-01 14:33 Jeroen Roovers
2015-10-31 6:06 Jeroen Roovers
2015-09-23 0:33 Davide Pesavento
2015-09-22 8:57 Agostino Sarubbo
2015-09-19 15:56 Agostino Sarubbo
2015-09-01 16:07 Markus Meier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1525637867.1018f900289ff48a6a4ff5eb395a316aec38983b.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox