public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/monkeystudio/
@ 2016-12-22 18:26 David Seifert
  0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2016-12-22 18:26 UTC (permalink / raw
  To: gentoo-commits

commit:     041f02336723c5cd3be3df2e31a174f26b224eb0
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 17:46:38 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 18:26:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041f0233

dev-util/monkeystudio: Depend on x11-libs/qscintilla[qt4]

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3188

 .../{monkeystudio-1.9.0.4.ebuild => monkeystudio-1.9.0.4-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/monkeystudio/monkeystudio-1.9.0.4.ebuild b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild
similarity index 95%
rename from dev-util/monkeystudio/monkeystudio-1.9.0.4.ebuild
rename to dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild
index 2c3aaa4..151d5e9 100644
--- a/dev-util/monkeystudio/monkeystudio-1.9.0.4.ebuild
+++ b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -24,7 +24,7 @@ RDEPEND="
 	dev-qt/qtgui:4
 	dev-qt/qthelp:4
 	dev-qt/qtsql:4
-	x11-libs/qscintilla:=
+	x11-libs/qscintilla:=[qt4(-)]
 	plugins? ( dev-qt/qtwebkit:4 )
 "
 DEPEND="${RDEPEND}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/monkeystudio/
@ 2017-06-04  6:45 Michael Palimaka
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2017-06-04  6:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a5c5e9d2e6dceafdd3ace04e86f542c29f57f73f
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  4 06:45:20 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jun  4 06:45:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c5e9d2

dev-util/monkeystudio: remove plugins USE flag

The plugins USE flag required dev-qt/qtwebkit:4 which is ancient and will
never see any security updates.

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-util/monkeystudio/metadata.xml                         |  3 ---
 ...io-1.9.0.4-r1.ebuild => monkeystudio-1.9.0.4-r2.ebuild} | 14 ++------------
 2 files changed, 2 insertions(+), 15 deletions(-)

diff --git a/dev-util/monkeystudio/metadata.xml b/dev-util/monkeystudio/metadata.xml
index e95a294636b..56f5896cdb6 100644
--- a/dev-util/monkeystudio/metadata.xml
+++ b/dev-util/monkeystudio/metadata.xml
@@ -5,9 +5,6 @@
 		<email>qt@gentoo.org</email>
 		<name>Gentoo Qt Project</name>
 	</maintainer>
-	<use>
-		<flag name="plugins">Build and install additional plugins</flag>
-	</use>
 	<upstream>
 		<remote-id type="google-code">monkeystudio</remote-id>
 	</upstream>

diff --git a/dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
similarity index 85%
rename from dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild
rename to dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
index c7fc6f17e63..00d02015f7f 100644
--- a/dev-util/monkeystudio/monkeystudio-1.9.0.4-r1.ebuild
+++ b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -15,7 +15,7 @@ SRC_URI="https://${PN}.googlecode.com/files/${MY_P}.tar.gz"
 LICENSE="GPL-2 LGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="doc plugins"
+IUSE="doc"
 
 RDEPEND="
 	dev-qt/designer:4
@@ -24,7 +24,6 @@ RDEPEND="
 	dev-qt/qthelp:4
 	dev-qt/qtsql:4
 	x11-libs/qscintilla:=[qt4(-)]
-	plugins? ( dev-qt/qtwebkit:4 )
 "
 DEPEND="${RDEPEND}
 	doc? ( >=app-doc/doxygen-1.5.8 )
@@ -50,20 +49,11 @@ src_prepare() {
 
 src_configure() {
 	eqmake4 prefix=/usr system_qscintilla=1
-
-	if use plugins ; then
-		eqmake4 plugins/plugins.pro
-	fi
 }
 
 src_install() {
 	qt4-r2_src_install
 
-	if use plugins ; then
-		insinto /usr/lib64/monkeystudio
-		doins -r bin/plugins/*
-	fi
-
 	insinto /usr/share/${PN}/translations
 	local lang
 	for lang in ${LANGS} ; do


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-util/monkeystudio/
@ 2017-08-24 12:32 Michael Palimaka
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Palimaka @ 2017-08-24 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     276ff2e0d83615cc31097f6f9f6291f9eade63f2
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 24 12:32:05 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Aug 24 12:32:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276ff2e0

dev-util/monkeystudio: update HOMEPAGE

Gentoo-bug: 628778
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
index 00d02015f7f..a6256c77b8a 100644
--- a/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
+++ b/dev-util/monkeystudio/monkeystudio-1.9.0.4-r2.ebuild
@@ -9,7 +9,7 @@ inherit qt4-r2
 MY_P="mks_${PV}-src"
 
 DESCRIPTION="A cross platform Qt 4 IDE"
-HOMEPAGE="http://www.monkeystudio.org"
+HOMEPAGE="https://monkeystudio.pasnox.com/"
 SRC_URI="https://${PN}.googlecode.com/files/${MY_P}.tar.gz"
 
 LICENSE="GPL-2 LGPL-3"


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-08-24 12:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-22 18:26 [gentoo-commits] repo/gentoo:master commit in: dev-util/monkeystudio/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2017-06-04  6:45 Michael Palimaka
2017-08-24 12:32 Michael Palimaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox