public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/qconf/
Date: Thu,  4 Jun 2020 08:40:40 +0000 (UTC)	[thread overview]
Message-ID: <1591260027.9bbf8514e6593249ceee96a5598c4dcbbeb03058.asturm@gentoo> (raw)

commit:     9bbf8514e6593249ceee96a5598c4dcbbeb03058
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  4 08:24:42 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jun  4 08:40:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bbf8514

sys-devel/qconf: Drop 2.3 and 2.4

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sys-devel/qconf/Manifest         |  2 --
 sys-devel/qconf/qconf-2.3.ebuild | 41 ----------------------------------------
 sys-devel/qconf/qconf-2.4.ebuild | 39 --------------------------------------
 3 files changed, 82 deletions(-)

diff --git a/sys-devel/qconf/Manifest b/sys-devel/qconf/Manifest
index 955440b5582..87fc52a3821 100644
--- a/sys-devel/qconf/Manifest
+++ b/sys-devel/qconf/Manifest
@@ -1,3 +1 @@
-DIST qconf-2.3.tar.xz 51848 BLAKE2B 836f22e50cd4c9bb2beefd85d0e5f85f7aee40078dd4a696492c344ae9dffeae20840025a3262b5abcc2c74b22ed9e0bd4b44d077b83ab1e904c0a93bde394ff SHA512 27a532cb52067707a3e04a40260bb0f42e40adff4a643d2f048832356de58271e4051c9cb810e6fffd4b4e45dba483ed65aec062506053caa262ac03b3ec6253
-DIST qconf-2.4.tar.xz 51880 BLAKE2B c87a2a6dbca56fa52bccd0cdbbdba64013adcbf03c6cca6744d3e1c3166f74a09e945022854b1143e0c08a70a6124c0b890be8d7f9d4a91be7c6c0e2c89bf800 SHA512 982ace9e1d30f6c92078d661e103418fc7e3352a56eb78dae64a004e563f5e7bbf8f71972ca482e2f5229a6f88bb51372e543833f99c4b596d0ae4be5f443317
 DIST qconf-2.5.tar.gz 100704 BLAKE2B 01dcca053e020cfc76e8595927dd3cedb6c82ade24381c95935c87994037ca5129f5e9e0ec58dd0e0fc6815b1500249b767367fbf7a16549459f814bb1591368 SHA512 4ce032eb5b9ba2d584807b3283b0dd5cf973c2fdd6792dfec13c54bb7c639d23eeaab03eb52f1a395113d973d2b01d87bf713d717e691641203865b934c7da5e

diff --git a/sys-devel/qconf/qconf-2.3.ebuild b/sys-devel/qconf/qconf-2.3.ebuild
deleted file mode 100644
index 4292f0c9508..00000000000
--- a/sys-devel/qconf/qconf-2.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="./configure like generator for qmake-based projects"
-HOMEPAGE="https://github.com/psi-plus/qconf"
-SRC_URI="http://psi-im.org/files/qconf/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 ~sparc x86"
-IUSE=""
-
-# There is no one to one match to autotools-based configure
-QA_CONFIGURE_OPTIONS=".*"
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtxml:5
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	econf \
-		--qtdir="$(qt5_get_libdir)/qt5" \
-		--extraconf=QMAKE_STRIP= \
-		--verbose
-
-	# just to set all the Gentoo toolchain flags
-	eqmake5
-}
-
-src_install() {
-	emake INSTALL_ROOT="${D}" install
-	einstalldocs
-	insinto /usr/share/doc/${PF}
-	doins -r examples
-}

diff --git a/sys-devel/qconf/qconf-2.4.ebuild b/sys-devel/qconf/qconf-2.4.ebuild
deleted file mode 100644
index ba6e9b593c2..00000000000
--- a/sys-devel/qconf/qconf-2.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="./configure like generator for qmake-based projects"
-HOMEPAGE="https://github.com/psi-plus/qconf"
-SRC_URI="http://psi-im.org/files/qconf/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND="
-	dev-qt/qtcore:5
-	dev-qt/qtxml:5
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	# not autotools configure. generates warnings for some autotools params.
-	./configure \
-		--prefix="${EPREFIX}"/usr \
-		--qtdir="$(qt5_get_libdir)/qt5" \
-		--extraconf=QMAKE_STRIP= \
-		--verbose || die "configure failed"
-
-	# just to set all the Gentoo toolchain flags
-	eqmake5
-}
-
-src_install() {
-	emake INSTALL_ROOT="${D}" install
-	einstalldocs
-	dodoc -r examples
-}


             reply	other threads:[~2020-06-04  8:40 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-04  8:40 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-05-29  7:39 [gentoo-commits] repo/gentoo:master commit in: sys-devel/qconf/ Agostino Sarubbo
2020-05-25  9:36 Sergei Trofimovich
2020-05-22  8:02 Sergei Trofimovich
2020-03-16 21:29 Andreas Sturmlechner
2018-03-03 13:19 Michał Górny
2017-11-03 13:57 Michael Palimaka
2017-10-30 23:33 Andreas Sturmlechner
2017-09-30  1:46 Michael Palimaka
2017-09-30  1:46 Michael Palimaka
2017-09-30  1:46 Michael Palimaka
2017-09-24 17:23 Sergei Trofimovich
2017-09-24 16:23 Sergei Trofimovich
2017-09-24  6:27 Michael Palimaka
2017-03-26  9:04 Andreas Sturmlechner
2017-03-26  9:04 Andreas Sturmlechner
2016-12-25 10:23 Agostino Sarubbo
2016-12-25 10:09 Agostino Sarubbo
2016-12-22  8:57 Agostino Sarubbo
2016-12-19 19:56 Tobias Klausmann
2016-10-01 12:41 Jeroen Roovers
2016-08-06  9:39 Pacho Ramos
2016-03-23 13:32 Sergey Popov

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=1591260027.9bbf8514e6593249ceee96a5598c4dcbbeb03058.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