Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
slyfox 12/02/02 06:50:09
Modified: ChangeLog
Added: re2c-0.13.5-r1.ebuild
Log:
Cleanup ebuild: drop already applied patch, don't fix tarball permissions, switch to EAPI=4. Approved by robbat2.
(Portage version: 2.2.0_alpha84_p47/cvs/Linux x86_64)
Revision Changes Path
1.60 dev-util/re2c/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/re2c/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/re2c/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/re2c/ChangeLog?r1=1.59&r2=1.60
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog 30 Mar 2011 09:05:55 -0000 1.59
+++ ChangeLog 2 Feb 2012 06:50:09 -0000 1.60
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/re2c
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.59 2011/03/30 09:05:55 xmw Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.60 2012/02/02 06:50:09 slyfox Exp $
+
+*re2c-0.13.5-r1 (02 Feb 2012)
+
+ 02 Feb 2012; Sergei Trofimovich <slyfox@g.o> +re2c-0.13.5-r1.ebuild:
+ Cleanup ebuild: drop already applied patch, don't fix tarball permissions,
+ switch to EAPI=4. Approved by robbat2.
30 Mar 2011; Michael Weber <xmw@g.o> re2c-0.13.5.ebuild:
added ~arm (bug 302981)
1.1 dev-util/re2c/re2c-0.13.5-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/re2c/re2c-0.13.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/re2c/re2c-0.13.5-r1.ebuild?rev=1.1&content-type=text/plain
Index: re2c-0.13.5-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.13.5-r1.ebuild,v 1.1 2012/02/02 06:50:09 slyfox Exp $
EAPI=4
inherit eutils
DESCRIPTION="tool for generating C-based recognizers from regular expressions"
HOMEPAGE="http://re2c.sourceforge.net/"
MY_PV="${PV/_/.}"
MY_P="${PN}-${MY_PV}"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_install() {
dobin re2c
doman re2c.1
dodoc README CHANGELOG doc/*
docinto examples
dodoc examples/*.c examples/*.re
}
|
|