From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-util/lcov/Manifest | 3 +++ dev-util/lcov/files/lcov-1.9-gcc-4.7.patch | 29 +++++++++++++++++++++++++++++ dev-util/lcov/lcov-1.10.ebuild | 26 ++++++++++++++++++++++++++ dev-util/lcov/lcov-1.11.ebuild | 26 ++++++++++++++++++++++++++ dev-util/lcov/lcov-1.9-r1.ebuild | 30 ++++++++++++++++++++++++++++++ dev-util/lcov/metadata.xml | 8 ++++++++ 6 files changed, 122 insertions(+) create mode 100644 dev-util/lcov/Manifest create mode 100644 dev-util/lcov/files/lcov-1.9-gcc-4.7.patch create mode 100644 dev-util/lcov/lcov-1.10.ebuild create mode 100644 dev-util/lcov/lcov-1.11.ebuild create mode 100644 dev-util/lcov/lcov-1.9-r1.ebuild create mode 100644 dev-util/lcov/metadata.xml (limited to 'dev-util/lcov') diff --git a/dev-util/lcov/Manifest b/dev-util/lcov/Manifest new file mode 100644 index 000000000000..d6a19c0f6a3d --- /dev/null +++ b/dev-util/lcov/Manifest @@ -0,0 +1,3 @@ +DIST lcov-1.10.tar.gz 150174 SHA256 8a4661becc95fafad7875786672f7f29b080437825c3ff31d55a49492c15b88f SHA512 0fd94b04677dfaadc49a1c936638bbd09dff1fba07f3b2e7789ba6f6f7e2c58c5f5e69341bf33c9a3c3d8b3590a37cf87d1fbc04083736179a6cc56fc70c3c3f WHIRLPOOL fd89e3d3fd55dc4f92a8a216b88d4a99e1660efaa6097492b680a2e4293eac29fd88dcbbf83ec0b6a2b742d3dd76796e6ad9ce0e6306c2d88ae69b978f4f96aa +DIST lcov-1.11.tar.gz 155906 SHA256 c282de8d678ecbfda32ce4b5c85fc02f77c2a39a062f068bd8e774d29ddc9bf8 SHA512 db42256c7fbe00d17256ad4944b7e658e65f2dc2b9df1814e25d46a652e92a0ff8bacd4e68de743681df22f4352ffc82b3ccdc0a85723546d7eb64c92e28c0fe WHIRLPOOL 8309d97546a228e3c2c6a4cb95d2dc409be1dde46bd96821c83c3a8105e7026a64b2121f954fbe569f99a70ae4de3b936d7199ff8099bdedf3aee29ba684b3d0 +DIST lcov-1.9.tar.gz 140035 SHA256 c37e125d4f0773339de3600d45ad325fe710ea2f0051d7ee2b8a168f450f1aca SHA512 518f068d5eb4a805985863e7b755ae16b1b2ebb9e42cc57c5cda20a60f22e170c1e2957692086e5eeabe12ddbcf39132494aa2ea7ce33411e8abeddc759852ee WHIRLPOOL 2b7e6f1d743ded96e3ecc16c7733b8c76fccbf0aff07a02c02f3e3e08c9fb8f85aa35d4258830f17291fa5d4eedc554c808528b4158919c65439f524c5fd78c7 diff --git a/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch b/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch new file mode 100644 index 000000000000..1b9d6ac0ff21 --- /dev/null +++ b/dev-util/lcov/files/lcov-1.9-gcc-4.7.patch @@ -0,0 +1,29 @@ +fix from upstream to work with gcc-4.7 + +Index: bin/geninfo +=================================================================== +RCS file: /cvsroot/ltp/utils/analysis/lcov/bin/geninfo,v +retrieving revision 1.95 +retrieving revision 1.96 +diff -u -p -r1.95 -r1.96 +--- bin/geninfo 20 Jan 2012 11:53:57 -0000 1.95 ++++ bin/geninfo 10 Apr 2012 11:48:52 -0000 1.96 +@@ -61,6 +61,7 @@ if( $^O eq "msys" ) + our $gcov_tool = "gcov"; + our $tool_name = basename($0); + ++our $GCOV_VERSION_4_7_0 = 0x40700; + our $GCOV_VERSION_3_4_0 = 0x30400; + our $GCOV_VERSION_3_3_0 = 0x30300; + our $GCNO_FUNCTION_TAG = 0x01000000; +@@ -3023,5 +3024,10 @@ sub read_gcno_function_record(*$$$$) + graph_expect("function record"); + # Skip ident and checksum + graph_skip($handle, 8, "function ident and checksum") or return undef; ++ if ($gcov_version >= $GCOV_VERSION_4_7_0) { ++ # Skip extra checksum added by android 4.4.0 / gcc >= 4.7 ++ # toolchains. ++ graph_skip($handle, 4, "function extra checksum"); ++ } + # Read function name + graph_expect("function name"); diff --git a/dev-util/lcov/lcov-1.10.ebuild b/dev-util/lcov/lcov-1.10.ebuild new file mode 100644 index 000000000000..a79b90279f67 --- /dev/null +++ b/dev-util/lcov/lcov-1.10.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit eutils + +DESCRIPTION="A graphical front-end for GCC's coverage testing tool gcov" +HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php" +SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux ~x64-macos" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/perl-5 + dev-perl/GD[png]" + +src_compile() { :; } + +src_install() { + emake PREFIX="${ED}" install +} diff --git a/dev-util/lcov/lcov-1.11.ebuild b/dev-util/lcov/lcov-1.11.ebuild new file mode 100644 index 000000000000..51dadaae6e96 --- /dev/null +++ b/dev-util/lcov/lcov-1.11.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit eutils + +DESCRIPTION="A graphical front-end for GCC's coverage testing tool gcov" +HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php" +SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-linux ~x64-macos" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/perl-5 + dev-perl/GD[png]" + +src_compile() { :; } + +src_install() { + emake PREFIX="${ED}" install +} diff --git a/dev-util/lcov/lcov-1.9-r1.ebuild b/dev-util/lcov/lcov-1.9-r1.ebuild new file mode 100644 index 000000000000..ae20a944fe65 --- /dev/null +++ b/dev-util/lcov/lcov-1.9-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +inherit eutils + +DESCRIPTION="A graphical front-end for GCC's coverage testing tool gcov" +HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php" +SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ppc x86 ~x86-linux ~x64-macos" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/perl-5 + dev-perl/GD[png]" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc-4.7.patch +} + +src_compile() { :; } + +src_install() { + emake PREFIX="${ED}" install +} diff --git a/dev-util/lcov/metadata.xml b/dev-util/lcov/metadata.xml new file mode 100644 index 000000000000..a38465452764 --- /dev/null +++ b/dev-util/lcov/metadata.xml @@ -0,0 +1,8 @@ + + + + dev-tools + + ltp + + -- cgit v1.2.3-18-g5258