Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/ViSP-images/
Date: Thu, 29 Aug 2019 15:51:05
Message-Id: 1567093831.aa1a80c95f8dd8f434baf5c811db13f1105b750a.aballier@gentoo
1 commit: aa1a80c95f8dd8f434baf5c811db13f1105b750a
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 29 15:48:33 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 15:50:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa1a80c9
7
8 sci-misc/ViSP-images: bump to 3.2.0
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 sci-misc/ViSP-images/Manifest | 1 +
14 sci-misc/ViSP-images/ViSP-images-3.2.0.ebuild | 25 +++++++++++++++++++++++++
15 2 files changed, 26 insertions(+)
16
17 diff --git a/sci-misc/ViSP-images/Manifest b/sci-misc/ViSP-images/Manifest
18 index d4d6bb0f023..c5af1d471e3 100644
19 --- a/sci-misc/ViSP-images/Manifest
20 +++ b/sci-misc/ViSP-images/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ViSP-images-3.0.1.zip 70498859 BLAKE2B a1b64e49337713c6ed96d471d8e94ca37a149359e736e28dcc87e3d9d75a8f8a7d0147bba822f4889122d235b86b0aac7d7db4647067416056476d13d41881bc SHA512 b3fac5b08a9aad24c27e9f887a096386995a30af616c0137ca2e61445c96dc474a905604133740d550827f7e67d2c0d492774e0c0277e4ca44c5df6df06c8477
23 DIST visp-images-3.1.0.zip 81133842 BLAKE2B 6702582d4cbd53b72edfa57999cf42069ec5b3f5179983368552f72fdfdf5480a7e25f87dcf5e53856b310f83c5e0bb872e8353aeea1032c73ee00bd0a77f618 SHA512 0d865234c1f6278a9f0bd3bfc58aeb9083e7ee8a748b2f7ab96d3aedd21ef164cbf1dc3113facfafdbac2e0256aa932b8b5f8efa2e348f1ce834c50e703cf14d
24 +DIST visp-images-3.2.0.zip 84366211 BLAKE2B a0cb17bf7e79ed187a40f229b236e83127bd449f48a4046c21235f6f6cd37b25a324ba74c1337a110b91a42789249e71ce86fc2fa81e1573733db1bf4fff1cc5 SHA512 1249f63ca648e0248d6dcc13ae19a8485d347c90f3f929d4725909ec1b25962f58a999e8feed664ed51ccba9a3ba95a184385aabd0a5aef88f118dbb2a020c14
25
26 diff --git a/sci-misc/ViSP-images/ViSP-images-3.2.0.ebuild b/sci-misc/ViSP-images/ViSP-images-3.2.0.ebuild
27 new file mode 100644
28 index 00000000000..ff0ecbb3bdf
29 --- /dev/null
30 +++ b/sci-misc/ViSP-images/ViSP-images-3.2.0.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=5
36 +
37 +DESCRIPTION="ViSP images data set"
38 +HOMEPAGE="http://www.irisa.fr/lagadic/visp/"
39 +SRC_URI="http://visp-doc.inria.fr/download/dataset/visp-images-${PV}.zip"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm"
44 +IUSE=""
45 +
46 +DEPEND="app-arch/unzip"
47 +RDEPEND=""
48 +
49 +S="${WORKDIR}/visp-images-${PV}"
50 +
51 +src_install() {
52 + dodoc README.md
53 + rm -f README.md LICENSE.txt
54 + dodir /usr/share/visp-images-data/
55 + mv "${S}" "${ED}/usr/share/visp-images-data/${PN}"
56 +}