commit:     407d05f11397748b2a14b4689ab4f0928feef7ce
Author:     Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 19:23:28 2019 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 21 19:23:28 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=407d05f1

dev-lang/gnat-gpl: EAPI 6

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-lang/gnat-gpl/files/gnat-gpl-2018-gentoo.patch |   4 +-
 dev-lang/gnat-gpl/gnat-gpl-2018-r3.ebuild          | 193 +++++++++++++++++++++
 2 files changed, 195 insertions(+), 2 deletions(-)

diff --git a/dev-lang/gnat-gpl/files/gnat-gpl-2018-gentoo.patch 
b/dev-lang/gnat-gpl/files/gnat-gpl-2018-gentoo.patch
index b778900083e..5d6a38af14e 100644
--- a/dev-lang/gnat-gpl/files/gnat-gpl-2018-gentoo.patch
+++ b/dev-lang/gnat-gpl/files/gnat-gpl-2018-gentoo.patch
@@ -1,5 +1,5 @@
---- gcc-7-gpl-2018-src/gcc/ada/osint.adb.old   2017-03-10 21:58:02.600710156 
+0100
-+++ gcc-7-gpl-2018-src/gcc/ada/osint.adb       2017-03-10 21:59:38.033983293 
+0100
+--- a/gcc-7-gpl-2018-src/gcc/ada/osint.adb     2017-03-10 21:58:02.600710156 
+0100
++++ b/gcc-7-gpl-2018-src/gcc/ada/osint.adb     2017-03-10 21:59:38.033983293 
+0100
 @@ -2229,14 +2229,11 @@
        for J in Start_Of_Prefix .. Name_Len - Prog'Length + 1 loop
           if Name_Buffer (J .. J + Prog'Length - 1) = Prog then

diff --git a/dev-lang/gnat-gpl/gnat-gpl-2018-r3.ebuild 
b/dev-lang/gnat-gpl/gnat-gpl-2018-r3.ebuild
new file mode 100644
index 00000000000..00f3295d1ce
--- /dev/null
+++ b/dev-lang/gnat-gpl/gnat-gpl-2018-r3.ebuild
@@ -0,0 +1,193 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PATCH_VER="1.8"
+
+TOOLCHAIN_GCC_PV=7.3.0
+GCC_CONFIG_VER=7.3.1
+
+inherit toolchain-funcs toolchain
+
+REL=7
+MYP=gcc-${REL}-gpl-${PV}-src
+BTSTRP_X86=gnat-gpl-2014-x86-linux-bin
+BTSTRP_AMD64=gnat-gpl-2014-x86_64-linux-bin
+
+DESCRIPTION="GNAT Ada Compiler - GPL version"
+HOMEPAGE="http://libre.adacore.com/";
+SRC_URI+="
+       http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa5
+               -> ${P}-src.tar.gz
+       http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa7
+               -> ${MYP}.tar.gz
+       http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27aa6
+               -> gcc-interface-${REL}-gpl-${PV}-src.tar.gz
+       bootstrap? (
+               amd64? (
+                       
http://mirrors.cdn.adacore.com/art/564b3ebec8e196b040fbe66c ->
+                       ${BTSTRP_AMD64}.tar.gz
+               )
+               x86? (
+                       
http://mirrors.cdn.adacore.com/art/564b3e9dc8e196b040fbe248 ->
+                       ${BTSTRP_X86}.tar.gz
+               )
+       )"
+
+LICENSE+=" GPL-2 GPL-3"
+KEYWORDS="~amd64 ~x86"
+IUSE="+bootstrap"
+
+RDEPEND="!sys-devel/gcc:${GCC_CONFIG_VER}"
+DEPEND="${RDEPEND}
+       elibc_glibc? ( >=sys-libs/glibc-2.13 )
+       >=sys-devel/binutils-2.20"
+
+S="${WORKDIR}"/${MYP}
+PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
+FSFGCC=gcc-${TOOLCHAIN_GCC_PV}
+
+pkg_setup() {
+       toolchain_pkg_setup
+
+       if use amd64; then
+               BTSTRP=${BTSTRP_AMD64}
+       else
+               BTSTRP=${BTSTRP_X86}
+       fi
+
+       if use bootstrap; then
+               GCC="${WORKDIR}"/${BTSTRP}/bin/gcc
+       else
+               GCC=${ADA:-$(tc-getCC)}
+       fi
+
+       gnatbase=$(basename ${GCC})
+       gnatpath=$(dirname ${GCC})
+
+       GNATMAKE=${gnatbase/gcc/gnatmake}
+       if [[ ${gnatpath} != "." ]] ; then
+               GNATMAKE="${gnatpath}/${GNATMAKE}"
+       fi
+}
+
+src_unpack() {
+       if ! use bootstrap && [[ -z "$(type ${GNATMAKE} 2>/dev/null)" ]] ; then
+               eerror "You need a gcc compiler that provides the Ada Compiler:"
+               eerror "1) use gcc-config to select the right compiler or"
+               eerror "2) set the bootstrap use flag"
+               die "ada compiler not available"
+       fi
+
+       GCC_A_FAKEIT="
+               ${P}-src.tar.gz
+               ${MYP}.tar.gz
+               gcc-interface-${REL}-gpl-${PV}-src.tar.gz"
+       if use bootstrap; then
+               GCC_A_FAKEIT="${GCC_A_FAKEIT} ${BTSTRP}.tar.gz"
+       fi
+
+       toolchain_src_unpack
+       if use bootstrap; then
+               rm ${BTSTRP}/libexec/gcc/${CHOST}/4.7.4/ld || die
+       fi
+}
+
+src_prepare() {
+       CC=${GCC}
+       CXX="${gnatbase/gcc/g++}"
+       GNATBIND="${gnatbase/gcc/gnatbind}"
+       GNATLINK="${gnatbase/gcc/gnatlink}"
+       GNATLS="${gnatbase/gcc/gnatls}"
+       if [[ ${gnatpath} != "." ]] ; then
+               CXX="${gnatpath}/${CXX}"
+               GNATBIND="${gnatpath}/${GNATBIND}"
+               GNATLINK="${gnatpath}/${GNATLINK}"
+               GNATLS="${gnatpath}/${GNATLS}"
+       fi
+       mkdir bin || die
+       ln -s $(which ${GCC}) bin/gcc || die
+       ln -s $(which ${CXX}) bin/g++ || die
+       ln -s $(which ${GNATMAKE}) bin/gnatmake || die
+       ln -s $(which ${GNATBIND}) bin/gnatbind || die
+       ln -s $(which ${GNATLINK}) bin/gnatlink || die
+       ln -s $(which ${GNATLS}) bin/gnatls || die
+
+       cd ..
+       sed -i \
+               -e 's:$(P) ::g' \
+               gcc-interface-${REL}-gpl-${PV}-src/Makefile.in \
+               || die "sed failed"
+       mv ${P}-src/src/ada ${MYP}/gcc/ || die
+       mv gcc-interface-${REL}-gpl-${PV}-src ${MYP}/gcc/ada/gcc-interface || 
die
+       eapply "${FILESDIR}"/${P}-gentoo.patch
+       cd -
+
+       EPATCH_EXCLUDE+=" 91_all_bmi-i386-PR-target-81763.patch"
+       EPATCH_EXCLUDE+=" 93_all_copy-constructible-fix.patch"
+       EPATCH_EXCLUDE+=" 
95_all_libsanitizer-avoidustat.h-glibc-2.28-part-1.patch"
+       EPATCH_EXCLUDE+=" 98_all_msp430-partial-int.patch"
+       toolchain_src_prepare
+}
+
+src_configure() {
+       export PATH=${PWD}/bin:${PATH}
+       local trueGCC_BRANCH_VER=${GCC_BRANCH_VER}
+       GCC_BRANCH_VER=$(gcc-version)
+       downgrade_arch_flags
+       GCC_BRANCH_VER=${trueGCC_BRANCH_VER}
+       toolchain_src_configure \
+               --enable-languages=ada \
+               --disable-libada
+}
+
+src_compile() {
+       unset ADAFLAGS
+       toolchain_src_compile
+       gcc_do_make "-C gcc gnatlib-shared"
+       ln -s gcc ../build/prev-gcc || die
+       ln -s ${CHOST} ../build/prev-${CHOST} || die
+       gcc_do_make "-C gcc gnattools"
+}
+
+src_install() {
+       toolchain_src_install
+       cd "${D}"${BINPATH}
+       for x in gnat*; do
+               # For some reason, g77 gets made instead of ${CTARGET}-g77...
+               # this should take care of that
+               if [[ -f ${x} ]] ; then
+                       # In case they're hardlinks, clear out the target first
+                       # otherwise the mv below will complain.
+                       rm -f ${CTARGET}-${x}
+                       mv ${x} ${CTARGET}-${x}
+               fi
+
+               if [[ -f ${CTARGET}-${x} ]] ; then
+                       if ! is_crosscompile ; then
+                               ln -sf ${CTARGET}-${x} ${x}
+                               dosym ${BINPATH#${EPREFIX}}/${CTARGET}-${x} \
+                                       /usr/bin/${x}-${GCC_CONFIG_VER}
+                       fi
+                       # Create versioned symlinks
+                       dosym ${BINPATH#${EPREFIX}}/${CTARGET}-${x} \
+                               /usr/bin/${CTARGET}-${x}-${GCC_CONFIG_VER}
+               fi
+
+               if [[ -f ${CTARGET}-${x}-${GCC_CONFIG_VER} ]] ; then
+                       rm -f ${CTARGET}-${x}-${GCC_CONFIG_VER}
+                       ln -sf ${CTARGET}-${x} ${CTARGET}-${x}-${GCC_CONFIG_VER}
+               fi
+       done
+}
+
+pkg_postinst () {
+       toolchain_pkg_postinst
+       einfo "This provide the GNAT compiler with gcc for ada/c/c++ and more"
+       einfo "The compiler binary is ${CTARGET}-gcc-${TOOLCHAIN_GCC_PV}"
+       einfo "Even if the c/c++ compilers are using almost the same patched"
+       einfo "source as the sys-devel/gcc package its use is not extensively"
+       einfo "tested, and not supported for updating your system, except for 
ada"
+       einfo "related packages"
+}

Reply via email to