public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-04-02 20:14 Mike Frysinger (vapier)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-02 20:14 UTC (permalink / raw
  To: gentoo-commits

vapier      13/04/02 20:14:20

  Modified:             ChangeLog
  Added:                nano-2.3.2.ebuild
  Log:
  Version bump #464222 by Joe M.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.288                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog	21 Feb 2013 05:32:41 -0000	1.287
+++ ChangeLog	2 Apr 2013 20:14:20 -0000	1.288
@@ -1,6 +1,12 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.287 2013/02/21 05:32:41 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.288 2013/04/02 20:14:20 vapier Exp $
+
+*nano-2.3.2 (02 Apr 2013)
+
+  02 Apr 2013; Mike Frysinger <vapier@gentoo.org>
+  +files/nano-2.3.2-bind-unbind-docs.patch, +nano-2.3.2.ebuild:
+  Version bump #464222 by Joe M.
 
   21 Feb 2013; Zac Medico <zmedico@gentoo.org> nano-2.3.1-r2.ebuild:
   Add ~arm-linux keyword.



1.1                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.1 2013/04/02 20:14:20 vapier Exp $

EAPI="3"

inherit eutils autotools
if [[ ${PV} == "9999" ]] ; then
	ESVN_REPO_URI="svn://svn.savannah.gnu.org/nano/trunk/nano"
	inherit subversion autotools
else
	MY_P=${PN}-${PV/_}
	SRC_URI="http://www.nano-editor.org/dist/v${PV:0:3}/${MY_P}.tar.gz"
fi

DESCRIPTION="GNU GPL'd Pico clone with more functionality"
HOMEPAGE="http://www.nano-editor.org/ http://www.gentoo.org/doc/en/nano-basics-guide.xml"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="debug justify +magic minimal ncurses nls slang spell unicode"

RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]
	magic? ( sys-apps/file )
	nls? ( virtual/libintl )
	!ncurses? ( slang? ( sys-libs/slang ) )"
DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext )
	virtual/pkgconfig"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-2.3.1-ncurses-pkg-config.patch
	epatch "${FILESDIR}"/${PN}-2.3.2-bind-unbind-docs.patch
	epatch "${FILESDIR}"/${PN}-2.3.1-{shell,gentoo}-nanorc.patch
	eautoreconf
}

src_configure() {
	eval export ac_cv_{header_magic_h,lib_magic_magic_open}=$(usex magic)
	econf \
		--bindir="${EPREFIX}"/bin \
		$(use_enable !minimal color) \
		$(use_enable !minimal multibuffer) \
		$(use_enable !minimal nanorc) \
		--disable-wrapping-as-root \
		$(use_enable spell speller) \
		$(use_enable justify) \
		$(use_enable debug) \
		$(use_enable nls) \
		$(use_enable unicode utf8) \
		$(use_enable minimal tiny) \
		$(usex ncurses --without-slang $(use_with slang))
}

