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 C42751382C5 for ; Thu, 15 Apr 2021 12:51:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A31EE0729; Thu, 15 Apr 2021 12:51:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 13ABCE0729 for ; Thu, 15 Apr 2021 12:51:55 +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 3353F340D09 for ; Thu, 15 Apr 2021 12:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9099864D for ; Thu, 15 Apr 2021 12:51:41 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618449008.57a14816f9f7cafc86353685c3132204b01be210.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 57a14816f9f7cafc86353685c3132204b01be210 X-VCS-Branch: master Date: Thu, 15 Apr 2021 12:51:41 +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: eced1aff-5dd2-4b59-8b8b-4ffb7ab66863 X-Archives-Hash: 90b4342ddfad1a0ebb5cb72a08d20f36 commit: 57a14816f9f7cafc86353685c3132204b01be210 Author: Brian Kubisiak kubisiak com> AuthorDate: Thu Apr 15 01:10:08 2021 +0000 Commit: Andrew Ammerlaan riseup net> 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 +}