Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/xdrfile/
Date: Mon, 03 Sep 2018 21:50:41
Message-Id: 1536011372.051c279c1ca909520702dad0446b786bc302e9bd.alexxy@gentoo
1 commit: 051c279c1ca909520702dad0446b786bc302e9bd
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 21:49:32 2018 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 21:49:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051c279c
7
8 sci-libs/xdrfile: Version bump
9
10 Package-Manager: Portage-2.3.47, Repoman-2.3.10
11
12 sci-libs/xdrfile/Manifest | 1 +
13 sci-libs/xdrfile/xdrfile-1.1.4.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/sci-libs/xdrfile/Manifest b/sci-libs/xdrfile/Manifest
17 index 58e3704b681..e271caaafe4 100644
18 --- a/sci-libs/xdrfile/Manifest
19 +++ b/sci-libs/xdrfile/Manifest
20 @@ -1 +1,2 @@
21 DIST xdrfile-1.1.1.tar.gz 378942 BLAKE2B 21b1524a7c31e957b28b93dab4b83b88c183528e534864b06ff76e3f31422129c22ac4bc24a054749dd1b5b80d93a82d873cae82571f0b89c16d55ef0de267c7 SHA512 bff06b08e547b956825f9b16a55fe93d07ff0c529426b892fd4b39be538774aa06facffc68994215e22e36edfa5642674653022da0762ca7cd1b7bc654112868
22 +DIST xdrfile-1.1.4.tar.gz 815342 BLAKE2B 9f2703cdd67dd6cb3156ab96e496dd4fa37d3a60d660da0a6129562ed295bb52ed5d5acb54aab1bd8b682e31f6155e96541dd47fee7226ae058d62f6efe3937a SHA512 70352efcce989172893e34855edd17990c80f3b5f956b2d8b03a5e75593280e981a56b00616adb950a7da5713729029aecb5dd2cd4c52a658a77eca43aa290df
23
24 diff --git a/sci-libs/xdrfile/xdrfile-1.1.4.ebuild b/sci-libs/xdrfile/xdrfile-1.1.4.ebuild
25 new file mode 100644
26 index 00000000000..9789dad9d61
27 --- /dev/null
28 +++ b/sci-libs/xdrfile/xdrfile-1.1.4.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +FORTRAN_NEEDED="fortran"
36 +
37 +inherit fortran-2 multilib
38 +
39 +DESCRIPTION="Library to read gromacs trajectory and topology files"
40 +HOMEPAGE="http://www.gromacs.org/Developer_Zone/Programming_Guide/XTC_Library"
41 +SRC_URI="ftp://ftp.gromacs.org/pub/contrib/${P}.tar.gz"
42 +
43 +LICENSE="LGPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="fortran static-libs"
47 +
48 +src_configure() {
49 + local myeconfargs=( $(use_enable fortran) )
50 +
51 + default
52 +}