From owner-svn-ports-all@freebsd.org Wed Jul 8 10:50:20 2015 Return-Path: Delivered-To: svn-ports-all@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 454F1996D1B; Wed, 8 Jul 2015 10:50:20 +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 3030B1B88; Wed, 8 Jul 2015 10:50:20 +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 t68AoKv6036594; Wed, 8 Jul 2015 10:50:20 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t68AoIwH036584; Wed, 8 Jul 2015 10:50:18 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201507081050.t68AoIwH036584@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 8 Jul 2015 10:50:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391558 - in head/misc: . elixir-uuid elixir-uuid/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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jul 2015 10:50:20 -0000 Author: olgeni Date: Wed Jul 8 10:50:17 2015 New Revision: 391558 URL: https://svnweb.freebsd.org/changeset/ports/391558 Log: Add misc/elixir-uuid, UUID generator for Elixir. Added: head/misc/elixir-uuid/ head/misc/elixir-uuid/Makefile (contents, props changed) head/misc/elixir-uuid/distinfo (contents, props changed) head/misc/elixir-uuid/files/ head/misc/elixir-uuid/files/patch-mix.exs (contents, props changed) head/misc/elixir-uuid/pkg-descr (contents, props changed) head/misc/elixir-uuid/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Jul 8 10:39:29 2015 (r391557) +++ head/misc/Makefile Wed Jul 8 10:50:17 2015 (r391558) @@ -74,6 +74,7 @@ SUBDIR += dvorakng SUBDIR += e2fsprogs-libblkid SUBDIR += e2fsprogs-libuuid + SUBDIR += elixir-uuid SUBDIR += elscreen SUBDIR += esniper SUBDIR += estic Added: head/misc/elixir-uuid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/elixir-uuid/Makefile Wed Jul 8 10:50:17 2015 (r391558) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= uuid +PORTVERSION= 1.0.1 +DISTVERSIONPREFIX= v +CATEGORIES= misc +PKGNAMEPREFIX= elixir- + +MAINTAINER= olgeni@FreeBSD.org +COMMENT= UUID generator and utilities for Elixir + +LICENSE= APACHE20 + +USES= elixir +USE_GITHUB= yes +GH_ACCOUNT= zyro +GH_PROJECT= ${PKGNAMEPREFIX}${PORTNAME} + +.include Added: head/misc/elixir-uuid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/elixir-uuid/distinfo Wed Jul 8 10:50:17 2015 (r391558) @@ -0,0 +1,2 @@ +SHA256 (zyro-elixir-uuid-v1.0.1_GH0.tar.gz) = f4e39a85dfd54cfe87681ac0148de8dfd46dcad6d7cc02b3d7642f6c9dd3b204 +SIZE (zyro-elixir-uuid-v1.0.1_GH0.tar.gz) = 11464 Added: head/misc/elixir-uuid/files/patch-mix.exs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/elixir-uuid/files/patch-mix.exs Wed Jul 8 10:50:17 2015 (r391558) @@ -0,0 +1,12 @@ +--- mix.exs.orig 2015-07-08 10:43:54 UTC ++++ mix.exs +@@ -9,8 +9,7 @@ defmodule UUID.Mixfile do + homepage_url: "http://hexdocs.pm/uuid", + elixir: "~> 1.0", + description: description, +- package: package, +- deps: deps] ++ package: package] + end + + # Application configuration. Added: head/misc/elixir-uuid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/elixir-uuid/pkg-descr Wed Jul 8 10:50:17 2015 (r391558) @@ -0,0 +1,3 @@ +UUID generator and utilities for Elixir. See RFC 4122. + +WWW: https://github.com/zyro/elixir-uuid Added: head/misc/elixir-uuid/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/elixir-uuid/pkg-plist Wed Jul 8 10:50:17 2015 (r391558) @@ -0,0 +1,4 @@ +lib/elixir/lib/uuid/ebin/Elixir.UUID.beam +lib/elixir/lib/uuid/ebin/uuid.app +lib/elixir/lib/uuid/lib/uuid.ex +%%PORTDOCS%%%%DOCSDIR%%/README.md