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 A72E7138359 for ; Wed, 14 Oct 2020 10:15:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E27F4E0805; Wed, 14 Oct 2020 10:15:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 CB4F6E0805 for ; Wed, 14 Oct 2020 10:15:22 +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 9676933D3C7 for ; Wed, 14 Oct 2020 10:15:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F8FF388 for ; Wed, 14 Oct 2020 10:15:20 +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: <1602670514.998e52e9482f95d8843a17980c78594d167997dc.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-erlang/esip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-erlang/esip/Manifest dev-erlang/esip/esip-1.0.37.ebuild X-VCS-Directories: dev-erlang/esip/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 998e52e9482f95d8843a17980c78594d167997dc X-VCS-Branch: master Date: Wed, 14 Oct 2020 10:15:20 +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: 7878fa49-827b-46fe-9c23-ded5df4c60de X-Archives-Hash: 6cddcc0ffa89fda6f7b52939283059bd commit: 998e52e9482f95d8843a17980c78594d167997dc Author: Hanno Böck gentoo org> AuthorDate: Wed Oct 14 10:15:14 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed Oct 14 10:15:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998e52e9 dev-erlang/esip: Bump Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-3.0.8, Repoman-3.0.1 dev-erlang/esip/Manifest | 1 + dev-erlang/esip/esip-1.0.37.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-erlang/esip/Manifest b/dev-erlang/esip/Manifest index fe6419ad805..ebbf5550c23 100644 --- a/dev-erlang/esip/Manifest +++ b/dev-erlang/esip/Manifest @@ -1 +1,2 @@ DIST esip-1.0.34.tar.gz 89545 BLAKE2B 7411bbba155706abd9b5e8ad187d7a04cce0eb6a9185c30559b116df56869bc7753272390a8dbe3fe10b155f0f9c35a86c2dbd99ec7cb84556741ddc060b901d SHA512 d324c7b5a12a73516548d4dc735fd7c5f93d466efce409d870b4436ec975d004ab14b2750ef9ba98388819d5842ae0065c804f141a4c3e5e6747154fd8161bff +DIST esip-1.0.37.tar.gz 89632 BLAKE2B 6a733b5b09a50e79f9dfdbcb8fe2678fd7698f78559513052faf67e286da664b6f766d12f6dc6244ed922b5257ab2b2bebb593ff7ecee200e5dd6707a34c122a SHA512 8862154b4b43d177acb522107c193d0b19db28cde686538e565102f4303c16cffd3571d37a31edb00fd8ba436f2a847eeabf575fbb22cb7c1287160e266e207f diff --git a/dev-erlang/esip/esip-1.0.37.ebuild b/dev-erlang/esip/esip-1.0.37.ebuild new file mode 100644 index 00000000000..25657fea93d --- /dev/null +++ b/dev-erlang/esip/esip-1.0.37.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit rebar + +DESCRIPTION="ProcessOne SIP server component" +HOMEPAGE="https://github.com/processone/esip" +SRC_URI="https://github.com/processone/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86" + +DEPEND=">=dev-erlang/fast_tls-1.1.8 + >=dev-erlang/stun-1.0.37 + >=dev-erlang/p1_utils-1.0.20" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG.md README.md ) + +src_prepare() { + rebar_src_prepare + rebar_fix_include_path stun + + # ebin contains lonely .gitignore file asking for removal. + rm -r "${S}/ebin" || die +}