public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-06-09 19:00 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 8+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-06-09 19:00 UTC (permalink / raw
  To: gentoo-commits

hwoarang    09/06/09 19:00:02

  Modified:             ChangeLog
  Added:                qscintilla-2.4.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc33/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.26                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	1 Jun 2009 22:28:49 -0000	1.25
+++ ChangeLog	9 Jun 2009 19:00:02 -0000	1.26
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.25 2009/06/01 22:28:49 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.26 2009/06/09 19:00:02 hwoarang Exp $
+
+*qscintilla-2.4 (09 Jun 2009)
+
+  09 Jun 2009; Markos Chandras <hwoarang@gentoo.org> +qscintilla-2.4.ebuild,
+  +files/qscintilla-2.4-designer.patch:
+  Version bump
 
   01 Jun 2009; Ben de Groot <yngwin@gentoo.org> qscintilla-2.3.2.ebuild:
   Move to EAPI=2, and add use dep



1.1                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.1&content-type=text/plain

Index: qscintilla-2.4.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.1 2009/06/09 19:00:02 hwoarang Exp $

EAPI="2"

inherit eutils multilib qt3 qt4

MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}"

DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc python +qt4"

RDEPEND="qt4? ( x11-libs/qt-gui:4 )
	!qt4? ( x11-libs/qt:3 )"
DEPEND="${RDEPEND}"
# dev-python/PyQt needs qscintilla to build and qscintilla's python bindings
# need dev-python/PyQt, bug 199543
PDEPEND="python? ( ~dev-python/qscintilla-python-${PV}[qt4=] )"

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

PATCHES=( "${FILESDIR}/${PN}-2.4-designer.patch" )

src_configure() {
	if use qt4; then
		myqtver=4
		myqtdir=/usr/share/qt4
	else
		myqtver=3
		myqtdir=${QTDIR}
	fi

	cd "${S}"/Qt${myqtver}
	eqmake${myqtver} qscintilla.pro

	cd "${S}"/designer-Qt${myqtver}
	eqmake${myqtver} designer.pro
}

src_compile() {
	cd "${S}"/Qt${myqtver}
	emake all staticlib || die "emake failed"

	cd "${S}"/designer-Qt${myqtver}
	emake || die "failed to build designer plugin"
}

