public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/
Date: Tue, 18 Oct 2016 19:26:42 +0000 (UTC)	[thread overview]
Message-ID: <1476818782.eec92eb44c6b9cb11d81b1f7d6a7cbbe8aa38e30.pacho@gentoo> (raw)

commit:     eec92eb44c6b9cb11d81b1f7d6a7cbbe8aa38e30
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 18 19:11:03 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Oct 18 19:26:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec92eb4

dev-cpp/gtest: Drop old

Package-Manager: portage-2.3.1

 dev-cpp/gtest/Manifest              |  1 -
 dev-cpp/gtest/gtest-1.6.0-r1.ebuild | 60 -----------------------------------
 dev-cpp/gtest/gtest-1.6.0-r2.ebuild | 62 -------------------------------------
 dev-cpp/gtest/gtest-1.6.0.ebuild    | 60 -----------------------------------
 4 files changed, 183 deletions(-)

diff --git a/dev-cpp/gtest/Manifest b/dev-cpp/gtest/Manifest
index 20901f0..77f682a 100644
--- a/dev-cpp/gtest/Manifest
+++ b/dev-cpp/gtest/Manifest
@@ -1,2 +1 @@
-DIST gtest-1.6.0.zip 1121697 SHA256 5ec97df8e75b4ee796604e74716d1b50582beba22c5502edd055a7e67a3965d8 SHA512 f4718dfbfa3339bb9449c3f14e5b44ae405ea7df64c10a0957a6300985b71c4642981d069a1382e27ae041a4e2873527a9e442aff978447e795a190f99fac115 WHIRLPOOL 745a49020d4353ed2fa38adfc80bbd777358c831719bbe3b7c90d243f84256615222ba5f04d48d98b9e1a803bb40766799b3aedd575024c19d853d9239a12f8a
 DIST gtest-1.7.0.zip 1164254 SHA256 247ca18dd83f53deb1328be17e4b1be31514cedfc1e3424f672bf11fd7e0d60d SHA512 8859369f2dd32cbc2ac01aba029aa3ff20a321f40658b9643aff442d34c33468221866b801b28c66a28af47dbcd362d26941fc98db92b6efb7e41ea5b7be1a07 WHIRLPOOL 0c31a385159551859c1afe76480b3fb1b560d666db9a0afc5cbda92bcd53bf129f85a8f902c6ded0779c2b4c49aacec59ba5a4d5ce316a07bf08174f4fc64049

