diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2023-03-21 22:42:41 +0100 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2023-03-21 22:42:59 +0100 |
commit | d3352ebae9e72df7e464c911dffed991622e9a4a (patch) | |
tree | 09495fcbffa13b12e4b6a712c50f4c985f8274d0 /eclass/ada.eclass | |
parent | net-misc/you-get: Stabilize 0.4.1650 ALLARCHES, #902561 (diff) | |
download | gentoo-d3352ebae9e72df7e464c911dffed991622e9a4a.tar.gz gentoo-d3352ebae9e72df7e464c911dffed991622e9a4a.tar.bz2 gentoo-d3352ebae9e72df7e464c911dffed991622e9a4a.zip |
ada.eclass: drop gcc_12_2_0
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 eea41c0cff48..198cd01477aa 100644 --- a/eclass/ada.eclass +++ b/eclass/ada.eclass @@ -57,7 +57,7 @@ _ADA_ECLASS=1 # @DESCRIPTION: # All supported Ada implementations, most preferred last. _ADA_ALL_IMPLS=( - gnat_2021 gcc_12_2_0 gcc_12 + gnat_2021 gcc_12 ) readonly _ADA_ALL_IMPLS @@ -122,9 +122,6 @@ _ada_impl_supported() { gnat_2021) return 0 ;; - gcc_12_2_0) - return 0 - ;; gcc_12) return 0 ;; @@ -223,10 +220,6 @@ ada_export() { impl=${1} shift ;; - gcc_12_2_0) - impl=${1} - shift - ;; gcc_12) impl=${1} shift @@ -247,10 +240,6 @@ ada_export() { gcc_pv=10 slot=10 ;; - gcc_12_2_0) - gcc_pv=12.2.0 - slot=12 - ;; gcc_12) gcc_pv=12 slot=12 |