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 687EC138359 for ; Wed, 14 Oct 2020 10:13:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 895A3E0805; Wed, 14 Oct 2020 10:13:03 +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 6F84FE0805 for ; Wed, 14 Oct 2020 10:13:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4C485335DBD for ; Wed, 14 Oct 2020 10:13:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E617D388 for ; Wed, 14 Oct 2020 10:13:00 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1602670373.c6555eb6d366b1d3732f349b940e1a10751ea698.hanno@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.8.ebuild X-VCS-Directories: dev-erlang/sqlite3/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: c6555eb6d366b1d3732f349b940e1a10751ea698 X-VCS-Branch: master Date: Wed, 14 Oct 2020 10:13:00 +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: 078a489b-d567-43fe-8b41-fe1725795b3c X-Archives-Hash: b318875ac38ed729cc41a71b93cd18e3 commit: c6555eb6d366b1d3732f349b940e1a10751ea698 Author: Hanno Böck gentoo org> AuthorDate: Wed Oct 14 10:12:53 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed Oct 14 10:12:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6555eb6 dev-erlang/sqlite3: Bump Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-3.0.8, Repoman-3.0.1 dev-erlang/sqlite3/Manifest | 1 + dev-erlang/sqlite3/sqlite3-1.1.8.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-erlang/sqlite3/Manifest b/dev-erlang/sqlite3/Manifest index eb2bbd90859..9c10206d5c3 100644 --- a/dev-erlang/sqlite3/Manifest +++ b/dev-erlang/sqlite3/Manifest @@ -1 +1,2 @@ DIST sqlite3-1.1.7.tar.gz 1834822 BLAKE2B 9a3f30a3a5f4e7ebe38aa1a808057767dd6d43ab93b352b44fc3aef4c2ed8c19b5f4ee258a4ff7a2c052fb4f480f1fb3629624a171b07eb5e661acbc97b165b2 SHA512 8e4bd7dff93f7629d648934c4ce29c318d62313aa10de35144e4f6a3d8c87d8a423ccbe1c810476f8e8048358be4cb8ef242daa6138957e0b0d9c65fadbf144c +DIST sqlite3-1.1.8.tar.gz 1881308 BLAKE2B 0a73a422c678ef1827608cabb18dba28d11d260b91788caebbb8ad65355f60fc3b842df119da68fedf356013e52509a87ed4c0c7f117e024484069e0ef722fb5 SHA512 056630056680f6606c6acf303521bc31ccf514163e4f02df3575535fe31eda74380306baa505734ab0e92a2bb82b35cc4fab81d11c3a409f855b202440b6247e diff --git a/dev-erlang/sqlite3/sqlite3-1.1.8.ebuild b/dev-erlang/sqlite3/sqlite3-1.1.8.ebuild new file mode 100644 index 00000000000..fad82199d9b --- /dev/null +++ b/dev-erlang/sqlite3/sqlite3-1.1.8.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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}"