From owner-svn-ports-head@freebsd.org Sun Jul 5 11:00:04 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C7F1A575; Sun, 5 Jul 2015 11:00:04 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B7E41649; Sun, 5 Jul 2015 11:00:04 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t65B04CL039846; Sun, 5 Jul 2015 11:00:04 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t65B02VC039820; Sun, 5 Jul 2015 11:00:02 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201507051100.t65B02VC039820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Sun, 5 Jul 2015 11:00:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391361 - in head/www: . elixir-httpotion elixir-httpotion/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jul 2015 11:00:04 -0000 Author: olgeni Date: Sun Jul 5 11:00:01 2015 New Revision: 391361 URL: https://svnweb.freebsd.org/changeset/ports/391361 Log: Add www/elixir-httpotion, an HTTP client for Elixir based on ibrowse. (not to be confused with elixir-httpoison, which uses hackney) Added: head/www/elixir-httpotion/ head/www/elixir-httpotion/Makefile (contents, props changed) head/www/elixir-httpotion/distinfo (contents, props changed) head/www/elixir-httpotion/files/ head/www/elixir-httpotion/files/patch-mix.exs (contents, props changed) head/www/elixir-httpotion/pkg-descr (contents, props changed) head/www/elixir-httpotion/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Jul 5 10:36:45 2015 (r391360) +++ head/www/Makefile Sun Jul 5 11:00:01 2015 (r391361) @@ -162,6 +162,7 @@ SUBDIR += elinks SUBDIR += eliom SUBDIR += elixir-httpoison + SUBDIR += elixir-httpotion SUBDIR += elixir-maru SUBDIR += elixir-phoenix SUBDIR += elixir-phoenix_ecto Added: head/www/elixir-httpotion/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/elixir-httpotion/Makefile Sun Jul 5 11:00:01 2015 (r391361) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= httpotion +PORTVERSION= 2.1.0 +DISTVERSIONPREFIX= v +CATEGORIES= www +PKGNAMEPREFIX= elixir- + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= The HTTP client for Elixir + +LICENSE= MIT + +USES= elixir +USE_GITHUB= yes +GH_ACCOUNT= myfreeweb + +MIX_BUILD_DEPS= www/erlang-ibrowse +MIX_RUN_DEPS:= ${MIX_BUILD_DEPS} + +.include Added: head/www/elixir-httpotion/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/elixir-httpotion/distinfo Sun Jul 5 11:00:01 2015 (r391361) @@ -0,0 +1,2 @@ +SHA256 (myfreeweb-httpotion-v2.1.0_GH0.tar.gz) = 12266aea3a3419075c0889b4c5abecd322e50ac6f8d5799753742c716ba5cb7c +SIZE (myfreeweb-httpotion-v2.1.0_GH0.tar.gz) = 11639 Added: head/www/elixir-httpotion/files/patch-mix.exs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/elixir-httpotion/files/patch-mix.exs Sun Jul 5 11:00:01 2015 (r391361) @@ -0,0 +1,10 @@ +--- mix.exs.orig 2015-07-05 09:09:05 UTC ++++ mix.exs +@@ -6,7 +6,6 @@ defmodule HTTPotion.Mixfile do + version: "2.1.0", + elixir: "~> 1.0", + description: description, +- deps: deps, + package: package] + end + Added: head/www/elixir-httpotion/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/elixir-httpotion/pkg-descr Sun Jul 5 11:00:01 2015 (r391361) @@ -0,0 +1,3 @@ +HTTP client for Elixir, based on ibrowse. + +WWW: https://github.com/myfreeweb/httpotion Added: head/www/elixir-httpotion/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/elixir-httpotion/pkg-plist Sun Jul 5 11:00:01 2015 (r391361) @@ -0,0 +1,11 @@ +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.AsyncChunk.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.AsyncEnd.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.AsyncHeaders.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.AsyncResponse.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.Base.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.HTTPError.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.Response.beam +lib/elixir/lib/httpotion/ebin/Elixir.HTTPotion.beam +lib/elixir/lib/httpotion/ebin/httpotion.app +lib/elixir/lib/httpotion/lib/httpotion.ex +%%PORTDOCS%%%%DOCSDIR%%/README.md