Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cudnn/
Date: Tue, 09 Jan 2018 02:01:33
Message-Id: 1515429337.37f82da08418033a5a3c6240ae41326f7d8937f8.monsieurp@gentoo
1 commit: 37f82da08418033a5a3c6240ae41326f7d8937f8
2 Author: Pavel Denisov <pavel.a.denisov <AT> gmail <DOT> com>
3 AuthorDate: Tue Dec 26 16:41:05 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 8 16:35:37 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f82da0
7
8 dev-libs/cudnn: version bump.
9
10 Closes: https://bugs.gentoo.org/641616
11 Closes: https://github.com/gentoo/gentoo/pull/6645
12 Package-Manager: Portage-2.3.19, Repoman-2.3.6
13
14 dev-libs/cudnn/Manifest | 1 +
15 dev-libs/cudnn/cudnn-7.0.5.ebuild | 29 +++++++++++++++++++++++++++++
16 2 files changed, 30 insertions(+)
17
18 diff --git a/dev-libs/cudnn/Manifest b/dev-libs/cudnn/Manifest
19 index 94f12de3d36..a6d00b4c87e 100644
20 --- a/dev-libs/cudnn/Manifest
21 +++ b/dev-libs/cudnn/Manifest
22 @@ -1 +1,2 @@
23 DIST cudnn-8.0-linux-x64-v6.0.tgz 201134139 BLAKE2B a7e616c671272a3a0f0c51b93646c8c60302c3dec85b71144e011bc3460d0ce80ff75d39869c05c4ef183d2d09aff31bb470a3fd3fd3d79b581a7a2d5a349279 SHA512 ddeeacb5b449920d942a26b98c353d78fd6f7d7fb3b3ce42a078626473efdda25c7ae641232702d62eb5749e39ecfd03e88346119c920c19348ac3ee82d3ff47
24 +DIST cudnn-9.0-linux-x64-v7.tgz 348817823 BLAKE2B 5ac2d5c6794f18e2f9de7b43d81f196391e193bc795ca89a5810a7e6f77d3f241c5f61b16a54294bedf0ee08d48c88ccfb85b552f4be76a8bb42bb76f8382d7b SHA512 63752fe8991b750794bd41d720d1ab2c94584fd9a0e297c68549d8e44cf2742f0601021ae54f5227e4865869fddb5d5b2f7445bfda2c0808b8973345337a907e
25
26 diff --git a/dev-libs/cudnn/cudnn-7.0.5.ebuild b/dev-libs/cudnn/cudnn-7.0.5.ebuild
27 new file mode 100644
28 index 00000000000..e63b0750db2
29 --- /dev/null
30 +++ b/dev-libs/cudnn/cudnn-7.0.5.ebuild
31 @@ -0,0 +1,29 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +CUDA_PV=9.0
38 +
39 +inherit versionator
40 +
41 +DESCRIPTION="NVIDIA Accelerated Deep Learning on GPU library"
42 +HOMEPAGE="https://developer.nvidia.com/cuDNN"
43 +
44 +MY_PV_MAJOR=$(get_major_version)
45 +SRC_URI="cudnn-${CUDA_PV}-linux-x64-v${MY_PV_MAJOR}.tgz"
46 +
47 +SLOT="0/7"
48 +KEYWORDS="~amd64 ~amd64-linux"
49 +RESTRICT="fetch"
50 +LICENSE="NVIDIA-cuDNN"
51 +
52 +S="${WORKDIR}"
53 +
54 +DEPENDS="=dev-util/nvidia-cuda-toolkit-${CUDA_PV}*"
55 +RDEPENDS="${DEPENDS}"
56 +
57 +src_install() {
58 + insinto /opt
59 + doins -r *
60 +}