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 D1C2E15800F for ; Fri, 10 Feb 2023 12:40:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 228A8E07FE; Fri, 10 Feb 2023 12:40:50 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 07B07E07FE for ; Fri, 10 Feb 2023 12:40:50 +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 2A7C9340D4A for ; Fri, 10 Feb 2023 12:40:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4633A8B1 for ; Fri, 10 Feb 2023 12:40:45 +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: <1676032787.ccf7a19d3bd7beb971d5fbbf38a50222be4a5ee5.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/sqlite3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/sqlite3/Manifest dev-erlang/sqlite3/sqlite3-1.1.14.ebuild X-VCS-Directories: dev-erlang/sqlite3/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ccf7a19d3bd7beb971d5fbbf38a50222be4a5ee5 X-VCS-Branch: master Date: Fri, 10 Feb 2023 12:40:45 +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: 989ae275-00b4-4c1d-96b0-f72a60253a5a X-Archives-Hash: 29859934490a9be55e8eb4b6def70134 commit: ccf7a19d3bd7beb971d5fbbf38a50222be4a5ee5 Author: Florian Schmaus gentoo org> AuthorDate: Fri Feb 10 12:22:27 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Feb 10 12:39:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf7a19d dev-erlang/sqlite3: add 1.1.14 Signed-off-by: Florian Schmaus gentoo.org> dev-erlang/sqlite3/Manifest | 1 + dev-erlang/sqlite3/sqlite3-1.1.14.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-erlang/sqlite3/Manifest b/dev-erlang/sqlite3/Manifest index a32da67ea9e5..3be3f4d03875 100644 --- a/dev-erlang/sqlite3/Manifest +++ b/dev-erlang/sqlite3/Manifest @@ -1 +1,2 @@ DIST sqlite3-1.1.13.tar.gz 1920452 BLAKE2B a00bdc876a6175340256a327c62952b8b96b8a81c913d6145f95a0f8bafeab726296cd9e051c833761ca573b414e2fdd0e5307a6654135b108377f3029634451 SHA512 9e9e254511c0da74367e74c5b42cbe1bcc42a8232c1d60549b5a71f4db072391d7870b069ce247a972bef05f16d70b22b4c37176a59e44e75dc975946c86581f +DIST sqlite3-1.1.14.tar.gz 1715677 BLAKE2B d7da9f906ebfd078fe91ccd3d450983f66781b5f74939dc45fe5a6b35e3a56e787e743784c8d59fb622b53c5d7b2a6ca1b683847815ee736eb72a05837c47732 SHA512 afe3fc31e53ccaf509c403b5c830e55c94fb2c44471b0a94126ee717dd98ad042f6b56c62a3a071ee920550be291b33d393a72b43253e137b43545623e9292f8 diff --git a/dev-erlang/sqlite3/sqlite3-1.1.14.ebuild b/dev-erlang/sqlite3/sqlite3-1.1.14.ebuild new file mode 100644 index 000000000000..7e8ec57c8f0c --- /dev/null +++ b/dev-erlang/sqlite3/sqlite3-1.1.14.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rebar + +MY_PN="erlang-sqlite3" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="SQLite gen_server port for Erlang" +HOMEPAGE="https://github.com/processone/erlang-sqlite3" +SRC_URI=" + https://github.com/processone/${MY_PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="ErlPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +DEPEND=">=dev-lang/erlang-17.1 + dev-db/sqlite:3" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS README.md ) + +S="${WORKDIR}/${MY_P}"