commit: 44cf20d6bf920378d0e1e7a66d8e9869c99124d7 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org> AuthorDate: Wed Aug 10 19:01:44 2016 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Wed Aug 10 19:01:54 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44cf20d6
dev-util/shunit2: revision bump with various fixes * Port to EAPI 6 * Remove unused dependencies (there no longer is a compile phase) * Remove unused eclass inherit * Remove unused USE flags * Remove redundant die calls Package-Manager: portage-2.3.0 dev-util/shunit2/shunit2-2.1.6-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-util/shunit2/shunit2-2.1.6-r1.ebuild b/dev-util/shunit2/shunit2-2.1.6-r1.ebuild new file mode 100644 index 0000000..22a6bf7 --- /dev/null +++ b/dev-util/shunit2/shunit2-2.1.6-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +DESCRIPTION="Unit-test framework for Bourne-based shell scripts" +HOMEPAGE="https://github.com/kward/shunit2" +SRC_URI="https://shunit2.googlecode.com/files/${P}.tgz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_install() { + dobin src/shunit2 + + # For backwards compat to <=2.1.5 + dosym /usr/bin/shunit2 /usr/share/shunit2/shunit2 + + dodoc -r examples + dodoc doc/*.txt + + docinto html + dodoc doc/*.{html,css} +}
