[gentoo-commits] repo/gentoo:master commit in: dev-libs/polylib/

2019-04-04 Thread Jeroen Roovers
commit: 17e92188dd2c2b52b0df72a88a1e1a1b7e655b96
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Apr  4 08:53:09 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Apr  4 08:53:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e92188

dev-libs/polylib: Switch to HTTPS in EGIT_REPO_URI

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-libs/polylib/polylib-.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-libs/polylib/polylib-.ebuild 
b/dev-libs/polylib/polylib-.ebuild
index 030fb2d7195..dabb9d8742d 100644
--- a/dev-libs/polylib/polylib-.ebuild
+++ b/dev-libs/polylib/polylib-.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 inherit autotools git-r3
 
-EGIT_REPO_URI="git://repo.or.cz/${PN}.git
-   http://repo.or.cz/r/${PN}.git;
+EGIT_REPO_URI="https://repo.or.cz/r/${PN}.git;
 
 DESCRIPTION="ppl port of cloog"
 HOMEPAGE="http://icps.u-strasbg.fr/polylib/;



[gentoo-commits] repo/gentoo:master commit in: dev-libs/polylib/, dev-libs/polylib/files/

2018-05-27 Thread Johannes Huber
commit: 3a9ddc002c62c45e4b1d3945c6701fe355e9540d
Author: Marty E. Plummer  startmail  com>
AuthorDate: Sun May 20 22:54:23 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sun May 27 21:59:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a9ddc00

dev-libs/polylib: git-2->git-r3, EAPI 0->6

Also dropped unneeded patch (upstream code has this header included
without need for the patch any longer.) eutils no longer required.

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Signed-off-by: Johannes Huber  gentoo.org>

 dev-libs/polylib/files/polylib--headers.patch | 10 --
 dev-libs/polylib/polylib-.ebuild  | 16 +++-
 2 files changed, 7 insertions(+), 19 deletions(-)

diff --git a/dev-libs/polylib/files/polylib--headers.patch 
b/dev-libs/polylib/files/polylib--headers.patch
deleted file mode 100644
index 69b7b271a92..000
--- a/dev-libs/polylib/files/polylib--headers.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/applications/ehrhart_union.c
-+++ b/applications/ehrhart_union.c
-@@ -1,6 +1,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include 
- 

diff --git a/dev-libs/polylib/polylib-.ebuild 
b/dev-libs/polylib/polylib-.ebuild
index 63e1058b6a8..030fb2d7195 100644
--- a/dev-libs/polylib/polylib-.ebuild
+++ b/dev-libs/polylib/polylib-.ebuild
@@ -1,12 +1,12 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=6
+
+inherit autotools git-r3
 
 EGIT_REPO_URI="git://repo.or.cz/${PN}.git
http://repo.or.cz/r/${PN}.git;
-EGIT_BOOTSTRAP="eautoreconf && cd cln && eautoreconf"
-inherit git-2 autotools eutils
 
 DESCRIPTION="ppl port of cloog"
 HOMEPAGE="http://icps.u-strasbg.fr/polylib/;
@@ -16,15 +16,13 @@ SLOT="0"
 KEYWORDS=""
 IUSE=""
 
-src_unpack() {
-   git-2_src_unpack
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-headers.patch
-   # strip LDFLAGS from pkgconfig .pc file
+src_prepare() {
+   default
+   eautoreconf
sed -i '/Libs:/s:@LDFLAGS@::' configure
 }
 
 src_install() {
-   emake DESTDIR="${D}" install || die
+   default
dodoc doc/Changes
 }