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 57C9C139694 for ; Sun, 30 Jul 2017 10:05:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 341C61FC2C4; Sun, 30 Jul 2017 10:04:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 117E31FC2C4 for ; Sun, 30 Jul 2017 10:04:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B996C341A2C for ; Sun, 30 Jul 2017 10:04:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C71D74D9 for ; Sun, 30 Jul 2017 10:04:38 +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: <1501409069.45c0828c4acae7eb234e20d28b09663e922d8099.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/superlu/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/superlu/superlu-4.3-r1.ebuild sci-libs/superlu/superlu-5.2.1-r1.ebuild X-VCS-Directories: sci-libs/superlu/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 45c0828c4acae7eb234e20d28b09663e922d8099 X-VCS-Branch: master Date: Sun, 30 Jul 2017 10:04:38 +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: 03f7a5ec-3734-4dbe-851e-ff674a8e94b2 X-Archives-Hash: 41e6cdddedf1c1cca4189c0c24b2f17c commit: 45c0828c4acae7eb234e20d28b09663e922d8099 Author: David Hicks hicks id au> AuthorDate: Sat Jul 29 19:07:02 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 30 10:04:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45c0828c sci-libs/superlu: use HTTPS for GitHub Package-Manager: Portage-2.3.6, Repoman-2.3.3 sci-libs/superlu/superlu-4.3-r1.ebuild | 2 +- sci-libs/superlu/superlu-5.2.1-r1.ebuild | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sci-libs/superlu/superlu-4.3-r1.ebuild b/sci-libs/superlu/superlu-4.3-r1.ebuild index cbd30cf8732..27da140292a 100644 --- a/sci-libs/superlu/superlu-4.3-r1.ebuild +++ b/sci-libs/superlu/superlu-4.3-r1.ebuild @@ -11,7 +11,7 @@ inherit autotools-utils fortran-2 toolchain-funcs multilib MY_PN=SuperLU DESCRIPTION="Sparse LU factorization library" -HOMEPAGE="http://crd.lbl.gov/~xiaoye/SuperLU/" +HOMEPAGE="http://crd-legacy.lbl.gov/~xiaoye/SuperLU/" SRC_URI="${HOMEPAGE}/${PN}_${PV}.tar.gz" LICENSE="BSD" diff --git a/sci-libs/superlu/superlu-5.2.1-r1.ebuild b/sci-libs/superlu/superlu-5.2.1-r1.ebuild index 0dae1c85b8d..8f2fa083bb9 100644 --- a/sci-libs/superlu/superlu-5.2.1-r1.ebuild +++ b/sci-libs/superlu/superlu-5.2.1-r1.ebuild @@ -11,20 +11,20 @@ MY_PN=SuperLU if [[ ${PV} != *9999* ]]; then inherit versionator - SRC_URI="http://crd.lbl.gov/~xiaoye/SuperLU//${PN}_${PV}.tar.gz" + SRC_URI="http://crd-legacy.lbl.gov/~xiaoye/SuperLU//${PN}_${PV}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" SLOT="0/$(get_major_version)" S="${WORKDIR}/SuperLU_${PV}" else inherit git-r3 GIT_ECLASS="git-r3" - EGIT_REPO_URI=( "git://github.com/xiaoyeli/superlu" ) + EGIT_REPO_URI="https://github.com/xiaoyeli/${PN}" SLOT="0/9999" KEYWORDS="~arm64 ~hppa ~ia64" fi DESCRIPTION="Sparse LU factorization library" -HOMEPAGE="http://crd.lbl.gov/~xiaoye/SuperLU/" +HOMEPAGE="http://crd-legacy.lbl.gov/~xiaoye/SuperLU/" LICENSE="BSD" IUSE="doc examples test"