commit:     bbcbe618f3206e9a386e308bbd6c1addf19ff6d3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 09:43:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  3 15:43:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcbe618

sci-chemistry/gromacs: fix variable references

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-chemistry/gromacs/gromacs-2020.4.ebuild    | 4 ++--
 sci-chemistry/gromacs/gromacs-2020.5.ebuild    | 4 ++--
 sci-chemistry/gromacs/gromacs-2020.9999.ebuild | 4 ++--
 sci-chemistry/gromacs/gromacs-2021.9999.ebuild | 4 ++--
 sci-chemistry/gromacs/gromacs-2021.ebuild      | 4 ++--
 sci-chemistry/gromacs/gromacs-9999.ebuild      | 4 ++--
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/sci-chemistry/gromacs/gromacs-2020.4.ebuild 
b/sci-chemistry/gromacs/gromacs-2020.4.ebuild
index d8b28c2b0a7..f5764717819 100644
--- a/sci-chemistry/gromacs/gromacs-2020.4.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2020.4.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

diff --git a/sci-chemistry/gromacs/gromacs-2020.5.ebuild 
b/sci-chemistry/gromacs/gromacs-2020.5.ebuild
index 9b2e7ff39e9..ccd8e2d594f 100644
--- a/sci-chemistry/gromacs/gromacs-2020.5.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2020.5.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

diff --git a/sci-chemistry/gromacs/gromacs-2020.9999.ebuild 
b/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
index 9b2e7ff39e9..ccd8e2d594f 100644
--- a/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2020.9999.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

diff --git a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild 
b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
index a1ba0b4d74a..1674a44df0e 100644
--- a/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2021.9999.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

diff --git a/sci-chemistry/gromacs/gromacs-2021.ebuild 
b/sci-chemistry/gromacs/gromacs-2021.ebuild
index a1ba0b4d74a..1674a44df0e 100644
--- a/sci-chemistry/gromacs/gromacs-2021.ebuild
+++ b/sci-chemistry/gromacs/gromacs-2021.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

diff --git a/sci-chemistry/gromacs/gromacs-9999.ebuild 
b/sci-chemistry/gromacs/gromacs-9999.ebuild
index a1ba0b4d74a..1674a44df0e 100644
--- a/sci-chemistry/gromacs/gromacs-9999.ebuild
+++ b/sci-chemistry/gromacs/gromacs-9999.ebuild
@@ -11,12 +11,12 @@ DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 cmake cuda distutils-r1 eutils flag-o-matic 
multilib readme.gentoo-r1 toolchain-funcs xdg-utils
 
-if [[ $PV = *9999* ]]; then
+if [[ ${PV} = *9999* ]]; then
        EGIT_REPO_URI="
                https://gitlab.com/gromacs/gromacs.git
                https://github.com/gromacs/gromacs.git
                git://git.gromacs.org/gromacs.git"
-       [[ $PV = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
+       [[ ${PV} = 9999 ]] && EGIT_BRANCH="master" || 
EGIT_BRANCH="release-${PV:0:4}"
        inherit git-r3
 else
        SRC_URI="

Reply via email to