diff options
author | marino <marino@pkgsrc.org> | 2016-11-25 20:36:49 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2016-11-25 20:36:49 +0000 |
commit | 22692a735ffbe29a4d003c605307375103a3e565 (patch) | |
tree | 8a9311ad804d05e94ba5b5a03623ccc12fad052b /mk | |
parent | 02e57864ac4a8b4c2d418963375e330e2e63a5a9 (diff) | |
download | pkgsrc-22692a735ffbe29a4d003c605307375103a3e565.tar.gz |
Upgrade USE_LANGUAGES=ada to use lang/gcc5-aux instead of lang/gcc-aux
This large commit accomplishes the following:
1) Switch USE_LANGUAGES=ada to require lang/gcc5-aux (gcc 5.4) instead
of lang/gcc-aux (gcc 4.9.2) on gcc.mk
2) Bump affected ports and fix paths as necessary
3) Upgrade devel/gprbuild to the latest release
- No longer requires lang/gnat_util
- gprslave requires gcc6-aux, so it was disabled for now
4) Fix lang/gnat_util but set PKG_SKIP_REASON
- It has no further purpose in the pkgsrc tree
- It has no practical purpose outside of the pkgsrc tree
- Indicate intent to remove from tree in Jan. 2017
5) Set devel/GPS as failed with PKG_FAIL_REASON
- This version of GPS is several years old and at the time they were
strongly tied to compiler.
- Latest release of GPS require gcc6-aux (not available) and several
new and complex dependencies
- maintainer (me) has no interest to continue supporting it
- Leaving GPS in place until Jan 2017 to give another person chance to
upgrade and take over support
- Latest version in FreeBSD Ports Collection as a reference point
Diffstat (limited to 'mk')
-rw-r--r-- | mk/compiler/gcc.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mk/compiler/gcc.mk b/mk/compiler/gcc.mk index 8478742c5b3..90e5e6e9384 100644 --- a/mk/compiler/gcc.mk +++ b/mk/compiler/gcc.mk @@ -1,4 +1,4 @@ -# $NetBSD: gcc.mk,v 1.170 2016/10/10 08:26:08 jperkin Exp $ +# $NetBSD: gcc.mk,v 1.171 2016/11/25 20:36:49 marino Exp $ # # This is the compiler definition for the GNU Compiler Collection. # @@ -97,8 +97,8 @@ GCC_REQD+= 2.8.0 GCC_REQD+= 3.0 .endif -# Only one compiler defined here supports Ada: lang/gcc-aux -# If the Ada language is requested, force lang/gcc-aux to be selected +# Only one compiler defined here supports Ada: lang/gcc5-aux +# If the Ada language is requested, force lang/gcc5-aux to be selected .if !empty(USE_LANGUAGES:Mada) GCC_REQD+= 20120614 .endif @@ -623,16 +623,16 @@ _USE_GCC_SHLIB?= yes . endif .elif !empty(_NEED_GCC_AUX:M[yY][eE][sS]) # -# We require Ada-capable compiler in the lang/gcc-aux directory. +# We require Ada-capable compiler in the lang/gcc5-aux directory. # -_GCC_PKGBASE= gcc-aux -. if !empty(PKGPATH:Mlang/gcc-aux) +_GCC_PKGBASE= gcc5-aux +. if !empty(PKGPATH:Mlang/gcc5-aux) _IGNORE_GCC= yes MAKEFLAGS+= _IGNORE_GCC=yes . endif . if !defined(_IGNORE_GCC) && !empty(_LANGUAGES.gcc) -_GCC_PKGSRCDIR= ../../lang/gcc-aux -_GCC_DEPENDENCY= gcc-aux>=${_GCC_REQD}:../../lang/gcc-aux +_GCC_PKGSRCDIR= ../../lang/gcc5-aux +_GCC_DEPENDENCY= gcc5-aux>=${_GCC_REQD}:../../lang/gcc5-aux . if !empty(_LANGUAGES.gcc:Mc++) || \ !empty(_LANGUAGES.gcc:Mfortran) || \ !empty(_LANGUAGES.gcc:Mfortran77) || \ |