public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alfredo Tupone" <tupone@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gps/, dev-ada/gps/files/
Date: Thu, 29 Nov 2018 21:02:38 +0000 (UTC)	[thread overview]
Message-ID: <1543525350.645f42b66db1d9b46138b11bf89dbb5016b511b2.tupone@gentoo> (raw)

commit:     645f42b66db1d9b46138b11bf89dbb5016b511b2
Author:     Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 21:02:10 2018 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Nov 29 21:02:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=645f42b6

dev-ada/gps: Stable

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

 dev-ada/gps/files/gps-2018-gentoo.patch | 40 -----------------------
 dev-ada/gps/gps-2018.ebuild             | 56 +++++++++++++++++++++++----------
 2 files changed, 39 insertions(+), 57 deletions(-)

diff --git a/dev-ada/gps/files/gps-2018-gentoo.patch b/dev-ada/gps/files/gps-2018-gentoo.patch
index 06a080b69d5..6e258bac36a 100644
--- a/dev-ada/gps/files/gps-2018-gentoo.patch
+++ b/dev-ada/gps/files/gps-2018-gentoo.patch
@@ -75,43 +75,3 @@
         <string />
     </project_attribute>
  
---- a/gnatcoll_extras/gnatcoll_extras.gpr	2018-07-22 14:42:17.618161040 +0200
-+++ b/gnatcoll_extras/gnatcoll_extras.gpr	2018-07-22 14:43:33.973070921 +0200
-@@ -14,6 +14,7 @@
-       for Switches ("C") use
-         ("-g", "-O2")
-         & Shared.Gtk_Cflags & Shared.Pygobject_Include & Shared.Python_Cflags;
-+      for Driver ("C") use External ("CC", "gcc");
-    end Compiler;
- 
- end GNATCOLL_Extras;
---- a/widgets/widgets.gpr	2018-07-22 21:46:23.907355738 +0200
-+++ b/widgets/widgets.gpr	2018-07-22 21:47:02.673825994 +0200
-@@ -14,6 +14,7 @@
-       for Switches ("C") use
-         ("-g", "-O2")
-         & Shared.Gtk_Cflags;
-+      for Driver ("C") use External ("CC", "gcc");
-    end Compiler;
- 
- end Widgets;
---- a/common/common.gpr.in	2018-07-25 08:05:45.227060250 +0200
-+++ b/common/common.gpr.in	2018-07-25 08:06:55.067009811 +0200
-@@ -23,6 +23,7 @@
-              for Switches ("dynamic_arrays.adb") use No_Checks;
-           when "Debug" =>
-       end case;
-+      for Driver ("C") use External ("CC", "gcc");
-    end Compiler;
- 
-    package Binder is
---- a/shared.gpr.in	2018-07-25 08:11:47.317597391 +0200
-+++ b/shared.gpr.in	2018-07-25 08:10:56.774362671 +0200
-@@ -60,6 +60,7 @@
-                );
-             for Switches ("C") use Optimize & ("-g", "-O2");
-       end case;
-+      for Driver ("C") use External ("CC", "gcc");
-    end Compiler;
- 
-    package Binder is

diff --git a/dev-ada/gps/gps-2018.ebuild b/dev-ada/gps/gps-2018.ebuild
index 85c357baef7..71560c0907c 100644
--- a/dev-ada/gps/gps-2018.ebuild
+++ b/dev-ada/gps/gps-2018.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 PYTHON_COMPAT=( python2_7 )
-inherit python-single-r1 autotools desktop
+inherit python-single-r1 autotools desktop llvm
 
 MYP=${PN}-gpl-${PV}-src
 
@@ -16,16 +16,23 @@ SRC_URI="http://mirrors.cdn.adacore.com/art/5b0cf627c7a4475261f97ceb
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
+KEYWORDS="amd64 x86"
+IUSE="gnat_2017 gnat_2018"
 
 RDEPEND="${PYTHON_DEPS}
