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 72DAD13934E for ; Mon, 26 Jul 2021 14:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5E9DE095C; Mon, 26 Jul 2021 14:05:41 +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 9CCBEE095C for ; Mon, 26 Jul 2021 14:05:41 +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 8658B340FC9 for ; Mon, 26 Jul 2021 14:05:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91337844 for ; Mon, 26 Jul 2021 14:05:37 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1627235653.7550cd50ab0c998a6b0630c1a153bb891640a475.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/boinc.eclass X-VCS-Directories: eclass/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 7550cd50ab0c998a6b0630c1a153bb891640a475 X-VCS-Branch: master Date: Mon, 26 Jul 2021 14:05:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7a038fb1-320a-407c-97be-50cc12f12d62 X-Archives-Hash: 0351ea9619ee1da99c22bdd22cd5e1f7 commit: 7550cd50ab0c998a6b0630c1a153bb891640a475 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Jul 25 17:54:13 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Sun Jul 25 17:54:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7550cd50 boinc.eclass: add missing slash in download URL Closes: https://bugs.gentoo.org/803902 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> eclass/boinc.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/boinc.eclass b/eclass/boinc.eclass index d16d6e250..80281c69d 100644 --- a/eclass/boinc.eclass +++ b/eclass/boinc.eclass @@ -56,7 +56,7 @@ get_boinc_src() { *) die "${FUNCNAME}: unknown release type '${RELEASE_TYPE}'" esac - local _SRC_URI="https://github.com/BOINC/boinc/archive" + local _SRC_URI="https://github.com/BOINC/boinc/archive/" _SRC_URI+="${RELEASE_TYPE}_release/${RELEASE_MINOR}/${RELEASE_PATCH}.tar.gz" _SRC_URI+=" -> boinc${SUFFIX}-${RELEASE_PATCH}.tar.gz"