diff options
author | Fabian Groffen <grobian@gentoo.org> | 2015-04-19 07:42:27 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2015-04-19 07:42:27 +0000 |
commit | 68cf9a689ed5afd4132ce0e0a45d97115dda4bd4 (patch) | |
tree | 96aa45a6c82a3111632b4043360c5459745e8f26 /dev-util | |
parent | Cleanup (diff) | |
download | gentoo-2-68cf9a689ed5afd4132ce0e0a45d97115dda4bd4.tar.gz gentoo-2-68cf9a689ed5afd4132ce0e0a45d97115dda4bd4.tar.bz2 gentoo-2-68cf9a689ed5afd4132ce0e0a45d97115dda4bd4.zip |
Version bump, bug #546806
(Portage version: 2.2.14-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/uncrustify/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.61.ebuild | 29 |
2 files changed, 36 insertions, 2 deletions
diff --git a/dev-util/uncrustify/ChangeLog b/dev-util/uncrustify/ChangeLog index e7864d2acbee..9d39d0492a2e 100644 --- a/dev-util/uncrustify/ChangeLog +++ b/dev-util/uncrustify/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/uncrustify -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.22 2014/04/14 06:40:55 alexxy Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/ChangeLog,v 1.23 2015/04/19 07:42:27 grobian Exp $ + +*uncrustify-0.61 (19 Apr 2015) + + 19 Apr 2015; Fabian Groffen <grobian@gentoo.org> +uncrustify-0.61.ebuild: + Version bump, bug #546806 *uncrustify-9999 (14 Apr 2014) diff --git a/dev-util/uncrustify/uncrustify-0.61.ebuild b/dev-util/uncrustify/uncrustify-0.61.ebuild new file mode 100644 index 000000000000..e66756653498 --- /dev/null +++ b/dev-util/uncrustify/uncrustify-0.61.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/uncrustify/uncrustify-0.61.ebuild,v 1.1 2015/04/19 07:42:27 grobian Exp $ + +EAPI="3" + +inherit eutils + +DESCRIPTION="C/C++/C#/D/Java/Pawn code indenter and beautifier" +HOMEPAGE="http://uncrustify.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris" +IUSE="test" + +DEPEND="test? ( =dev-lang/python-2* )" +RDEPEND="" + +src_test() { + cd tests + python2 run_tests.py || die "tests failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "Install failed" + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" +} |