dev-ada/aunit: bump to 2019
authorTupone Alfredo <tupone@gentoo.org>
Tue, 18 Jun 2019 06:32:05 +0000 (08:32 +0200)
committerTupone Alfredo <tupone@gentoo.org>
Tue, 18 Jun 2019 06:32:05 +0000 (08:32 +0200)
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

dev-ada/aunit/Manifest
dev-ada/aunit/aunit-2019.ebuild [new file with mode: 0644]
dev-ada/aunit/metadata.xml

index 760c7773292eb7068de01218e6cd433c920a19b8..c8a0f1aac2b0369b4a86aae57364f72b79457f71 100644 (file)
@@ -1 +1,2 @@
+DIST aunit-2019-20190429-18B77-src.tar.gz 624683 BLAKE2B 455c3566ed46138116f258b175e883a59102dc334b41040cd6a332175fc4138d7ccdab1357c5b8886f14e551e3a6f4f4aa73eb755ade4a7a1663ac2d999973ca SHA512 9b1834ebacb9dbaa7a01f702455a44921a26a8d8d00f55ecc2fc8ddf2d884ef2ef2bba0f62551421f5a47d558d0fba88cbd57671459bba0c9f90c6310d714b19
 DIST aunit-gpl-2018-src.tar.gz 639544 BLAKE2B a7d7469b0ec4951517b113a794dca4399a27d6d5d848194fc5bfa7728a5cd04644e4b5f1247eb3cfbab64c0294502ac70cdd6e7052cd60b788c7892eddb4294e SHA512 3409b490978e9160e3ec2d9214d50f846c4c38f7a728cd4ff306d6454d1e0944023342f17a580b0449cb528f42d3c608adec58b61318284237d02b7f77498513
diff --git a/dev-ada/aunit/aunit-2019.ebuild b/dev-ada/aunit/aunit-2019.ebuild
new file mode 100644 (file)
index 0000000..8f4d3ec
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multiprocessing
+
+MYP=${P}-20190429-18B77-src
+
+DESCRIPTION="Ada unit testing framework"
+HOMEPAGE="http://libre.adacore.com/tools/aunit/"
+SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf859431e87aa2cdf16b18
+       -> ${MYP}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gnat_2016 gnat_2017 gnat_2018 +gnat_2019"
+
+RDEPEND="gnat_2016? ( dev-lang/gnat-gpl:4.9.4 )
+       gnat_2017? ( dev-lang/gnat-gpl:6.3.0 )
+       gnat_2018? ( dev-lang/gnat-gpl:7.3.1 )
+       gnat_2019? ( dev-lang/gnat-gpl:8.3.1 )"
+DEPEND="${RDEPEND}
+       dev-ada/gprbuild[gnat_2016(-)?,gnat_2017(-)?,gnat_2018(-)?,gnat_2019(-)?]"
+
+REQUIRED_USE="^^ ( gnat_2016 gnat_2017 gnat_2018 gnat_2019 )"
+
+S="${WORKDIR}"/${MYP}
+
+PATCHES=( "${FILESDIR}"/${PN}-2016-gentoo.patch )
+
+src_compile() {
+       emake GPRBUILD="gprbuild -j$(makeopts_jobs) -v"
+}
+
+src_install() {
+       emake INSTALL="${D}"usr install
+       einstalldocs
+       mv "${D}"usr/share/doc/${PN}/* "${D}"usr/share/doc/${PF}/ || die
+       rmdir "${D}"usr/share/doc/${PN} || die
+       mv "${D}"usr/share/examples/${PN} "${D}"usr/share/doc/${PF}/examples || die
+       rmdir "${D}"usr/share/examples || die
+       rm -r "${D}"/usr/share/gpr/manifests || die
+}
+
+src_test() {
+       emake PROJECT_PATH_ARG="ADA_PROJECT_PATH=$(pwd)/lib/gnat" -C test
+}
index 70ed4055100cbd8341981a94b453516183de94b7..1d2d7f1a8b65d7c3bbdfc1639c44f2b686eced79 100644 (file)
@@ -1,16 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-       <maintainer type="person">
-               <email>tupone@gentoo.org</email>
-               <name>Tupone Alfredo</name>
+       <maintainer type="project">
+               <email>ada@gentoo.org</email>
        </maintainer>
        <use>
                <flag name="gnat_2016">Compile with dev-lang/gnat-gpl-2016</flag>
                <flag name="gnat_2017">Compile with dev-lang/gnat-gpl-2017</flag>
                <flag name="gnat_2018">Compile with dev-lang/gnat-gpl-2018</flag>
+               <flag name="gnat_2019">Compile with dev-lang/gnat-gpl-2019</flag>
        </use>
        <longdescription lang="en">
-               AUnit is a set of Ada packages based on the xUnit family of unit test frameworks. It’s intended as a developer’s tool to facilitate confident writing and evolution of Ada software. It is purposely lightweight, as one of its main goals is to make it easy to develop and run unit tests, rather than to generate artifacts for process management. The framework supports easy composition of sets of unit tests to provide flexibility in determining what tests to run for a given purpose.
+               AUnit is a set of Ada packages based on the xUnit family of unit test
+               frameworks. It’s intended as a developer’s tool to facilitate confident
+               writing and evolution of Ada software. It is purposely lightweight, as
+               one of its main goals is to make it easy to develop and run unit tests,
+               rather than to generate artifacts for process management. The framework
+               supports easy composition of sets of unit tests to provide flexibility
+               in determining what tests to run for a given purpose.
        </longdescription>
 </pkgmetadata>