src_install() {
	emake DESTDIR="${D}" install || die
	rm -rf "${ED}"/usr/share/nano/man-html

	dodoc ChangeLog README doc/nanorc.sample AUTHORS BUGS NEWS TODO
	dohtml doc/faq.html
	insinto /etc
	newins doc/nanorc.sample nanorc

	dodir /usr/bin
	dosym /bin/nano /usr/bin/nano
}





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-05-01 22:08 Mike Frysinger (vapier)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2013-05-01 22:08 UTC (permalink / raw
  To: gentoo-commits

vapier      13/05/01 22:08:31

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Force --with-wordbounds for glibc/uclibc targets so cross-compiles do not end up using *BSD styles on GNU systems #467848 by Dennis Schridde.
  
  (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.2                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nano-2.3.2.ebuild	2 Apr 2013 20:14:20 -0000	1.1
+++ nano-2.3.2.ebuild	1 May 2013 22:08:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.1 2013/04/02 20:14:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.2 2013/05/01 22:08:31 vapier Exp $
 
 EAPI="3"
 
@@ -38,6 +38,10 @@
 
 src_configure() {
 	eval export ac_cv_{header_magic_h,lib_magic_magic_open}=$(usex magic)
+	local myconf=()
+	case ${CHOST} in
+	*-gnu*|*-uclibc*) myconf+=( "--with-wordbounds" ) ;; #467848
+	esac
 	econf \
 		--bindir="${EPREFIX}"/bin \
 		$(use_enable !minimal color) \
@@ -50,7 +54,8 @@
 		$(use_enable nls) \
 		$(use_enable unicode utf8) \
 		$(use_enable minimal tiny) \
-		$(usex ncurses --without-slang $(use_with slang))
+		$(usex ncurses --without-slang $(use_with slang)) \
+		"${myconf[@]}"
 }
 
 src_install() {



1.289                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog	2 Apr 2013 20:14:20 -0000	1.288
+++ ChangeLog	1 May 2013 22:08:31 -0000	1.289
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.288 2013/04/02 20:14:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.289 2013/05/01 22:08:31 vapier Exp $
+
+  01 May 2013; Mike Frysinger <vapier@gentoo.org> nano-2.3.2.ebuild:
+  Force --with-wordbounds for glibc/uclibc targets so cross-compiles do not end
+  up using *BSD styles on GNU systems #467848 by Dennis Schridde.
 
 *nano-2.3.2 (02 Apr 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-19 10:33 Mikle Kolyada (zlogene)
  0 siblings, 0 replies; 11+ messages in thread
From: Mikle Kolyada (zlogene) @ 2013-06-19 10:33 UTC (permalink / raw
  To: gentoo-commits

zlogene     13/06/19 10:33:38

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  amd64 stable wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key 0xC42EB5D6)

Revision  Changes    Path
1.5                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nano-2.3.2.ebuild	19 Jun 2013 10:07:29 -0000	1.4
+++ nano-2.3.2.ebuild	19 Jun 2013 10:33:38 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.4 2013/06/19 10:07:29 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.5 2013/06/19 10:33:38 zlogene Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.292                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.291
retrieving revision 1.292
diff -u -r1.291 -r1.292
--- ChangeLog	19 Jun 2013 10:07:29 -0000	1.291
+++ ChangeLog	19 Jun 2013 10:33:38 -0000	1.292
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.291 2013/06/19 10:07:29 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.292 2013/06/19 10:33:38 zlogene Exp $
+
+  19 Jun 2013; Mikle Kolyada <zlogene@gentoo.org> nano-2.3.2.ebuild:
+  amd64 stable wrt bug #471406
 
   19 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> nano-2.3.2.ebuild:
   Stable on arm, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-24 16:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-24 16:49 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/24 16:49:36

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nano-2.3.2.ebuild	19 Jun 2013 12:19:31 -0000	1.6
+++ nano-2.3.2.ebuild	24 Jun 2013 16:49:36 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.6 2013/06/19 12:19:31 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.7 2013/06/24 16:49:36 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.294                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.293
retrieving revision 1.294
diff -u -r1.293 -r1.294
--- ChangeLog	19 Jun 2013 12:19:31 -0000	1.293
+++ ChangeLog	24 Jun 2013 16:49:36 -0000	1.294
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.293 2013/06/19 12:19:31 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.294 2013/06/24 16:49:36 ago Exp $
+
+  24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for ppc, wrt bug #471406
 
   19 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> nano-2.3.2.ebuild:
   Stable on x86, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-25 10:19 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-25 10:19 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/25 10:19:42

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nano-2.3.2.ebuild	24 Jun 2013 16:49:36 -0000	1.7
+++ nano-2.3.2.ebuild	25 Jun 2013 10:19:42 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.7 2013/06/24 16:49:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.8 2013/06/25 10:19:42 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.295                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- ChangeLog	24 Jun 2013 16:49:36 -0000	1.294
+++ ChangeLog	25 Jun 2013 10:19:42 -0000	1.295
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.294 2013/06/24 16:49:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.295 2013/06/25 10:19:42 ago Exp $
+
+  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for ppc64, wrt bug #471406
 
   24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for ppc, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-26  3:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-26  3:05 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/26 03:05:20

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nano-2.3.2.ebuild	25 Jun 2013 10:19:42 -0000	1.8
+++ nano-2.3.2.ebuild	26 Jun 2013 03:05:20 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.8 2013/06/25 10:19:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.9 2013/06/26 03:05:20 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.296                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.295
retrieving revision 1.296
diff -u -r1.295 -r1.296
--- ChangeLog	25 Jun 2013 10:19:42 -0000	1.295
+++ ChangeLog	26 Jun 2013 03:05:20 -0000	1.296
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.295 2013/06/25 10:19:42 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.296 2013/06/26 03:05:20 ago Exp $
+
+  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for alpha, wrt bug #471406
 
   25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for ppc64, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-26  8:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-26  8:58 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/26 08:58:23

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nano-2.3.2.ebuild	26 Jun 2013 03:05:20 -0000	1.9
+++ nano-2.3.2.ebuild	26 Jun 2013 08:58:23 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.9 2013/06/26 03:05:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.10 2013/06/26 08:58:23 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.297                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -r1.296 -r1.297
--- ChangeLog	26 Jun 2013 03:05:20 -0000	1.296
+++ ChangeLog	26 Jun 2013 08:58:23 -0000	1.297
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.296 2013/06/26 03:05:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.297 2013/06/26 08:58:23 ago Exp $
+
+  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for ia64, wrt bug #471406
 
   26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for alpha, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-29 16:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-29 16:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/29 16:32:05

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 app-editors/nano/nano-2.3.2.ebuild

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

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nano-2.3.2.ebuild	26 Jun 2013 08:58:23 -0000	1.10
+++ nano-2.3.2.ebuild	29 Jun 2013 16:32:04 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.10 2013/06/26 08:58:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.11 2013/06/29 16:32:04 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.298                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.297
retrieving revision 1.298
diff -u -r1.297 -r1.298
--- ChangeLog	26 Jun 2013 08:58:23 -0000	1.297
+++ ChangeLog	29 Jun 2013 16:32:04 -0000	1.298
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.297 2013/06/26 08:58:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.298 2013/06/29 16:32:04 ago Exp $
+
+  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for sparc, wrt bug #471406
 
   26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for ia64, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-06-30 18:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-30 18:08 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/30 18:08:33

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="s390", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 app-editors/nano/nano-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?r1=1.11&r2=1.12

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- nano-2.3.2.ebuild	29 Jun 2013 16:32:04 -0000	1.11
+++ nano-2.3.2.ebuild	30 Jun 2013 18:08:32 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.11 2013/06/29 16:32:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.12 2013/06/30 18:08:32 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.299                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.298
retrieving revision 1.299
diff -u -r1.298 -r1.299
--- ChangeLog	29 Jun 2013 16:32:04 -0000	1.298
+++ ChangeLog	30 Jun 2013 18:08:33 -0000	1.299
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.298 2013/06/29 16:32:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.299 2013/06/30 18:08:33 ago Exp $
+
+  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for s390, wrt bug #471406
 
   29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for sparc, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-07-02  7:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-02  7:43 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/02 07:43:30

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #471406
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sh", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 app-editors/nano/nano-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?r1=1.12&r2=1.13

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- nano-2.3.2.ebuild	30 Jun 2013 18:08:32 -0000	1.12
+++ nano-2.3.2.ebuild	2 Jul 2013 07:43:30 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.12 2013/06/30 18:08:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.13 2013/07/02 07:43:30 ago Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.300                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -r1.299 -r1.300
--- ChangeLog	30 Jun 2013 18:08:33 -0000	1.299
+++ ChangeLog	2 Jul 2013 07:43:30 -0000	1.300
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.299 2013/06/30 18:08:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.300 2013/07/02 07:43:30 ago Exp $
+
+  02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
+  Stable for sh, wrt bug #471406
 
   30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for s390, wrt bug #471406





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

* [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog
@ 2013-08-15 17:04 Mike Frysinger (vapier)
  0 siblings, 0 replies; 11+ messages in thread
From: Mike Frysinger (vapier) @ 2013-08-15 17:04 UTC (permalink / raw
  To: gentoo-commits

vapier      13/08/15 17:04:26

  Modified:             nano-2.3.2.ebuild ChangeLog
  Log:
  Mark m68k stable #471406.
  
  (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)

Revision  Changes    Path
1.14                 app-editors/nano/nano-2.3.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild?r1=1.13&r2=1.14

Index: nano-2.3.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- nano-2.3.2.ebuild	2 Jul 2013 07:43:30 -0000	1.13
+++ nano-2.3.2.ebuild	15 Aug 2013 17:04:26 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.13 2013/07/02 07:43:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.2.ebuild,v 1.14 2013/08/15 17:04:26 vapier Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug justify +magic minimal ncurses nls slang spell unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r1[unicode?]



1.301                app-editors/nano/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v
retrieving revision 1.300
retrieving revision 1.301
diff -u -r1.300 -r1.301
--- ChangeLog	2 Jul 2013 07:43:30 -0000	1.300
+++ ChangeLog	15 Aug 2013 17:04:26 -0000	1.301
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nano
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.300 2013/07/02 07:43:30 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.301 2013/08/15 17:04:26 vapier Exp $
+
+  15 Aug 2013; Mike Frysinger <vapier@gentoo.org> nano-2.3.2.ebuild:
+  Mark m68k stable #471406.
 
   02 Jul 2013; Agostino Sarubbo <ago@gentoo.org> nano-2.3.2.ebuild:
   Stable for sh, wrt bug #471406





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

end of thread, other threads:[~2013-08-15 17:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-19 10:33 [gentoo-commits] gentoo-x86 commit in app-editors/nano: nano-2.3.2.ebuild ChangeLog Mikle Kolyada (zlogene)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-15 17:04 Mike Frysinger (vapier)
2013-07-02  7:43 Agostino Sarubbo (ago)
2013-06-30 18:08 Agostino Sarubbo (ago)
2013-06-29 16:32 Agostino Sarubbo (ago)
2013-06-26  8:58 Agostino Sarubbo (ago)
2013-06-26  3:05 Agostino Sarubbo (ago)
2013-06-25 10:19 Agostino Sarubbo (ago)
2013-06-24 16:49 Agostino Sarubbo (ago)
2013-05-01 22:08 Mike Frysinger (vapier)
2013-04-02 20:14 Mike Frysinger (vapier)

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