From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B3B941384B4 for ; Thu, 10 Dec 2015 23:47:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89EAEE0898; Thu, 10 Dec 2015 23:47:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F03DAE0898 for ; Thu, 10 Dec 2015 23:47:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 96739340901 for ; Thu, 10 Dec 2015 23:47:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E75B7CB0 for ; Thu, 10 Dec 2015 23:47:28 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1449791239.8efec87a1d388817f6a4f1424a9534549db699ed.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/doxygen/doxygen-9999.ebuild X-VCS-Directories: app-doc/doxygen/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 8efec87a1d388817f6a4f1424a9534549db699ed X-VCS-Branch: master Date: Thu, 10 Dec 2015 23:47:28 +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: 024e82ec-8c95-411e-a7ff-701de9b6064c X-Archives-Hash: 3d571ed9b3b37d2d8f077417c36af206 commit: 8efec87a1d388817f6a4f1424a9534549db699ed Author: Matthias Maier gentoo org> AuthorDate: Thu Dec 10 23:46:38 2015 +0000 Commit: Matthias Maier gentoo org> CommitDate: Thu Dec 10 23:47:19 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8efec87a app-doc/doxygen: Update live ebuild to EAPI=5, change SRC_URI to github Package-Manager: portage-2.2.26 app-doc/doxygen/doxygen-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-doc/doxygen/doxygen-9999.ebuild b/app-doc/doxygen/doxygen-9999.ebuild index 4d55a76..e26d99d 100644 --- a/app-doc/doxygen/doxygen-9999.ebuild +++ b/app-doc/doxygen/doxygen-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) inherit cmake-utils eutils fdo-mime flag-o-matic python-any-r1 qt4-r2 @@ -12,8 +12,9 @@ if [[ ${PV} = *9999* ]]; then SRC_URI="" KEYWORDS="" else - SRC_URI="http://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz" # switch to github? + SRC_URI="https://github.com/doxygen/doxygen/archive/Release_${PV//\./_}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" + S="${WORKDIR}/${PN}-Release_${PV//\./_}" fi SRC_URI+=" https://dev.gentoo.org/~xarthisius/distfiles/doxywizard.png"