public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/eric: ChangeLog eric-4.4.1.ebuild
@ 2010-02-06 14:49 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-02-06 14:49 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/02/06 14:49:03

  Modified:             ChangeLog
  Added:                eric-4.4.1.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.113                dev-util/eric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?r1=1.112&r2=1.113

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog	17 Jan 2010 19:09:43 -0000	1.112
+++ ChangeLog	6 Feb 2010 14:49:02 -0000	1.113
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/eric
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.112 2010/01/17 19:09:43 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.113 2010/02/06 14:49:02 hwoarang Exp $
+
+*eric-4.4.1 (06 Feb 2010)
+
+  06 Feb 2010; Markos Chandras <hwoarang@gentoo.org> +eric-4.4.1.ebuild:
+  Version bump
 
   17 Jan 2010; Raúl Porcel <armin76@gentoo.org> eric-4.3.9.ebuild:
   sparc stable wrt #296580



1.1                  dev-util/eric/eric-4.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.1&content-type=text/plain

Index: eric-4.4.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v 1.1 2010/02/06 14:49:02 hwoarang Exp $

EAPI="2"
NEED_PYTHON="2.6"
SUPPORT_PYTHON_ABIS="1"

inherit eutils python

MY_PN=${PN}4
MY_P=${MY_PN}-${PV}
DESCRIPTION="A full featured Python IDE using PyQt4 and QScintilla"
HOMEPAGE="http://eric-ide.python-projects.org/"
SRC_URI="mirror://sourceforge/eric-ide/${MY_P}.tar.gz"

SLOT="4"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="kde spell"

DEPEND="dev-python/PyQt4[assistant,svg,webkit,X]
	dev-python/qscintilla-python
	kde? ( kde-base/pykde4 )"
RDEPEND="${DEPEND}
	>=dev-python/chardet-2.0
	>=dev-python/pygments-1.1
	dev-python/coverage"
PDEPEND="spell? ( dev-python/pyenchant )"
# 2.4 and 2.5 are restricted to avoid conditional dependency on dev-python/simplejson.
RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"

