public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog
@ 2011-11-30 18:48 Krzysztof Pawlik (nelchael)
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Pawlik (nelchael) @ 2011-11-30 18:48 UTC (permalink / raw
  To: gentoo-commits

nelchael    11/11/30 18:48:20

  Modified:             ChangeLog
  Added:                scite-3.0.1.ebuild
  Log:
  Version bump to 3.0.1, update to EAPI 4, see bug #380061 and bug #392485.
  
  (Portage version: 2.1.10.38/cvs/Linux x86_64)

Revision  Changes    Path
1.122                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.121&r2=1.122

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	13 Aug 2011 15:55:04 -0000	1.121
+++ ChangeLog	30 Nov 2011 18:48:20 -0000	1.122
@@ -1,6 +1,12 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.121 2011/08/13 15:55:04 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.122 2011/11/30 18:48:20 nelchael Exp $
+
+*scite-3.0.1 (30 Nov 2011)
+
+  30 Nov 2011; Krzysztof Pawlik <nelchael@gentoo.org> +scite-3.0.1.ebuild,
+  +files/scite-3.0.1-no-lua.patch:
+  Version bump to 3.0.1, update to EAPI 4, see bug #380061 and bug #392485.
 
 *scite-2.28 (13 Aug 2011)
 



1.1                  app-editors/scite/scite-3.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.1&content-type=text/plain

Index: scite-3.0.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.1 2011/11/30 18:48:20 nelchael Exp $

EAPI="4"

inherit toolchain-funcs eutils

MY_PV=${PV//./}
DESCRIPTION="A very powerful editor for programmers"
HOMEPAGE="http://www.scintilla.org/SciTE.html"
SRC_URI="mirror://sourceforge/scintilla/${PN}${MY_PV}.tgz"

LICENSE="Scintilla"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="lua"

RDEPEND="x11-libs/gtk+:2
	lua? ( >=dev-lang/lua-5 )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	>=sys-apps/sed-4"

S="${WORKDIR}/${PN}/gtk"

src_prepare() {
	cd "${WORKDIR}/scintilla/gtk"
	sed -i makefile \
		-e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \
		-e "s#^\(CXXFLAGS=.*\)-Os#\1#" \
		-e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \
		-e "s#-Os##" \
		|| die "error patching makefile"

	cd "${WORKDIR}/scite/gtk"
	sed -i makefile \
		-e "s#-rdynamic#-rdynamic ${LDFLAGS}#" \
		|| die "error patching makefile"

	cd "${S}"
	sed -i makefile \
		-e 's#usr/local#usr#g' \
		-e 's#/gnome/apps/Applications#/applications#' \
		-e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \
		-e "s#^\(CXXFLAGS=.*\)-Os#\1#" \
		-e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \
		-e 's#${D}##' \
		-e 's#-g root#-g 0#' \
		-e "s#-Os##" \
		|| die "error patching makefile"
	cd "${WORKDIR}"
	epatch "${FILESDIR}/${PN}-3.0.1-no-lua.patch"
}

src_compile() {
	emake -C ../../scintilla/gtk
	if use lua; then
		emake
	else
		emake NO_LUA=1
	fi
}

src_install() {
	dodir /usr/bin
	dodir /usr/share/{pixmaps,applications}

	emake prefix="${D}/usr" install

	# we have to keep this because otherwise it'll break upgrading
	mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite" || die
	dosym /usr/bin/scite /usr/bin/SciTE

	# replace .desktop file with our own working version
	rm -f "${D}/usr/share/applications/SciTE.desktop"
	insinto /usr/share/applications
	doins "${FILESDIR}/scite.desktop"

	doman ../doc/scite.1
	dodoc ../README
}






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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog
@ 2011-11-30 19:05 Krzysztof Pawlik (nelchael)
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Pawlik (nelchael) @ 2011-11-30 19:05 UTC (permalink / raw
  To: gentoo-commits

nelchael    11/11/30 19:05:10

  Modified:             scite-3.0.1.ebuild ChangeLog
  Log:
  Use ED instead of D as suggested by Agostino Sarubbo in bug #380061.
  
  (Portage version: 2.1.10.38/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  app-editors/scite/scite-3.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?r1=1.1&r2=1.2

Index: scite-3.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scite-3.0.1.ebuild	30 Nov 2011 18:48:20 -0000	1.1
+++ scite-3.0.1.ebuild	30 Nov 2011 19:05:10 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.1 2011/11/30 18:48:20 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.2 2011/11/30 19:05:10 nelchael Exp $
 
 EAPI="4"
 
@@ -66,14 +66,14 @@
 	dodir /usr/bin
 	dodir /usr/share/{pixmaps,applications}
 
-	emake prefix="${D}/usr" install
+	emake prefix="${ED}/usr" install
 
 	# we have to keep this because otherwise it'll break upgrading
-	mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite" || die
+	mv "${ED}/usr/bin/SciTE" "${ED}/usr/bin/scite" || die
 	dosym /usr/bin/scite /usr/bin/SciTE
 
 	# replace .desktop file with our own working version
-	rm -f "${D}/usr/share/applications/SciTE.desktop"
+	rm -f "${ED}/usr/share/applications/SciTE.desktop"
 	insinto /usr/share/applications
 	doins "${FILESDIR}/scite.desktop"
 



1.123                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	30 Nov 2011 18:48:20 -0000	1.122
+++ ChangeLog	30 Nov 2011 19:05:10 -0000	1.123
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.122 2011/11/30 18:48:20 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.123 2011/11/30 19:05:10 nelchael Exp $
+
+  30 Nov 2011; Krzysztof Pawlik <nelchael@gentoo.org> scite-3.0.1.ebuild:
+  Use ED instead of D as suggested by Agostino Sarubbo in bug #380061.
 
 *scite-3.0.1 (30 Nov 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog
@ 2012-01-28 11:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-01-28 11:07 UTC (permalink / raw
  To: gentoo-commits

ago         12/01/28 11:07:24

  Modified:             scite-3.0.1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #401097
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  app-editors/scite/scite-3.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?r1=1.3&r2=1.4

Index: scite-3.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- scite-3.0.1.ebuild	27 Jan 2012 23:21:34 -0000	1.3
+++ scite-3.0.1.ebuild	28 Jan 2012 11:07:24 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.3 2012/01/27 23:21:34 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.4 2012/01/28 11:07:24 ago Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND="dev-libs/glib



1.128                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.127&r2=1.128

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	27 Jan 2012 23:21:34 -0000	1.127
+++ ChangeLog	28 Jan 2012 11:07:24 -0000	1.128
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.127 2012/01/27 23:21:34 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.128 2012/01/28 11:07:24 ago Exp $
+
+  28 Jan 2012; Agostino Sarubbo <ago@gentoo.org> scite-3.0.1.ebuild:
+  Stable for amd64, wrt bug #401097
 
   27 Jan 2012; Krzysztof Pawlik <nelchael@gentoo.org> scite-3.0.1.ebuild,
   scite-3.0.2.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog
@ 2012-02-06 17:22 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2012-02-06 17:22 UTC (permalink / raw
  To: gentoo-commits

ranger      12/02/06 17:22:22

  Modified:             scite-3.0.1.ebuild ChangeLog
  Log:
  Marking scite-3.0.1 ppc for bug 401097
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  app-editors/scite/scite-3.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?r1=1.4&r2=1.5

Index: scite-3.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- scite-3.0.1.ebuild	28 Jan 2012 11:07:24 -0000	1.4
+++ scite-3.0.1.ebuild	6 Feb 2012 17:22:22 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.4 2012/01/28 11:07:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.5 2012/02/06 17:22:22 ranger Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ~x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND="dev-libs/glib



1.129                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.128&r2=1.129

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog	28 Jan 2012 11:07:24 -0000	1.128
+++ ChangeLog	6 Feb 2012 17:22:22 -0000	1.129
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.128 2012/01/28 11:07:24 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.129 2012/02/06 17:22:22 ranger Exp $
+
+  06 Feb 2012; Brent Baude <ranger@gentoo.org> scite-3.0.1.ebuild:
+  Marking scite-3.0.1 ppc for bug 401097
 
   28 Jan 2012; Agostino Sarubbo <ago@gentoo.org> scite-3.0.1.ebuild:
   Stable for amd64, wrt bug #401097






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

* [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog
@ 2012-02-16 18:31 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-02-16 18:31 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/02/16 18:31:25

  Modified:             scite-3.0.1.ebuild ChangeLog
  Log:
  x86 stable wrt bug #401097
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.6                  app-editors/scite/scite-3.0.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild?r1=1.5&r2=1.6

Index: scite-3.0.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- scite-3.0.1.ebuild	6 Feb 2012 17:22:22 -0000	1.5
+++ scite-3.0.1.ebuild	16 Feb 2012 18:31:25 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.5 2012/02/06 17:22:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-3.0.1.ebuild,v 1.6 2012/02/16 18:31:25 phajdan.jr Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 
 LICENSE="Scintilla"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 IUSE="lua"
 
 RDEPEND="dev-libs/glib



1.130                app-editors/scite/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/scite/ChangeLog?r1=1.129&r2=1.130

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog	6 Feb 2012 17:22:22 -0000	1.129
+++ ChangeLog	16 Feb 2012 18:31:25 -0000	1.130
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/scite
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.129 2012/02/06 17:22:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.130 2012/02/16 18:31:25 phajdan.jr Exp $
+
+  16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> scite-3.0.1.ebuild:
+  x86 stable wrt bug #401097
 
   06 Feb 2012; Brent Baude <ranger@gentoo.org> scite-3.0.1.ebuild:
   Marking scite-3.0.1 ppc for bug 401097






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

end of thread, other threads:[~2012-02-16 18:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 18:48 [gentoo-commits] gentoo-x86 commit in app-editors/scite: scite-3.0.1.ebuild ChangeLog Krzysztof Pawlik (nelchael)
  -- strict thread matches above, loose matches on Subject: below --
2011-11-30 19:05 Krzysztof Pawlik (nelchael)
2012-01-28 11:07 Agostino Sarubbo (ago)
2012-02-06 17:22 Brent Baude (ranger)
2012-02-16 18:31 PaweA Hajdan (phajdan.jr)

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