From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71ABD1580E0 for ; Wed, 29 Jan 2025 15:49:21 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5CCCC342FF9 for ; Wed, 29 Jan 2025 15:49:21 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 5C3801103B6; Wed, 29 Jan 2025 15:49:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 528581103B6 for ; Wed, 29 Jan 2025 15:49:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 041FA342FF9 for ; Wed, 29 Jan 2025 15:49:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4472311A7 for ; Wed, 29 Jan 2025 15:49:18 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1738165752.f5ee38d8649b0744b5c7d94b2ef257536bc7e8d5.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtlsrpt/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1-r1.ebuild net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1.ebuild net-libs/libtlsrpt/libtlsrpt-9999.ebuild net-libs/libtlsrpt/metadata.xml X-VCS-Directories: net-libs/libtlsrpt/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: f5ee38d8649b0744b5c7d94b2ef257536bc7e8d5 X-VCS-Branch: master Date: Wed, 29 Jan 2025 15:49:18 +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: 29c267af-f22c-4325-97b3-7179c6c3e2d6 X-Archives-Hash: 1b1c3c1276fc04341299e57d3dd55015 commit: f5ee38d8649b0744b5c7d94b2ef257536bc7e8d5 Author: Marc Schiffbauer gentoo org> AuthorDate: Wed Jan 29 15:48:23 2025 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Wed Jan 29 15:49:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ee38d8 net-libs/libtlsrpt: fix upstream github repo name Signed-off-by: Marc Schiffbauer gentoo.org> .../{libtlsrpt-0.5.0_rc1.ebuild => libtlsrpt-0.5.0_rc1-r1.ebuild} | 8 ++++---- net-libs/libtlsrpt/libtlsrpt-9999.ebuild | 8 ++++---- net-libs/libtlsrpt/metadata.xml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1.ebuild b/net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1-r1.ebuild similarity index 71% rename from net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1.ebuild rename to net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1-r1.ebuild index 6db104bc038a..7f91034e4778 100644 --- a/net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1.ebuild +++ b/net-libs/libtlsrpt/libtlsrpt-0.5.0_rc1-r1.ebuild @@ -7,18 +7,18 @@ inherit autotools if [[ ${PV} == 9999 ]]; then inherit git-r3 - MY_P="libtlsrpt-${PV/_/}" - EGIT_REPO_URI="https://github.com/sys4/tlsrpt.git" + MY_P="${PN}${PV/_/}" + EGIT_REPO_URI="https://github.com/sys4/${PN}.git" S="${WORKDIR}/${MY_P}/${PN}" else MY_P="${PN}-${PV/_/}" - SRC_URI="https://github.com/sys4/tlsrpt/releases/download/v${PV/_/}/${MY_P}.tar.gz" + SRC_URI="https://github.com/sys4/${PN}/releases/download/v${PV/_/}/${MY_P}.tar.gz" KEYWORDS="~amd64" S="${WORKDIR}/${MY_P}" fi DESCRIPTION="library to implement TLSRPT" -HOMEPAGE="https://github.com/sys4/tlsrpt" +HOMEPAGE="https://github.com/sys4/libtlsrpt" LICENSE="LGPL-3+" SLOT="0" diff --git a/net-libs/libtlsrpt/libtlsrpt-9999.ebuild b/net-libs/libtlsrpt/libtlsrpt-9999.ebuild index 6db104bc038a..7f91034e4778 100644 --- a/net-libs/libtlsrpt/libtlsrpt-9999.ebuild +++ b/net-libs/libtlsrpt/libtlsrpt-9999.ebuild @@ -7,18 +7,18 @@ inherit autotools if [[ ${PV} == 9999 ]]; then inherit git-r3 - MY_P="libtlsrpt-${PV/_/}" - EGIT_REPO_URI="https://github.com/sys4/tlsrpt.git" + MY_P="${PN}${PV/_/}" + EGIT_REPO_URI="https://github.com/sys4/${PN}.git" S="${WORKDIR}/${MY_P}/${PN}" else MY_P="${PN}-${PV/_/}" - SRC_URI="https://github.com/sys4/tlsrpt/releases/download/v${PV/_/}/${MY_P}.tar.gz" + SRC_URI="https://github.com/sys4/${PN}/releases/download/v${PV/_/}/${MY_P}.tar.gz" KEYWORDS="~amd64" S="${WORKDIR}/${MY_P}" fi DESCRIPTION="library to implement TLSRPT" -HOMEPAGE="https://github.com/sys4/tlsrpt" +HOMEPAGE="https://github.com/sys4/libtlsrpt" LICENSE="LGPL-3+" SLOT="0" diff --git a/net-libs/libtlsrpt/metadata.xml b/net-libs/libtlsrpt/metadata.xml index 2bc724c1c82a..3f56980d56fc 100644 --- a/net-libs/libtlsrpt/metadata.xml +++ b/net-libs/libtlsrpt/metadata.xml @@ -5,6 +5,6 @@ mschiff@gentoo.org - sys4/tlsrpt + sys4/libtlsrpt