Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/
Date: Sat, 03 Apr 2021 15:44:46
Message-Id: 1617464622.bbcbe618f3206e9a386e308bbd6c1addf19ff6d3.sam@gentoo
1 commit: bbcbe618f3206e9a386e308bbd6c1addf19ff6d3
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 2 09:43:38 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 3 15:43:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcbe618
7
8 sci-chemistry/gromacs: fix variable references
9
10 Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sci-chemistry/gromacs/gromacs-2020.4.ebuild | 4 ++--
14 sci-chemistry/gromacs/gromacs-2020.5.ebuild | 4 ++--
15 sci-chemistry/gromacs/gromacs-2020.9999.ebuild | 4 ++--
16 sci-chemistry/gromacs/gromacs-2021.9999.ebuild | 4 ++--
17 sci-chemistry/gromacs/gromacs-2021.ebuild | 4 ++--
18 sci-chemistry/gromacs/gromacs-9999.ebuild | 4 ++--
19 6 files changed, 12 insertions(+), 12 deletions(-)
20
21 diff --git a/sci-chemistry/gromacs/gromacs-2020.4.ebuild b/sci-chemistry/gromacs/gromacs-2020.4.ebuild
22 index d8b28c2b0a7..f5764717819 100644
23 --- a/sci-chemistry/gromacs/gromacs-2020.4.ebuild
24 +++ b/sci-chemistry/gromacs/gromacs-2020.4.ebuild
25 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
26
27 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
28
29 -if [[ $PV = *9999* ]]; then
30 +if [[ ${PV} = *9999* ]]; then
31 EGIT_REPO_URI="
32 https://gitlab.com/gromacs/gromacs.git
33 https://github.com/gromacs/gromacs.git
34 git://git.gromacs.org/gromacs.git"
35 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
36 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
37 inherit git-r3
38 else
39 SRC_URI="
40
41 diff --git a/sci-chemistry/gromacs/gromacs-2020.5.ebuild b/sci-chemistry/gromacs/gromacs-2020.5.ebuild
42 index 9b2e7ff39e9..ccd8e2d594f 100644
43 --- a/sci-chemistry/gromacs/gromacs-2020.5.ebuild
44 +++ b/sci-chemistry/gromacs/gromacs-2020.5.ebuild
45 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
46
47 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
48
49 -if [[ $PV = *9999* ]]; then
50 +if [[ ${PV} = *9999* ]]; then
51 EGIT_REPO_URI="
52 https://gitlab.com/gromacs/gromacs.git
53 https://github.com/gromacs/gromacs.git
54 git://git.gromacs.org/gromacs.git"
55 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
56 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
57 inherit git-r3
58 else
59 SRC_URI="
60
61 diff --git a/sci-chemistry/gromacs/gromacs-2020.9999.ebuild b/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
62 index 9b2e7ff39e9..ccd8e2d594f 100644
63 --- a/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
64 +++ b/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
65 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
66
67 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
68
69 -if [[ $PV = *9999* ]]; then
70 +if [[ ${PV} = *9999* ]]; then
71 EGIT_REPO_URI="
72 https://gitlab.com/gromacs/gromacs.git
73 https://github.com/gromacs/gromacs.git
74 git://git.gromacs.org/gromacs.git"
75 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
76 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
77 inherit git-r3
78 else
79 SRC_URI="
80
81 diff --git a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
82 index a1ba0b4d74a..1674a44df0e 100644
83 --- a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
84 +++ b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
85 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
86
87 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
88
89 -if [[ $PV = *9999* ]]; then
90 +if [[ ${PV} = *9999* ]]; then
91 EGIT_REPO_URI="
92 https://gitlab.com/gromacs/gromacs.git
93 https://github.com/gromacs/gromacs.git
94 git://git.gromacs.org/gromacs.git"
95 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
96 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
97 inherit git-r3
98 else
99 SRC_URI="
100
101 diff --git a/sci-chemistry/gromacs/gromacs-2021.ebuild b/sci-chemistry/gromacs/gromacs-2021.ebuild
102 index a1ba0b4d74a..1674a44df0e 100644
103 --- a/sci-chemistry/gromacs/gromacs-2021.ebuild
104 +++ b/sci-chemistry/gromacs/gromacs-2021.ebuild
105 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
106
107 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
108
109 -if [[ $PV = *9999* ]]; then
110 +if [[ ${PV} = *9999* ]]; then
111 EGIT_REPO_URI="
112 https://gitlab.com/gromacs/gromacs.git
113 https://github.com/gromacs/gromacs.git
114 git://git.gromacs.org/gromacs.git"
115 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
116 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
117 inherit git-r3
118 else
119 SRC_URI="
120
121 diff --git a/sci-chemistry/gromacs/gromacs-9999.ebuild b/sci-chemistry/gromacs/gromacs-9999.ebuild
122 index a1ba0b4d74a..1674a44df0e 100644
123 --- a/sci-chemistry/gromacs/gromacs-9999.ebuild
124 +++ b/sci-chemistry/gromacs/gromacs-9999.ebuild
125 @@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
126
127 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic multilib readme.gentoo-r1 toolchain-funcs xdg-utils
128
129 -if [[ $PV = *9999* ]]; then
130 +if [[ ${PV} = *9999* ]]; then
131 EGIT_REPO_URI="
132 https://gitlab.com/gromacs/gromacs.git
133 https://github.com/gromacs/gromacs.git
134 git://git.gromacs.org/gromacs.git"
135 - [[ $PV = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
136 + [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || EGIT_BRANCH="release-${PV:0:4}"
137 inherit git-r3
138 else
139 SRC_URI="