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 361BC13934E for ; Sun, 25 Jul 2021 18:15:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E05BE0CD0; Sun, 25 Jul 2021 18:15:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2FBE7E0CD0 for ; Sun, 25 Jul 2021 18:15:15 +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 01388342C98 for ; Sun, 25 Jul 2021 18:15:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8AECE581 for ; Sun, 25 Jul 2021 18:15:12 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1627235653.7550cd50ab0c998a6b0630c1a153bb891640a475.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/boinc.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 7550cd50ab0c998a6b0630c1a153bb891640a475 X-VCS-Branch: dev Date: Sun, 25 Jul 2021 18:15:12 +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: 2f44b52f-c12c-4dea-a382-dea39e8d8726 X-Archives-Hash: b64e760c851f9242fb686d4a54e15e5d commit: 7550cd50ab0c998a6b0630c1a153bb891640a475 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sun Jul 25 17:54:13 2021 +0000 Commit: Anna Vyalkova sysrq in> 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"