diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2015-03-25 21:34:59 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2015-03-25 21:34:59 +0000 |
commit | 07ee9af0462c23415c8c4fa604256b34c7a54e09 (patch) | |
tree | fe1c69bbc6b3b0d5fe25e93296f33d95919986d1 /dev-util/re2c | |
parent | Declare loop iterators as local. (diff) | |
download | gentoo-2-07ee9af0462c23415c8c4fa604256b34c7a54e09.tar.gz gentoo-2-07ee9af0462c23415c8c4fa604256b34c7a54e09.tar.bz2 gentoo-2-07ee9af0462c23415c8c4fa604256b34c7a54e09.zip |
Version bump.
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-util/re2c')
-rw-r--r-- | dev-util/re2c/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/re2c/re2c-0.14.2.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-util/re2c/ChangeLog b/dev-util/re2c/ChangeLog index 0ee5043b2bd6..ee8c50d4be38 100644 --- a/dev-util/re2c/ChangeLog +++ b/dev-util/re2c/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/re2c # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.88 2015/02/28 13:56:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/ChangeLog,v 1.89 2015/03/25 21:34:59 slyfox Exp $ + +*re2c-0.14.2 (25 Mar 2015) + + 25 Mar 2015; Sergei Trofimovich <slyfox@gentoo.org> +re2c-0.14.2.ebuild: + Version bump. 28 Feb 2015; Agostino Sarubbo <ago@gentoo.org> re2c-0.13.7.5.ebuild: Stable for ia64, wrt bug #535406 diff --git a/dev-util/re2c/re2c-0.14.2.ebuild b/dev-util/re2c/re2c-0.14.2.ebuild new file mode 100644 index 000000000000..06bf29f484e8 --- /dev/null +++ b/dev-util/re2c/re2c-0.14.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/re2c/re2c-0.14.2.ebuild,v 1.1 2015/03/25 21:34:59 slyfox Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="tool for generating C-based recognizers from regular expressions" +HOMEPAGE="http://re2c.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" + +src_prepare() { + epatch_user +} + +src_install() { + default + + dodoc README CHANGELOG doc/* + docinto examples + dodoc examples/*.c examples/*.re +} |