-	dev-ada/gnatcoll-db[gnatcoll_db2ada,gnatinspect,xref]
-	dev-ada/gnatcoll-bindings[python]
-	>=dev-ada/gtkada-2017[gnat_2018]
-	dev-ada/libadalang[gnat_2018]
+	dev-ada/gnatcoll-db[gnat_2017=,gnat_2018,gnatcoll_db2ada,gnatinspect,xref]
+	dev-ada/gnatcoll-bindings[gnat_2017=,gnat_2018=,python]
+	>=dev-ada/gtkada-2017[gnat_2017=,gnat_2017=]
+	dev-ada/libadalang[gnat_2017=,gnat_2018=]
 	dev-libs/gobject-introspection
 	dev-libs/libffi
+	gnat_2017? ( sys-devel/llvm:5 )
+	gnat_2018? (
+		|| (
+			sys-devel/llvm:6
+			sys-devel/llvm:7
+		)
+	)
 	sys-devel/clang:=
 	x11-themes/adwaita-icon-theme
 	x11-themes/hicolor-icon-theme
@@ -40,31 +47,46 @@ S="${WORKDIR}"/${MYP}
 
 PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
 
+pkg_setup() {
+	if use gnat_2017; then
+		GCC_PV=6.3.0
+		LLVM_MAX_SLOT=5
+	else
+		GCC_PV=7.3.1
+		LLVM_MAX_SLOT=7
+	fi
+	GNATMAKE=gnatmake-${GCC_PV}
+	GNATDRV=gnat-${GCC_PV}
+	GNATLS=gnatls-${GCC_PV}
+	llvm_pkg_setup
+}
+
 src_prepare() {
 	GCC_PV=7.3.1
 	default
 	sed -i \
-	-e "s:@GNATMAKE@:${CHOST}-gnatmake-${GCC_PV}:g" \
-	-e "s:@GNAT@:${CHOST}-gnat-${GCC_PV}:g" \
-	-e "s:@GNATLS@:${CHOST}-gnatls-${GCC_PV}:g" \
-	share/support/core/toolchains.py \
-	share/support/core/projects.py \
-	|| die
+		-e "s:@GNATMAKE@:${CHOST}-${GNATMAKE}:g" \
+		-e "s:@GNAT@:${CHOST}-${GNATDRV}:g" \
+		-e "s:@GNATLS@:${CHOST}-${GNATLS}:g" \
+		share/support/core/toolchains.py \
+		share/support/core/projects.py \
+		|| die
 	mv "${WORKDIR}"/libadalang-tools-src laltools
 }
 
 src_configure() {
 	econf \
-		GNATMAKE=/usr/bin/gnatmake-7.3.1 \
-		GNATDRV=/usr/bin/gnat-7.3.1 \
+		GNATMAKE=/usr/bin/${GNATMAKE} \
+		GNATDRV=/usr/bin/${GNATDRV} \
 		--with-clang=$(llvm-config --libdir)
 }
 
 src_compile() {
-	CC=/usr/bin/gcc-7.3.1 emake -C gps GPRBUILD_FLAGS="-v ${MAKEOPTS}" \
+	emake -C gps GPRBUILD_FLAGS="-v ${MAKEOPTS} \
+		-XGPR_BUILD=relocatable" \
 		Build=Production
 	gprbuild -v -p -Pcli/cli.gpr ${MAKEOPTS} -XLIBRARY_TYPE=relocatable \
-		-cargs:Ada ${ADAFLAGS}
+		-XGPR_BUILD=relocatable -cargs:Ada ${ADAFLAGS} || die
 }
 
 src_install() {


             reply	other threads:[~2018-11-29 21:02 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-29 21:02 Alfredo Tupone [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-05-01  8:54 [gentoo-commits] repo/gentoo:master commit in: dev-ada/gps/, dev-ada/gps/files/ Michał Górny
2019-11-03 18:15 Alfredo Tupone
2017-11-21 20:47 Alfredo Tupone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1543525350.645f42b66db1d9b46138b11bf89dbb5016b511b2.tupone@gentoo \
    --to=tupone@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox