diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2021-11-25 08:37:21 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2021-11-25 08:37:21 +0100 |
commit | 58de4e13ba72c240be6c25238f68af1aebd79107 (patch) | |
tree | 94bdfb01ce7e5f54b4c83293447e4fa6c176de07 /eclass/ada.eclass | |
parent | dev-ada/gprbuild: unsupport gnat_2019, drop old (diff) | |
download | gentoo-58de4e13ba72c240be6c25238f68af1aebd79107.tar.gz gentoo-58de4e13ba72c240be6c25238f68af1aebd79107.tar.bz2 gentoo-58de4e13ba72c240be6c25238f68af1aebd79107.zip |
drop gnat_2019 support
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'eclass/ada.eclass')
-rw-r--r-- | eclass/ada.eclass | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/eclass/ada.eclass b/eclass/ada.eclass index 6089ed6e737f..fe28142e94ae 100644 --- a/eclass/ada.eclass +++ b/eclass/ada.eclass @@ -58,7 +58,7 @@ EXPORT_FUNCTIONS pkg_setup # @DESCRIPTION: # All supported Ada implementations, most preferred last. _ADA_ALL_IMPLS=( - gnat_2019 gnat_2020 gnat_2021 + gnat_2020 gnat_2021 ) readonly _ADA_ALL_IMPLS @@ -83,9 +83,6 @@ _ada_impl_supported() { # keep in sync with _ADA_ALL_IMPLS! # (not using that list because inline patterns shall be faster) case "${impl}" in - gnat_2019) - return 0 - ;; gnat_202[01]) return 0 ;; @@ -180,10 +177,6 @@ ada_export() { local impl var case "${1}" in - gnat_201[789]) - impl=${1} - shift - ;; gnat_202[01]) impl=${1} shift @@ -200,10 +193,6 @@ ada_export() { local gcc_pv local slot case "${impl}" in - gnat_2019) - gcc_pv=8.3.1 - slot=8.3.1 - ;; gnat_2020) gcc_pv=9.3.1 slot=9.3.1 |