LANGS="cs de es fr it ru tr zh_CN"
for L in ${LANGS}; do
	SRC_URI="${SRC_URI}
		linguas_${L}? ( mirror://sourceforge/eric-ide/${MY_PN}-i18n-${L/zh_CN/zh_CN.GB2312}-${PV}.tar.gz )"
	IUSE="${IUSE} linguas_${L}"
done

S="${WORKDIR}/${MY_P}"

src_prepare() {
	epatch "${FILESDIR}"/eric-4.4-no-interactive.patch
	epatch "${FILESDIR}"/remove_coverage.patch
	use kde || epatch "${FILESDIR}"/eric-4.4-no-pykde.patch

	# remove bundled copies, bug #283148 and bug 300757
	rm -rf "${S}"/eric/ThirdParty
	rm -rf "${S}"/eric/DebugClients/Python/coverage
	rm -rf "${S}"/eric/DebugClients/Python3/coverage
}

src_install() {
	installation() {
		"$(PYTHON)" install.py \
			-z \
			-b "/usr/bin" \
			-i "${D}" \
			-d "$(python_get_sitedir)" \
			-c
	}
	python_execute_function installation

	doicon eric/icons/default/eric.png
	make_desktop_entry "eric4 --nosplash" eric4 eric "Development;IDE;Qt"
}

pkg_postinst() {
	python_mod_optimize eric4{,config.py,plugins}

	elog
	elog "If you want to use eric4 with mod_python, have a look at"
	elog "\"${ROOT}usr/$(get_libdir)/python$(PYTHON -f --ABI)/site-packages/eric4/patch_modpython.py\"."
	elog
	elog "The following packages will give eric extended functionality:"
	elog "  dev-python/pylint"
	elog "  dev-python/pysvn"
	elog
	elog "This version has a plugin interface with plugin-autofetch from"
	elog "the application itself. You may want to check those as well."
	elog
}

pkg_postrm() {
	python_mod_cleanup eric4{,config.py,plugins}
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/eric: ChangeLog eric-4.4.1.ebuild
@ 2010-03-08 19:29 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 3+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-03-08 19:29 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/03/08 19:29:11

  Modified:             ChangeLog eric-4.4.1.ebuild
  Log:
  Stable on amd64 wrt bug #308201
  (Portage version: 2.2_rc65/cvs/Linux x86_64)

Revision  Changes    Path
1.115                dev-util/eric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.115&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.115&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog	6 Mar 2010 11:51:53 -0000	1.114
+++ ChangeLog	8 Mar 2010 19:29:10 -0000	1.115
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/eric
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.114 2010/03/06 11:51:53 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.115 2010/03/08 19:29:10 hwoarang Exp $
+
+  08 Mar 2010; Markos Chandras <hwoarang@gentoo.org> eric-4.4.1.ebuild:
+  Stable on amd64 wrt bug #308201
 
 *eric-4.4.2 (06 Mar 2010)
 



1.3                  dev-util/eric/eric-4.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?r1=1.2&r2=1.3

Index: eric-4.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eric-4.4.1.ebuild	7 Feb 2010 01:04:39 -0000	1.2
+++ eric-4.4.1.ebuild	8 Mar 2010 19:29:10 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v 1.2 2010/02/07 01:04:39 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v 1.3 2010/03/08 19:29:10 hwoarang Exp $
 
 EAPI="2"
 PYTHON_DEPEND="2:2.6"
@@ -16,7 +16,7 @@
 
 SLOT="4"
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~x86"
 IUSE="kde spell"
 
 DEPEND="dev-python/PyQt4[assistant,svg,webkit,X]






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

* [gentoo-commits] gentoo-x86 commit in dev-util/eric: ChangeLog eric-4.4.1.ebuild
@ 2010-04-16 15:49 Brent Baude (ranger)
  0 siblings, 0 replies; 3+ messages in thread
From: Brent Baude (ranger) @ 2010-04-16 15:49 UTC (permalink / raw
  To: gentoo-commits

ranger      10/04/16 15:49:25

  Modified:             ChangeLog eric-4.4.1.ebuild
  Log:
  Marking eric-4.4.1 ~ppc64 for bug 300741
  (Portage version: 2.1.7.17/cvs/Linux ppc64)

Revision  Changes    Path
1.119                dev-util/eric/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/ChangeLog?r1=1.118&r2=1.119

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ChangeLog	8 Apr 2010 19:26:05 -0000	1.118
+++ ChangeLog	16 Apr 2010 15:49:25 -0000	1.119
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/eric
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.118 2010/04/08 19:26:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/ChangeLog,v 1.119 2010/04/16 15:49:25 ranger Exp $
+
+  16 Apr 2010; Brent Baude <ranger@gentoo.org> eric-4.4.1.ebuild:
+  Marking eric-4.4.1 ~ppc64 for bug 300741
 
   08 Apr 2010; Jeroen Roovers <jer@gentoo.org> eric-4.4.2.ebuild:
   Stable for HPPA (bug #308201).



1.4                  dev-util/eric/eric-4.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild?r1=1.3&r2=1.4

Index: eric-4.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- eric-4.4.1.ebuild	8 Mar 2010 19:29:10 -0000	1.3
+++ eric-4.4.1.ebuild	16 Apr 2010 15:49:25 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v 1.3 2010/03/08 19:29:10 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/eric/eric-4.4.1.ebuild,v 1.4 2010/04/16 15:49:25 ranger Exp $
 
 EAPI="2"
 PYTHON_DEPEND="2:2.6"
@@ -16,7 +16,7 @@
 
 SLOT="4"
 LICENSE="GPL-3"
-KEYWORDS="amd64 ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="kde spell"
 
 DEPEND="dev-python/PyQt4[assistant,svg,webkit,X]






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

end of thread, other threads:[~2010-04-16 15:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-06 14:49 [gentoo-commits] gentoo-x86 commit in dev-util/eric: ChangeLog eric-4.4.1.ebuild Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-08 19:29 Markos Chandras (hwoarang)
2010-04-16 15:49 Brent Baude (ranger)

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