From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72A22139695 for ; Fri, 16 Jun 2017 04:26:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 477C721C06D; Fri, 16 Jun 2017 04:26:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 229DD21C07E for ; Fri, 16 Jun 2017 04:26:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0141341727 for ; Fri, 16 Jun 2017 04:26:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23CDF7479 for ; Fri, 16 Jun 2017 04:26:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1497587163.5d564397ab1eb4d675a3f9f79a1c38da5b71a16b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/catch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/catch/Manifest dev-cpp/catch/catch-1.9.5.ebuild X-VCS-Directories: dev-cpp/catch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5d564397ab1eb4d675a3f9f79a1c38da5b71a16b X-VCS-Branch: master Date: Fri, 16 Jun 2017 04:26:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0d91b265-49f1-4781-8a9b-1a3fad427f6c X-Archives-Hash: 64b644bf7dc2dc7fb8cbb410b19cd7a8 commit: 5d564397ab1eb4d675a3f9f79a1c38da5b71a16b Author: Michał Górny gentoo org> AuthorDate: Fri Jun 16 04:22:56 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 16 04:26:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d564397 dev-cpp/catch: Bump to 1.9.5 dev-cpp/catch/Manifest | 1 + dev-cpp/catch/catch-1.9.5.ebuild | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/dev-cpp/catch/Manifest b/dev-cpp/catch/Manifest index e425352a3d8..e984a8a3fc9 100644 --- a/dev-cpp/catch/Manifest +++ b/dev-cpp/catch/Manifest @@ -1 +1,2 @@ DIST Catch-1.9.4.tar.gz 363097 SHA256 d67d2ee26ec9f72618dd9b28a9d1b7ba3c6368bc846ecfeda05a1e5d1b8b9b20 SHA512 78d43719e87f5d27132178c5f139b72e6093dd1029eb742bfb48e32b618079e156837fb25d4cbe0fd5044535a5a65ad90510cff8ae93f2695c7bb3fc5cb2a5ec WHIRLPOOL 80b4c36172e62ea12fc4acee096a84cd00b1a290dc2a7a9e9a8e2ff2485e39a619e33f2aee853daa7773d3c877f55788b2d0f86e44542c6f8c0b6027edaf0585 +DIST Catch-1.9.5.tar.gz 366036 SHA256 455e5bc5f81aa8ddf25f264b794e13f5dc8182e9ab057324409fb4c7dbe686a0 SHA512 b093f5b4e5a9bf7d099739c4f222741b8f56ab6d880d86d62d37320d64e4f41aa4d6f3f6c7da55ab9772fa3ddb415a420564fa03774fb01424a5243665eba12f WHIRLPOOL 98f526681e0a6f15ea9cf4e64753afae1e3b53115544955f1b484b2fd2e7a6a7b4b44d0e86b459af69356157b8256045a354450646b184adf41d95ad831e62b8 diff --git a/dev-cpp/catch/catch-1.9.5.ebuild b/dev-cpp/catch/catch-1.9.5.ebuild new file mode 100644 index 00000000000..dd8e74f2615 --- /dev/null +++ b/dev-cpp/catch/catch-1.9.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils + +DESCRIPTION="Modern C++ header-only framework for unit-tests" +HOMEPAGE="https://github.com/philsquared/Catch" +SRC_URI="https://github.com/philsquared/Catch/archive/v${PV}.tar.gz -> ${P^}.tar.gz" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR}/${P^} + +# CMake is only used to build & run tests, so override phases +src_configure() { :; } +src_compile() { :; } + +src_test() { + cmake-utils_src_configure + cmake-utils_src_compile + cmake-utils_src_test +} + +src_install() { + # same location as used in fedora + insinto /usr/include/catch + doins -r include/. + dodoc -r docs/. +}