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 DF9161382C5 for ; Thu, 15 Apr 2021 01:12:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16C1DE07DB; Thu, 15 Apr 2021 01:12:22 +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 EDB97E07DB for ; Thu, 15 Apr 2021 01:12:21 +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 8955E335D6F for ; Thu, 15 Apr 2021 01:12:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1AF62646 for ; Thu, 15 Apr 2021 01:12:19 +0000 (UTC) From: "Brian Kubisiak" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Kubisiak" Message-ID: <1618449008.57a14816f9f7cafc86353685c3132204b01be210.brian@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-erlang/ranch/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-erlang/ranch/Manifest dev-erlang/ranch/metadata.xml dev-erlang/ranch/ranch-1.7.1.ebuild X-VCS-Directories: dev-erlang/ranch/ X-VCS-Committer: brian X-VCS-Committer-Name: Brian Kubisiak X-VCS-Revision: 57a14816f9f7cafc86353685c3132204b01be210 X-VCS-Branch: dev Date: Thu, 15 Apr 2021 01:12:19 +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: 0500ab66-87b8-41f6-8f11-42f8f7d50c11 X-Archives-Hash: 28e8fd30d5a1e03afc5d58e8d8281edf commit: 57a14816f9f7cafc86353685c3132204b01be210 Author: Brian Kubisiak kubisiak com> AuthorDate: Thu Apr 15 01:10:08 2021 +0000 Commit: Brian Kubisiak kubisiak com> CommitDate: Thu Apr 15 01:10:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=57a14816 dev-erlang/ranch: new package Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Brian Kubisiak kubisiak.com> dev-erlang/ranch/Manifest | 1 + dev-erlang/ranch/metadata.xml | 8 ++++++++ dev-erlang/ranch/ranch-1.7.1.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-erlang/ranch/Manifest b/dev-erlang/ranch/Manifest new file mode 100644 index 000000000..f0a7de2a5 --- /dev/null +++ b/dev-erlang/ranch/Manifest @@ -0,0 +1 @@ +DIST ranch-1.7.1.tar.gz 121023 BLAKE2B 191b880c6ba9335a779db5866cedbed450585b808007d7b9a7d8a891bc840f23e72054db83cc9b5224f005bd49cffc15203a44475292ffd90085b6aa72f01f7c SHA512 f872187797e8079aeb0c6ece99f88ebacbacda565a704ba03879d0233f156ace26c6d1f4626364332a7d0ed561ba4e756bb60ab8a56edbf250d8a84098da5888 diff --git a/dev-erlang/ranch/metadata.xml b/dev-erlang/ranch/metadata.xml new file mode 100644 index 000000000..708e073d1 --- /dev/null +++ b/dev-erlang/ranch/metadata.xml @@ -0,0 +1,8 @@ + + + + + brian@kubisiak.com + Brian Kubisiak + + diff --git a/dev-erlang/ranch/ranch-1.7.1.ebuild b/dev-erlang/ranch/ranch-1.7.1.ebuild new file mode 100644 index 000000000..e9d79b4ae --- /dev/null +++ b/dev-erlang/ranch/ranch-1.7.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit rebar + +DESCRIPTION="Socket acceptor pool for TCP protocols." +HOMEPAGE="https://github.com/ninenines/ranch" +SRC_URI="https://github.com/ninenines/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" + +DOCS=( README.asciidoc ) + +# TODO: ranch has a test suite with lots of dependencies; enable it once those +# dependencies are merged as well +RESTRICT=test + +# Override with EAPI default because it's missing ranch.app.src and doesn't +# have any deps. +src_prepare() { + default +}