public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-vcs/rcs: rcs-5.9.2.ebuild ChangeLog
@ 2014-11-13  1:13 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2014-11-13  1:13 UTC (permalink / raw
  To: gentoo-commits

idella4     14/11/13 01:13:52

  Modified:             ChangeLog
  Added:                rcs-5.9.2.ebuild
  Log:
  bump; add fix to break in configure, substitute dohtml in the doc install, fixes Bug #474842
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.29                 dev-vcs/rcs/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	10 Jun 2014 00:01:43 -0000	1.28
+++ ChangeLog	13 Nov 2014 01:13:52 -0000	1.29
@@ -1,6 +1,12 @@
 # ChangeLog for dev-vcs/rcs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.28 2014/06/10 00:01:43 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.29 2014/11/13 01:13:52 idella4 Exp $
+
+*rcs-5.9.2 (13 Nov 2014)
+
+  13 Nov 2014; Ian Delaney <idella4@gentoo.org> +rcs-5.9.2.ebuild:
+  bump; add fix to break in configure, substitute dohtml in the doc install,
+  fixes Bug #474842
 
   10 Jun 2014; Mike Frysinger <vapier@gentoo.org> rcs-5.8.2.ebuild:
   Add arm64 love.



1.1                  dev-vcs/rcs/rcs-5.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild?rev=1.1&content-type=text/plain

Index: rcs-5.9.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild,v 1.1 2014/11/13 01:13:52 idella4 Exp $

EAPI="4"

inherit eutils

DESCRIPTION="Revision Control System"
HOMEPAGE="http://www.gnu.org/software/rcs/"
SRC_URI="mirror://gnu/rcs/${P}.tar.xz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd \
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
IUSE="doc"

RDEPEND="sys-apps/diffutils"

src_prepare() {
	sed -i -e '/gets is a security hole/d' \
		lib/stdio.in.h || die

	# This breaks configure phase
	sed -e 's:ED=ed:ED=sed:' -i configure || die
}

src_install() {
	emake DESTDIR="${D}" install

	dodoc AUTHORS ChangeLog NEWS README

	if use doc; then
		emake -C doc html
		rm -R "${ED}/usr/share/doc/rcs"
		mv doc/rcs.html doc/html
		dodoc -r doc/html/
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-vcs/rcs: rcs-5.9.2.ebuild ChangeLog
@ 2014-11-13  2:10 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2014-11-13  2:10 UTC (permalink / raw
  To: gentoo-commits

idella4     14/11/13 02:10:02

  Modified:             rcs-5.9.2.ebuild ChangeLog
  Log:
  corrections to deps, rm un-needed workaround, courtesy of floppym
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-vcs/rcs/rcs-5.9.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild?r1=1.1&r2=1.2

Index: rcs-5.9.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rcs-5.9.2.ebuild	13 Nov 2014 01:13:52 -0000	1.1
+++ rcs-5.9.2.ebuild	13 Nov 2014 02:10:02 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild,v 1.1 2014/11/13 01:13:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/rcs-5.9.2.ebuild,v 1.2 2014/11/13 02:10:02 idella4 Exp $
 
 EAPI="4"
 
@@ -16,14 +16,14 @@
 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="doc"
 
-RDEPEND="sys-apps/diffutils"
+RDEPEND="
+	sys-apps/diffutils
+	sys-apps/ed"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
 	sed -i -e '/gets is a security hole/d' \
 		lib/stdio.in.h || die
-
-	# This breaks configure phase
-	sed -e 's:ED=ed:ED=sed:' -i configure || die
 }
 
 src_install() {



1.30                 dev-vcs/rcs/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/rcs/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	13 Nov 2014 01:13:52 -0000	1.29
+++ ChangeLog	13 Nov 2014 02:10:02 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-vcs/rcs
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.29 2014/11/13 01:13:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/rcs/ChangeLog,v 1.30 2014/11/13 02:10:02 idella4 Exp $
+
+  13 Nov 2014; Ian Delaney <idella4@gentoo.org> rcs-5.9.2.ebuild:
+  corrections to deps, rm un-needed workaround, courtesy of floppym
 
 *rcs-5.9.2 (13 Nov 2014)
 





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

end of thread, other threads:[~2014-11-13  2:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-13  2:10 [gentoo-commits] gentoo-x86 commit in dev-vcs/rcs: rcs-5.9.2.ebuild ChangeLog Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-13  1:13 Ian Delaney (idella4)

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