public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2011-08-14  8:51 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Mueller (ulm) @ 2011-08-14  8:51 UTC (permalink / raw
  To: gentoo-commits

ulm         11/08/14 08:50:59

  Modified:             ChangeLog
  Added:                qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Don't strip binaries in Makefile. Remove RESTRICT=strip.
  
  (Portage version: 2.1.10.11/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	9 Dec 2009 16:02:19 -0000	1.50
+++ ChangeLog	14 Aug 2011 08:50:59 -0000	1.51
@@ -1,6 +1,13 @@
 # ChangeLog for app-editors/qemacs
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.50 2009/12/09 16:02:19 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.51 2011/08/14 08:50:59 ulm Exp $
+
+*qemacs-0.4.0_pre20090420-r1 (14 Aug 2011)
+
+  14 Aug 2011; Ulrich Mueller <ulm@gentoo.org>
+  +qemacs-0.4.0_pre20090420-r1.ebuild,
+  +files/qemacs-0.4.0_pre20090420-nostrip.patch:
+  Don't strip binaries in Makefile. Remove RESTRICT=strip.
 
   09 Dec 2009; Christian Faulhammer <fauli@gentoo.org>
   -files/qemacs-0.3.1-manpage-ref-fix.patch,



1.1                  app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

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

Index: qemacs-0.4.0_pre20090420-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.1 2011/08/14 08:50:59 ulm Exp $

EAPI=4

inherit eutils flag-o-matic toolchain-funcs

DESCRIPTION="QEmacs is a very small but powerful UNIX editor"
HOMEPAGE="http://savannah.nongnu.org/projects/qemacs"
SRC_URI="mirror://gentoo/${P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X png unicode xv"
RESTRICT="test"

RDEPEND="
	X? ( x11-libs/libX11
		x11-libs/libXext
		xv? ( x11-libs/libXv ) )
	png? ( >=media-libs/libpng-1.2 )"

DEPEND="${RDEPEND}
	app-text/texi2html"

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

src_prepare() {
	# Removes forced march setting and align-functions on x86, as they
	# would override user's CFLAGS..
	epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-Makefile.patch"
	# Make backup files optional
	epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-make_backup.patch"
	# Suppress stripping
	epatch "${FILESDIR}/${P}-nostrip.patch"

	use unicode && epatch "${FILESDIR}/${PN}-0.3.2_pre20070226-tty_utf8.patch"

	# Change the manpage to reference a /real/ file instead of just an
	# approximation.  Purely cosmetic!
	sed -i "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
}

src_configure() {
	# when using any other CFLAGS than -O0, qemacs will segfault on startup,
	# see bug 92011
	replace-flags -O? -O0
	econf --cc="$(tc-getCC)" \
		$(use_enable X x11) \
		$(use_enable png) \
		$(use_enable xv)
}

src_compile() {
	# Does not support parallel building.
	emake -j1
}

src_install() {
	emake install DESTDIR="${D}"
	dodoc Changelog README TODO config.eg
	dohtml *.html

	# Fix man page location
	mv "${D}"/usr/{,share/}man || die

	# Install headers so users can build their own plugins.
	insinto /usr/include/qe
	doins cfb.h config.h cutils.h display.h fbfrender.h libfbf.h qe.h \
		qeconfig.h qestyles.h qfribidi.h
	cd libqhtml
	insinto /usr/include/qe/libqhtml
	doins css.h cssid.h htmlent.h
}






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2012-05-04 10:59 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-05-04 10:59 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/05/04 10:59:35

  Modified:             ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Fix compability with app-text/texi2html >= 5 by vadmeste (from Freenode)
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.52                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	14 Aug 2011 08:50:59 -0000	1.51
+++ ChangeLog	4 May 2012 10:59:35 -0000	1.52
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/qemacs
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.51 2011/08/14 08:50:59 ulm Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.52 2012/05/04 10:59:35 ssuominen Exp $
+
+  04 May 2012; Samuli Suominen <ssuominen@gentoo.org>
+  qemacs-0.4.0_pre20090420-r1.ebuild:
+  Fix compability with app-text/texi2html >= 5 by vadmeste (from Freenode)
 
 *qemacs-0.4.0_pre20090420-r1 (14 Aug 2011)
 



1.2                  app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

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

Index: qemacs-0.4.0_pre20090420-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qemacs-0.4.0_pre20090420-r1.ebuild	14 Aug 2011 08:50:59 -0000	1.1
+++ qemacs-0.4.0_pre20090420-r1.ebuild	4 May 2012 10:59:35 -0000	1.2
@@ -1,9 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.1 2011/08/14 08:50:59 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.2 2012/05/04 10:59:35 ssuominen Exp $
 
 EAPI=4
-
 inherit eutils flag-o-matic toolchain-funcs
 
 DESCRIPTION="QEmacs is a very small but powerful UNIX editor"
@@ -14,40 +13,47 @@
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="X png unicode xv"
+
 RESTRICT="test"
 
-RDEPEND="
-	X? ( x11-libs/libX11
+RDEPEND="png? ( media-libs/libpng:0 )
+	X? (
+		x11-libs/libX11
 		x11-libs/libXext
-		xv? ( x11-libs/libXv ) )
-	png? ( >=media-libs/libpng-1.2 )"
-
+		xv? ( x11-libs/libXv )
+		)"
 DEPEND="${RDEPEND}
-	app-text/texi2html"
+	>=app-text/texi2html-5"
+
+S=${WORKDIR}/${PN}
 
-S="${WORKDIR}/${PN}"
+DOCS="Changelog config.eg README TODO"
 
 src_prepare() {
 	# Removes forced march setting and align-functions on x86, as they
 	# would override user's CFLAGS..
-	epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-Makefile.patch"
+	epatch "${FILESDIR}"/${PN}-0.4.0_pre20080605-Makefile.patch
 	# Make backup files optional
-	epatch "${FILESDIR}/${PN}-0.4.0_pre20080605-make_backup.patch"
+	epatch "${FILESDIR}"/${PN}-0.4.0_pre20080605-make_backup.patch
 	# Suppress stripping
-	epatch "${FILESDIR}/${P}-nostrip.patch"
+	epatch "${FILESDIR}"/${P}-nostrip.patch
 
-	use unicode && epatch "${FILESDIR}/${PN}-0.3.2_pre20070226-tty_utf8.patch"
+	use unicode && epatch "${FILESDIR}"/${PN}-0.3.2_pre20070226-tty_utf8.patch
 
 	# Change the manpage to reference a /real/ file instead of just an
 	# approximation.  Purely cosmetic!
-	sed -i "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
+	sed -i -e "s,^/usr/share/doc/qe,&-${PVR}," qe.1 || die
+
+	# Fix compability with app-text/texi2html >= 5
+	sed -i -e '/texi2html/s:-number:&-sections:' Makefile || die
 }
 
 src_configure() {
 	# when using any other CFLAGS than -O0, qemacs will segfault on startup,
 	# see bug 92011
 	replace-flags -O? -O0
-	econf --cc="$(tc-getCC)" \
+	econf \
+		--cc="$(tc-getCC)" \
 		$(use_enable X x11) \
 		$(use_enable png) \
 		$(use_enable xv)
@@ -59,18 +65,19 @@
 }
 
 src_install() {
-	emake install DESTDIR="${D}"
-	dodoc Changelog README TODO config.eg
+	default
+
 	dohtml *.html
 
 	# Fix man page location
-	mv "${D}"/usr/{,share/}man || die
+	mv -vf "${ED}"/usr/{,share/}man || die
 
 	# Install headers so users can build their own plugins.
 	insinto /usr/include/qe
-	doins cfb.h config.h cutils.h display.h fbfrender.h libfbf.h qe.h \
-		qeconfig.h qestyles.h qfribidi.h
-	cd libqhtml
+	doins {cfb,config,cutils,display,fbfrender,libfbf,qe,qeconfig,qestyles,qfribidi}.h
+
+	pushd libqhtml >/dev/null
 	insinto /usr/include/qe/libqhtml
 	doins css.h cssid.h htmlent.h
+	popd >/dev/null
 }






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2012-05-06 21:05 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-05-06 21:05 UTC (permalink / raw
  To: gentoo-commits

ulm         12/05/06 21:05:47

  Modified:             ChangeLog
  Removed:              qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Revert.
  
  (Portage version: 2.1.10.57/cvs/Linux x86_64)

Revision  Changes    Path
1.54                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	6 May 2012 20:46:45 -0000	1.53
+++ ChangeLog	6 May 2012 21:05:47 -0000	1.54
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.53 2012/05/06 20:46:45 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.54 2012/05/06 21:05:47 ulm Exp $
+
+  06 May 2012; Ulrich Müller <ulm@gentoo.org>
+  -qemacs-0.4.0_pre20090420-r1.ebuild:
+  Revert.
 
   06 May 2012; Samuli Suominen <ssuominen@gentoo.org>
   qemacs-0.4.0_pre20090420.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2012-05-06 22:16 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-05-06 22:16 UTC (permalink / raw
  To: gentoo-commits

ulm         12/05/06 22:16:14

  Modified:             ChangeLog
  Added:                qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Fix compatibility with >=texi2html-5, bug 414927. Update libpng dependency.
  Other minor fixups.
  
  (Portage version: 2.1.10.57/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	6 May 2012 21:14:27 -0000	1.55
+++ ChangeLog	6 May 2012 22:16:14 -0000	1.56
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.55 2012/05/06 21:14:27 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.56 2012/05/06 22:16:14 ulm Exp $
+
+  06 May 2012; Ulrich Müller <ulm@gentoo.org>
+  qemacs-0.4.0_pre20090420-r1.ebuild:
+  Fix compatibility with >=texi2html-5, bug 414927. Update libpng dependency.
+  Other minor fixups.
 
   06 May 2012; Ulrich Müller <ulm@gentoo.org>
   qemacs-0.4.0_pre20090420-r1.ebuild:



1.6                  app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

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







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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2012-05-10 12:48 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-10 12:48 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/10 12:48:04

  Modified:             ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Stable for amd64, wrt bug #414945
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	6 May 2012 22:16:14 -0000	1.56
+++ ChangeLog	10 May 2012 12:48:04 -0000	1.57
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.56 2012/05/06 22:16:14 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.57 2012/05/10 12:48:04 ago Exp $
+
+  10 May 2012; Agostino Sarubbo <ago@gentoo.org>
+  qemacs-0.4.0_pre20090420-r1.ebuild:
+  Stable for amd64, wrt bug #414945
 
   06 May 2012; Ulrich Müller <ulm@gentoo.org>
   qemacs-0.4.0_pre20090420-r1.ebuild:



1.7                  app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

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

Index: qemacs-0.4.0_pre20090420-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qemacs-0.4.0_pre20090420-r1.ebuild	6 May 2012 22:16:14 -0000	1.6
+++ qemacs-0.4.0_pre20090420-r1.ebuild	10 May 2012 12:48:04 -0000	1.7
@@ -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/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.6 2012/05/06 22:16:14 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.7 2012/05/10 12:48:04 ago Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="X png unicode xv"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2012-06-15 10:03 Johannes Huber (johu)
  0 siblings, 0 replies; 7+ messages in thread
From: Johannes Huber (johu) @ 2012-06-15 10:03 UTC (permalink / raw
  To: gentoo-commits

johu        12/06/15 10:03:00

  Modified:             ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Stable for x86, wrt bug #414945
  
  (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)

Revision  Changes    Path
1.58                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	10 May 2012 12:48:04 -0000	1.57
+++ ChangeLog	15 Jun 2012 10:03:00 -0000	1.58
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.57 2012/05/10 12:48:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.58 2012/06/15 10:03:00 johu Exp $
+
+  15 Jun 2012; Johannes Huber <johu@gentoo.org>
+  qemacs-0.4.0_pre20090420-r1.ebuild:
+  Stable for x86, wrt bug #414945
 
   10 May 2012; Agostino Sarubbo <ago@gentoo.org>
   qemacs-0.4.0_pre20090420-r1.ebuild:



1.8                  app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?r1=1.7&r2=1.8

Index: qemacs-0.4.0_pre20090420-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qemacs-0.4.0_pre20090420-r1.ebuild	10 May 2012 12:48:04 -0000	1.7
+++ qemacs-0.4.0_pre20090420-r1.ebuild	15 Jun 2012 10:03:00 -0000	1.8
@@ -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/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.7 2012/05/10 12:48:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.8 2012/06/15 10:03:00 johu Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="X png unicode xv"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
@ 2013-04-14 16:05 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Mueller (ulm) @ 2013-04-14 16:05 UTC (permalink / raw
  To: gentoo-commits

ulm         13/04/14 16:05:04

  Modified:             ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild
  Log:
  Add slot operator to libpng dependency. Update EAPI to 5. Specify LICENSE more precisely.
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)

Revision  Changes    Path
1.61                 app-editors/qemacs/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	28 Feb 2013 00:33:54 -0000	1.60
+++ ChangeLog	14 Apr 2013 16:05:04 -0000	1.61
@@ -1,6 +1,11 @@
 # ChangeLog for app-editors/qemacs
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.60 2013/02/28 00:33:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/ChangeLog,v 1.61 2013/04/14 16:05:04 ulm Exp $
+
+  14 Apr 2013; Ulrich Müller <ulm@gentoo.org>
+  qemacs-0.4.0_pre20090420-r1.ebuild:
+  Add slot operator to libpng dependency. Update EAPI to 5. Specify LICENSE
+  more precisely.
 
   28 Feb 2013; Mike Frysinger <vapier@gentoo.org>
   qemacs-0.4.0_pre20090420-r1.ebuild:



1.10                 app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild?r1=1.9&r2=1.10

Index: qemacs-0.4.0_pre20090420-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- qemacs-0.4.0_pre20090420-r1.ebuild	28 Feb 2013 00:33:54 -0000	1.9
+++ qemacs-0.4.0_pre20090420-r1.ebuild	14 Apr 2013 16:05:04 -0000	1.10
@@ -1,8 +1,8 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.9 2013/02/28 00:33:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/qemacs/qemacs-0.4.0_pre20090420-r1.ebuild,v 1.10 2013/04/14 16:05:04 ulm Exp $
 
-EAPI=4
+EAPI=5
 
 inherit eutils flag-o-matic toolchain-funcs
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://savannah.nongnu.org/projects/qemacs"
 SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
-LICENSE="LGPL-2.1"
+LICENSE="LGPL-2.1+ GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 arm ~ppc x86"
 IUSE="X png unicode xv"
@@ -20,7 +20,7 @@
 	X? ( x11-libs/libX11
 		x11-libs/libXext
 		xv? ( x11-libs/libXv ) )
-	png? ( >=media-libs/libpng-1.2:0 )"
+	png? ( >=media-libs/libpng-1.2:0= )"
 
 DEPEND="${RDEPEND}
 	>=app-text/texi2html-5"





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

end of thread, other threads:[~2013-04-14 16:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-14  8:51 [gentoo-commits] gentoo-x86 commit in app-editors/qemacs: ChangeLog qemacs-0.4.0_pre20090420-r1.ebuild Ulrich Mueller (ulm)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-04 10:59 Samuli Suominen (ssuominen)
2012-05-06 21:05 Ulrich Mueller (ulm)
2012-05-06 22:16 Ulrich Mueller (ulm)
2012-05-10 12:48 Agostino Sarubbo (ago)
2012-06-15 10:03 Johannes Huber (johu)
2013-04-14 16:05 Ulrich Mueller (ulm)

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