src_install() {
	cd "${S}"/Qt${myqtver}
	# header files
	insinto /usr/include/Qsci
	doins Qsci/*.h || die
	# libraries
	dolib.so libqscintilla2.so* || die
	dolib.a libqscintilla2.a || die
	# translations
	insinto /usr/share/${PN}/translations
	doins qscintilla_*.qm || die
	for trans in $(ls -1 qscintilla_*.qm); do
		dosym /usr/share/${PN}/translations/${trans} \
			${myqtdir}/translations/${trans} || die
	done

	# designer plugin
	cd "${S}"/designer-Qt${myqtver}
	emake INSTALL_ROOT="${D}" install || die "designer plugin installation failed"

	# documentation
	cd "${S}"
	dodoc ChangeLog NEWS
	if use doc; then
		dohtml doc/html-Qt${myqtver}/* || die
		insinto /usr/share/doc/${PF}/Scintilla
		doins doc/Scintilla/* || die
	fi
}

pkg_postinst() {
	if use qt4; then
		ewarn "Please remerge dev-python/PyQt4 if you have problems with eric or other"
	else
		ewarn "Please remerge dev-python/PyQt if you have problems with"
	fi
	ewarn "qscintilla related packages before submitting bug reports."
}






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-09-22  0:18 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 8+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-09-22  0:18 UTC (permalink / raw
  To: gentoo-commits

fauli       09/09/22 00:18:11

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  stable x86, bug 284707
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.27                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	9 Jun 2009 19:00:02 -0000	1.26
+++ ChangeLog	22 Sep 2009 00:18:10 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.26 2009/06/09 19:00:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.27 2009/09/22 00:18:10 fauli Exp $
+
+  22 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
+  qscintilla-2.4.ebuild:
+  stable x86, bug 284707
 
 *qscintilla-2.4 (09 Jun 2009)
 



1.2                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.1&r2=1.2

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qscintilla-2.4.ebuild	9 Jun 2009 19:00:02 -0000	1.1
+++ qscintilla-2.4.ebuild	22 Sep 2009 00:18:10 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.1 2009/06/09 19:00:02 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.2 2009/09/22 00:18:10 fauli Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="doc python +qt4"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4 )






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-09-22  7:33 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2009-09-22  7:33 UTC (permalink / raw
  To: gentoo-commits

maekke      09/09/22 07:33:30

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  amd64 stable, bug #284707
  (Portage version: 2.2_rc41/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	22 Sep 2009 00:18:10 -0000	1.27
+++ ChangeLog	22 Sep 2009 07:33:29 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.27 2009/09/22 00:18:10 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.28 2009/09/22 07:33:29 maekke Exp $
+
+  22 Sep 2009; Markus Meier <maekke@gentoo.org> qscintilla-2.4.ebuild:
+  amd64 stable, bug #284707
 
   22 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
   qscintilla-2.4.ebuild:



1.3                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.2&r2=1.3

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qscintilla-2.4.ebuild	22 Sep 2009 00:18:10 -0000	1.2
+++ qscintilla-2.4.ebuild	22 Sep 2009 07:33:29 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.2 2009/09/22 00:18:10 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.3 2009/09/22 07:33:29 maekke Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="doc python +qt4"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4 )






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-09-27 18:28 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-09-27 18:28 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/09/27 18:28:38

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  ppc stable #284707
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.29                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	22 Sep 2009 07:33:29 -0000	1.28
+++ ChangeLog	27 Sep 2009 18:28:38 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.28 2009/09/22 07:33:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.29 2009/09/27 18:28:38 nixnut Exp $
+
+  27 Sep 2009; nixnut <nixnut@gentoo.org> qscintilla-2.4.ebuild:
+  ppc stable #284707
 
   22 Sep 2009; Markus Meier <maekke@gentoo.org> qscintilla-2.4.ebuild:
   amd64 stable, bug #284707



1.4                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.3&r2=1.4

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qscintilla-2.4.ebuild	22 Sep 2009 07:33:29 -0000	1.3
+++ qscintilla-2.4.ebuild	27 Sep 2009 18:28:38 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.3 2009/09/22 07:33:29 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.4 2009/09/27 18:28:38 nixnut Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="doc python +qt4"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4 )






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-10-12 19:44 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2009-10-12 19:44 UTC (permalink / raw
  To: gentoo-commits

jer         09/10/12 19:44:05

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  Stable for HPPA (bug #284707).
  (Portage version: 2.2_rc46/cvs/Linux i686)

Revision  Changes    Path
1.31                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	6 Oct 2009 17:58:11 -0000	1.30
+++ ChangeLog	12 Oct 2009 19:44:04 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.30 2009/10/06 17:58:11 ayoy Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.31 2009/10/12 19:44:04 jer Exp $
+
+  12 Oct 2009; Jeroen Roovers <jer@gentoo.org> qscintilla-2.4.ebuild:
+  Stable for HPPA (bug #284707).
 
   06 Oct 2009; Dominik Kapusta <ayoy@gentoo.org> qscintilla-2.1-r1.ebuild,
   qscintilla-2.2.ebuild, qscintilla-2.3.ebuild:



1.5                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.4&r2=1.5

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qscintilla-2.4.ebuild	27 Sep 2009 18:28:38 -0000	1.4
+++ qscintilla-2.4.ebuild	12 Oct 2009 19:44:04 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.4 2009/09/27 18:28:38 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.5 2009/10/12 19:44:04 jer Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="doc python +qt4"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4 )






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2009-10-18 14:48 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2009-10-18 14:48 UTC (permalink / raw
  To: gentoo-commits

armin76     09/10/18 14:48:05

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  alpha/ia64/sparc stable wrt #284707
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.32                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	12 Oct 2009 19:44:04 -0000	1.31
+++ ChangeLog	18 Oct 2009 14:48:05 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.31 2009/10/12 19:44:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.32 2009/10/18 14:48:05 armin76 Exp $
+
+  18 Oct 2009; Raúl Porcel <armin76@gentoo.org> qscintilla-2.4.ebuild:
+  alpha/ia64/sparc stable wrt #284707
 
   12 Oct 2009; Jeroen Roovers <jer@gentoo.org> qscintilla-2.4.ebuild:
   Stable for HPPA (bug #284707).



1.6                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.5&r2=1.6

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qscintilla-2.4.ebuild	12 Oct 2009 19:44:04 -0000	1.5
+++ qscintilla-2.4.ebuild	18 Oct 2009 14:48:05 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.5 2009/10/12 19:44:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.6 2009/10/18 14:48:05 armin76 Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="doc python +qt4"
 
 RDEPEND="qt4? ( x11-libs/qt-gui:4 )






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2010-01-06 21:10 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2010-01-06 21:10 UTC (permalink / raw
  To: gentoo-commits

ranger      10/01/06 21:10:26

  Modified:             ChangeLog qscintilla-2.4.ebuild
  Log:
  Marking qscintilla-2.4 ppc64 for bug 284707
  (Portage version: 2.1.7.16/cvs/Linux ppc64)

Revision  Changes    Path
1.39                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	2 Jan 2010 21:17:54 -0000	1.38
+++ ChangeLog	6 Jan 2010 21:10:25 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.38 2010/01/02 21:17:54 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.39 2010/01/06 21:10:25 ranger Exp $
+
+  06 Jan 2010; Brent Baude <ranger@gentoo.org> qscintilla-2.4.ebuild:
+  Marking qscintilla-2.4 ppc64 for bug 284707
 
   02 Jan 2010; Ben de Groot <yngwin@gentoo.org> qscintilla-2.3.2.ebuild,
   qscintilla-2.4.ebuild:



1.9                  x11-libs/qscintilla/qscintilla-2.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild?r1=1.8&r2=1.9

Index: qscintilla-2.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qscintilla-2.4.ebuild	2 Jan 2010 21:17:54 -0000	1.8
+++ qscintilla-2.4.ebuild	6 Jan 2010 21:10:25 -0000	1.9
@@ -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/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.8 2010/01/02 21:17:54 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.9 2010/01/06 21:10:25 ranger Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="doc python"
 
 RDEPEND="x11-libs/qt-gui:4"






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild
@ 2010-12-19 18:59 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 8+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-12-19 18:59 UTC (permalink / raw
  To: gentoo-commits

arfrever    10/12/19 18:59:29

  Modified:             ChangeLog
  Removed:              qscintilla-2.4.ebuild
  Log:
  Delete older ebuild.
  
  (Portage version: 2.2.0_alpha9_p4/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 x11-libs/qscintilla/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	7 Nov 2010 15:50:30 -0000	1.55
+++ ChangeLog	19 Dec 2010 18:59:29 -0000	1.56
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/qscintilla
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.55 2010/11/07 15:50:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.56 2010/12/19 18:59:29 arfrever Exp $
+
+  19 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  -qscintilla-2.4.ebuild:
+  Delete.
 
   07 Nov 2010; Jeroen Roovers <jer@gentoo.org> qscintilla-2.4.ebuild,
   qscintilla-2.4.3.ebuild, qscintilla-2.4.5.ebuild:






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

end of thread, other threads:[~2010-12-19 18:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-18 14:48 [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2010-12-19 18:59 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-01-06 21:10 Brent Baude (ranger)
2009-10-12 19:44 Jeroen Roovers (jer)
2009-09-27 18:28 Gysbert Wassenaar (nixnut)
2009-09-22  7:33 Markus Meier (maekke)
2009-09-22  0:18 Christian Faulhammer (fauli)
2009-06-09 19:00 Markos Chandras (hwoarang)

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