summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <junghans@gentoo.org>2016-12-07 15:06:59 -0700
committerChristoph Junghans <junghans@gentoo.org>2016-12-07 15:07:27 -0700
commit387774b1afa312bde6cd02f74f864c1a662ecc99 (patch)
tree270dcfcac5ce586be89def0b6f80a919cc7b02d3 /dev-libs
parentvirtual/perl-*: Extend applicable stable keywords from dev-lang/perl (diff)
downloadgentoo-387774b1afa312bde6cd02f74f864c1a662ecc99.tar.gz
gentoo-387774b1afa312bde6cd02f74f864c1a662ecc99.tar.bz2
gentoo-387774b1afa312bde6cd02f74f864c1a662ecc99.zip
dev-libs/tut: initial commit
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/tut/Manifest1
-rw-r--r--dev-libs/tut/metadata.xml12
-rw-r--r--dev-libs/tut/tut-2013.12.18.ebuild25
3 files changed, 38 insertions, 0 deletions
diff --git a/dev-libs/tut/Manifest b/dev-libs/tut/Manifest
new file mode 100644
index 000000000000..4422f6d5e310
--- /dev/null
+++ b/dev-libs/tut/Manifest
@@ -0,0 +1 @@
+DIST tut-2013.12.18.tar.gz 248575 SHA256 750c06fa4f681c9ca3b504f7916925e7620db4237675a4769814f8426c021fc8 SHA512 daf232df8d27a5600209ee44dc72f83b9574b68c14cf9566aa826091767e2fc3c00a9e03e83386f46d7f2030bb6d6af5db6af326424a4c0bc41063e227ab8004 WHIRLPOOL 8487b0c35b9ae5c1b181930f687ec5be822b501e3eacbe120b7b0b08c1ae3bf1e5dd102b86806ea4d3fb4479bd8619aab23b4025777e9adc3c445aae0cbdab97
diff --git a/dev-libs/tut/metadata.xml b/dev-libs/tut/metadata.xml
new file mode 100644
index 000000000000..903883b48f16
--- /dev/null
+++ b/dev-libs/tut/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>junghans@gentoo.org</email>
+ <name>Christoph Junghans</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>sci@gentoo.org</email>
+ <name>Gentoo Science Project</name>
+ </maintainer>
+</pkgmetadata>
diff --git a/dev-libs/tut/tut-2013.12.18.ebuild b/dev-libs/tut/tut-2013.12.18.ebuild
new file mode 100644
index 000000000000..ed1fff22a4dc
--- /dev/null
+++ b/dev-libs/tut/tut-2013.12.18.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+)'
+NO_WAF_LIBDIR=yes
+
+inherit python-any-r1 waf-utils
+
+DESCRIPTION="C++ Template Unit Test Framework"
+HOMEPAGE="http://mrzechonek.github.io/tut-framework/"
+SRC_URI="https://github.com/mrzechonek/tut-framework/archive/${PV//./-}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=${PYTHON_DEPS}
+RDEPEND=""
+
+S="${WORKDIR}/tut-framework-${PV//./-}"