From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F22921382C5 for ; Wed, 16 May 2018 21:49:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62CFCE0956; Wed, 16 May 2018 21:49:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 434DCE0953 for ; Wed, 16 May 2018 21:49:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 53F84335C73 for ; Wed, 16 May 2018 21:49:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81A0A2A9 for ; Wed, 16 May 2018 21:49:35 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1526507369.870ba927b664bb72be14063cac451dbcc75182e7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild sci-physics/h2o-gtk/h2o-gtk-9999.ebuild X-VCS-Directories: sci-physics/h2o-gtk/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 870ba927b664bb72be14063cac451dbcc75182e7 X-VCS-Branch: master Date: Wed, 16 May 2018 21:49:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 990f6c2b-4412-44d3-ae0a-2063bf872b34 X-Archives-Hash: 8c0144ba9c84316f59ad3de5d97455e6 commit: 870ba927b664bb72be14063cac451dbcc75182e7 Author: Michał Górny gentoo org> AuthorDate: Wed May 16 21:16:37 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 16 21:49:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870ba927 sci-physics/h2o-gtk: Bump to EAPI 7 .../{h2o-gtk-9999.ebuild => h2o-gtk-0.1-r1.ebuild} | 16 ++++++++-------- sci-physics/h2o-gtk/h2o-gtk-9999.ebuild | 11 +++++++---- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild b/sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild similarity index 65% copy from sci-physics/h2o-gtk/h2o-gtk-9999.ebuild copy to sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild index dd9d42e7722..ec3885a327d 100644 --- a/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild +++ b/sci-physics/h2o-gtk/h2o-gtk-0.1-r1.ebuild @@ -1,23 +1,23 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -AUTOTOOLS_AUTORECONF=yes - -inherit autotools-utils git-r3 +EAPI=7 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties" HOMEPAGE="https://github.com/mgorny/h2o-gtk/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/mgorny/h2o-gtk.git" +SRC_URI="https://github.com/mgorny/h2o-gtk/releases/download/${P}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="" +KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-cpp/gtkmm:2.4= sci-libs/libh2oxx:0= sci-libs/plotmm:0=" DEPEND="${RDEPEND}" + +src_configure() { + local -x CXXFLAGS="${CXXFLAGS} -std=c++11" + default +} diff --git a/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild b/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild index dd9d42e7722..1096a19fbbc 100644 --- a/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild +++ b/sci-physics/h2o-gtk/h2o-gtk-9999.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -AUTOTOOLS_AUTORECONF=yes - -inherit autotools-utils git-r3 +inherit autotools git-r3 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties" HOMEPAGE="https://github.com/mgorny/h2o-gtk/" @@ -21,3 +19,8 @@ RDEPEND="dev-cpp/gtkmm:2.4= sci-libs/libh2oxx:0= sci-libs/plotmm:0=" DEPEND="${RDEPEND}" + +src_prepare() { + default + eautoreconf +}