diff options
author | 2021-04-02 10:41:52 +0100 | |
---|---|---|
committer | 2021-04-03 16:43:10 +0100 | |
commit | ec23b17f13ac7c49d32988d53ab08eeab04d4da0 (patch) | |
tree | 58f00a0e9b641ae1e1187dc584ca85eb38c9a811 /dev-util/uncrustify | |
parent | dev-python/tubes: fix variable references (diff) | |
download | gentoo-ec23b17f13ac7c49d32988d53ab08eeab04d4da0.tar.gz gentoo-ec23b17f13ac7c49d32988d53ab08eeab04d4da0.tar.bz2 gentoo-ec23b17f13ac7c49d32988d53ab08eeab04d4da0.zip |
dev-util/uncrustify: fix variable references
Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/uncrustify')
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.71.0.ebuild | 2 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-0.72.0.ebuild | 2 | ||||
-rw-r--r-- | dev-util/uncrustify/uncrustify-9999.ebuild | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/dev-util/uncrustify/uncrustify-0.71.0.ebuild b/dev-util/uncrustify/uncrustify-0.71.0.ebuild index 5450e5ab1d5b..2e266f8783d9 100644 --- a/dev-util/uncrustify/uncrustify-0.71.0.ebuild +++ b/dev-util/uncrustify/uncrustify-0.71.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -if [[ $PV == *9999* ]]; then +if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" scm_eclass=git-r3 else diff --git a/dev-util/uncrustify/uncrustify-0.72.0.ebuild b/dev-util/uncrustify/uncrustify-0.72.0.ebuild index 449acc6598a9..573dbcd833df 100644 --- a/dev-util/uncrustify/uncrustify-0.72.0.ebuild +++ b/dev-util/uncrustify/uncrustify-0.72.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -if [[ $PV == *9999* ]]; then +if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" scm_eclass=git-r3 else diff --git a/dev-util/uncrustify/uncrustify-9999.ebuild b/dev-util/uncrustify/uncrustify-9999.ebuild index 69478cff695f..db972bbb4d42 100644 --- a/dev-util/uncrustify/uncrustify-9999.ebuild +++ b/dev-util/uncrustify/uncrustify-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -if [[ $PV == *9999* ]]; then +if [[ ${PV} == *9999* ]]; then EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" scm_eclass=git-r3 else |