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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF27D1581D3 for ; Sat, 25 May 2024 12:00:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC930E2A28; Sat, 25 May 2024 12:00:08 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A291BE2A28 for ; Sat, 25 May 2024 12:00:08 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9160634069F for ; Sat, 25 May 2024 12:00:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99BF8ED0 for ; Sat, 25 May 2024 12:00:05 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1716638378.0a7cd6c150fbd2ed7e60181b3beb3958d8c98c38.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/base64url/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/base64url/base64url-1.0.1-r1.ebuild X-VCS-Directories: dev-erlang/base64url/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 0a7cd6c150fbd2ed7e60181b3beb3958d8c98c38 X-VCS-Branch: master Date: Sat, 25 May 2024 12:00:05 +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: 40753060-6590-48e4-9f1b-3fbd4c3ef052 X-Archives-Hash: 9b29d900a20daafa5371f2c80e2edd9e commit: 0a7cd6c150fbd2ed7e60181b3beb3958d8c98c38 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu May 23 16:20:43 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sat May 25 11:59:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a7cd6c1 dev-erlang/base64url: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Florian Schmaus gentoo.org> dev-erlang/base64url/base64url-1.0.1-r1.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev-erlang/base64url/base64url-1.0.1-r1.ebuild b/dev-erlang/base64url/base64url-1.0.1-r1.ebuild new file mode 100644 index 000000000000..931a9db60cf9 --- /dev/null +++ b/dev-erlang/base64url/base64url-1.0.1-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rebar + +DESCRIPTION="URL safe base64-compatible codec" +HOMEPAGE="https://github.com/dvv/base64url" +SRC_URI="https://github.com/dvv/base64url/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +DEPEND=">=dev-lang/erlang-17.1" +RDEPEND="${DEPEND}"