diff --git a/dev-cpp/gtest/gtest-1.6.0-r1.ebuild b/dev-cpp/gtest/gtest-1.6.0-r1.ebuild
deleted file mode 100644
index cb6f20b..00000000
--- a/dev-cpp/gtest/gtest-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2"
-
-inherit eutils python autotools
-
-DESCRIPTION="Google C++ Testing Framework"
-HOMEPAGE="https://github.com/google/googletest"
-SRC_URI="https://googletest.googlecode.com/files/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
-IUSE="examples static-libs"
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-pkg_setup() {
-	python_pkg_setup
-	python_set_active_version 2
-}
-
-src_prepare() {
-	sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
-	sed -i -r \
-		-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
-		Makefile.am || die
-	epatch "${FILESDIR}"/configure-fix-pthread-linking.patch #371647
-	eautoreconf
-
-	python_convert_shebangs -r 2 .
-}
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static)
-}
-
-src_test() {
-	# explicitly use parallel make
-	emake check || die
-}
-
-src_install() {
-	default
-	dobin scripts/gtest-config
-
-	if ! use static-libs ; then
-		rm "${ED}"/usr/lib*/*.la || die
-	fi
-
-	if use examples ; then
-		insinto /usr/share/doc/${PF}/examples
-		doins samples/*.{cc,h}
-	fi
-}

diff --git a/dev-cpp/gtest/gtest-1.6.0-r2.ebuild b/dev-cpp/gtest/gtest-1.6.0-r2.ebuild
deleted file mode 100644
index e2f30b0..00000000
--- a/dev-cpp/gtest/gtest-1.6.0-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-# Python is required for tests and some build tasks.
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-any-r1 autotools-multilib
-
-DESCRIPTION="Google C++ Testing Framework"
-HOMEPAGE="https://github.com/google/googletest"
-SRC_URI="https://googletest.googlecode.com/files/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="examples static-libs"
-
-DEPEND="app-arch/unzip
-	${PYTHON_DEPS}"
-RDEPEND=""
-
-PATCHES=(
-	"${FILESDIR}/configure-fix-pthread-linking.patch" #371647
-)
-
-AUTOTOOLS_AUTORECONF="1"
-
-src_prepare() {
-	sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
-	sed -i -r \
-		-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
-		Makefile.am || die
-	autotools-multilib_src_prepare
-
-	multilib_copy_sources
-}
-
-src_configure() {
-	multilib_parallel_foreach_abi gtest_src_configure
-}
-
-src_install() {
-	autotools-multilib_src_install
-	multilib_for_best_abi gtest-config_install
-
-	if use examples ; then
-		insinto /usr/share/doc/${PF}/examples
-		doins samples/*.{cc,h}
-	fi
-}
-
-gtest_src_configure() {
-	ECONF_SOURCE="${BUILD_DIR}"
-	autotools-utils_src_configure
-}
-
-gtest-config_install() {
-	dobin "${BUILD_DIR}/scripts/gtest-config"
-}

diff --git a/dev-cpp/gtest/gtest-1.6.0.ebuild b/dev-cpp/gtest/gtest-1.6.0.ebuild
deleted file mode 100644
index 4aa69f8..00000000
--- a/dev-cpp/gtest/gtest-1.6.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2"
-
-inherit python libtool
-
-DESCRIPTION="Google C++ Testing Framework"
-HOMEPAGE="https://github.com/google/googletest"
-SRC_URI="https://googletest.googlecode.com/files/${P}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos"
-IUSE="examples threads static-libs"
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-pkg_setup() {
-	python_pkg_setup
-	python_set_active_version 2
-}
-
-src_prepare() {
-	sed -i -e "s|/tmp|${T}|g" test/gtest-filepath_test.cc || die
-	sed -i -r \
-		-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
-		Makefile.in
-	elibtoolize
-
-	python_convert_shebangs -r 2 .
-}
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_with threads pthreads)
-}
-
-src_test() {
-	# explicitly use parallel make
-	emake check || die
-}
-
-src_install() {
-	default
-	dobin scripts/gtest-config
-
-	if ! use static-libs ; then
-		rm "${ED}"/usr/lib*/*.la || die
-	fi
-
-	if use examples ; then
-		insinto /usr/share/doc/${PF}/examples
-		doins samples/*.{cc,h}
-	fi
-}


             reply	other threads:[~2016-10-18 19:27 UTC|newest]

Thread overview: 130+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-18 19:26 Pacho Ramos [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-05  0:42 [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gtest/ Sam James
2024-10-14  7:16 Florian Schmaus
2024-10-14  7:16 Florian Schmaus
2024-10-14  7:16 Florian Schmaus
2024-10-14  7:16 Florian Schmaus
2024-10-14  7:16 Florian Schmaus
2024-08-25 15:21 Fabian Groffen
2024-07-09  7:00 Sam James
2024-07-09  7:00 Sam James
2024-07-09  7:00 Sam James
2024-06-26 14:42 Ionen Wolkens
2024-06-18  6:27 Sam James
2024-06-18  5:54 Joonas Niilola
2024-06-18  5:54 Joonas Niilola
2024-06-18  5:09 Sam James
2024-06-18  2:09 Sam James
2024-06-18  2:09 Sam James
2024-06-18  2:09 Sam James
2024-05-28 20:49 Sam James
2024-05-28 13:19 Sam James
2024-05-28 12:29 Michał Górny
2024-05-28 12:04 Michał Górny
2023-09-04 10:08 David Seifert
2023-09-04 10:08 David Seifert
2023-09-04 10:08 David Seifert
2023-09-04 10:08 David Seifert
2023-04-30 16:52 Arthur Zamarin
2023-04-30 16:52 Arthur Zamarin
2023-04-25 12:31 Joonas Niilola
2023-04-24 22:57 Sam James
2023-04-24 22:57 Sam James
2023-04-24 22:57 Sam James
2023-04-24 22:57 Sam James
2023-04-24 22:57 Sam James
2023-02-04  8:51 Viorel Munteanu
2023-02-04  8:51 Viorel Munteanu
2023-02-04  8:51 Viorel Munteanu
2023-02-04  8:51 Viorel Munteanu
2022-11-23  1:45 Sam James
2022-11-23  1:45 Sam James
2022-11-23  1:45 Sam James
2022-11-23  1:45 Sam James
2022-11-23  1:45 Sam James
2022-05-04  7:07 WANG Xuerui
2022-04-18 20:28 Sam James
2022-03-15 22:21 Mike Frysinger
2021-12-07 20:23 Sam James
2021-12-07  6:26 Agostino Sarubbo
2021-12-06 15:23 Sam James
2021-12-06 15:20 Sam James
2021-12-06  0:31 Sam James
2021-12-06  0:10 Sam James
2021-12-05 22:04 Sam James
2021-12-05 20:12 Arthur Zamarin
2021-10-12 20:24 Sam James
2021-10-12 20:24 Sam James
2021-10-12 20:24 Sam James
2021-10-12 20:24 Sam James
2021-10-12 20:24 Sam James
2021-10-04  7:45 Arthur Zamarin
2021-06-29  5:53 Yixun Lan
2021-01-06 18:38 Fabian Groffen
2020-12-13 23:23 Sam James
2020-09-20 20:21 Agostino Sarubbo
2020-09-07  8:47 Sergei Trofimovich
2020-09-07  8:20 Sergei Trofimovich
2020-08-15  7:26 Sergei Trofimovich
2020-08-11 18:53 Agostino Sarubbo
2020-08-11 14:18 Agostino Sarubbo
2020-08-11 14:12 Agostino Sarubbo
2020-08-11 10:29 Sam James
2020-08-04 19:02 Fabian Groffen
2020-08-04 19:02 Fabian Groffen
2020-07-19 10:43 Joonas Niilola
2020-07-19 10:43 Joonas Niilola
2020-07-19 10:43 Joonas Niilola
2020-07-19 10:43 Joonas Niilola
2020-07-19 10:43 Joonas Niilola
2019-10-09  3:19 Joonas Niilola
2019-10-09  3:19 Joonas Niilola
2019-09-13 17:27 Mikle Kolyada
2019-08-23 12:16 Agostino Sarubbo
2019-08-23 10:00 Agostino Sarubbo
2019-08-22 22:03 Agostino Sarubbo
2019-08-19  6:57 Sergei Trofimovich
2019-08-18 10:10 Sergei Trofimovich
2019-08-18 10:08 Sergei Trofimovich
2019-08-18  9:10 Sergei Trofimovich
2019-08-16 23:21 Aaron Bauman
2019-08-16 17:03 Mike Gilbert
2019-06-15 20:29 Michał Górny
2019-06-15 20:29 Michał Górny
2019-06-04 19:49 Andreas Sturmlechner
2019-03-28  0:07 Aaron Bauman
2019-03-27 23:44 Thomas Deutschmann
2019-03-27 20:04 Agostino Sarubbo
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-09-22  7:07 Michał Górny
2018-06-07 21:20 Mikle Kolyada
2018-04-16 19:15 Mikle Kolyada
2018-04-02 17:35 Mart Raudsepp
2018-03-21  1:34 Matt Turner
2018-03-13 22:14 Sergei Trofimovich
2018-03-05 13:57 Tobias Klausmann
2018-02-17 22:30 Sergei Trofimovich
2018-02-17  8:43 Sergei Trofimovich
2018-02-13 20:11 Thomas Deutschmann
2018-02-13  7:46 Jason Zaman
2018-01-09 16:12 Mike Gilbert
2018-01-09 16:12 Mike Gilbert
2018-01-04  9:11 Mike Frysinger
2017-08-29 20:30 Patrice Clement
2017-08-29 20:30 Patrice Clement
2017-08-29 20:30 Patrice Clement
2017-08-29 20:30 Patrice Clement
2017-08-29 20:30 Patrice Clement
2017-07-10 10:35 Alexis Ballier
2017-06-11  4:00 Michael Palimaka
2017-05-06  7:23 Markus Meier
2017-04-22  7:33 Tobias Klausmann
2017-04-08  9:01 Jeroen Roovers
2017-04-07 16:05 Agostino Sarubbo
2015-12-22  8:58 Thomas Kahle
2015-09-01 18:57 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1476818782.eec92eb44c6b9cb11d81b1f7d6a7cbbe8aa38e30.pacho@gentoo \
    --to=pacho@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox