From owner-svn-ports-head@FreeBSD.ORG Sun Feb 2 10:24:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 631DC884; Sun, 2 Feb 2014 10:24:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43A751123; Sun, 2 Feb 2014 10:24:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s12AOR8D080733; Sun, 2 Feb 2014 10:24:27 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s12AOQPi080727; Sun, 2 Feb 2014 10:24:26 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201402021024.s12AOQPi080727@svn.freebsd.org> From: Matthew Seaman Date: Sun, 2 Feb 2014 10:24:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342263 - in head/finance: . fixc 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.17 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, 02 Feb 2014 10:24:27 -0000 Author: matthew Date: Sun Feb 2 10:24:26 2014 New Revision: 342263 URL: http://svnweb.freebsd.org/changeset/ports/342263 QAT: https://qat.redports.org/buildarchive/r342263/ Log: fixc is a simple Financial Information eXchange (FIX) protocol console client. fixc connects to remote host and sends out FIX messages it reads from local scenario file. WWW: https://github.com/blttll/fixc In addition to original submission: * stagify * Add PLIST_FILES * PORTREVISION not needed for a brand new port * Use DIST_SUBDIR as the distfile name is not indicative of which port it belongs to PR: ports/181943 Submitted by: blttll@gmail.com Added: head/finance/fixc/ head/finance/fixc/Makefile (contents, props changed) head/finance/fixc/distinfo (contents, props changed) head/finance/fixc/pkg-descr (contents, props changed) Modified: head/finance/Makefile Modified: head/finance/Makefile ============================================================================== --- head/finance/Makefile Sun Feb 2 10:14:08 2014 (r342262) +++ head/finance/Makefile Sun Feb 2 10:24:26 2014 (r342263) @@ -25,6 +25,7 @@ SUBDIR += cbb SUBDIR += electrum SUBDIR += expense + SUBDIR += fixc SUBDIR += frontaccounting SUBDIR += gnucash SUBDIR += gnucash-docs Added: head/finance/fixc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/fixc/Makefile Sun Feb 2 10:24:26 2014 (r342263) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= fixc +PORTVERSION= 1.0 +CATEGORIES= finance +MASTER_SITES= http://github.com/blttll/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/ +DISTFILES= v${PORTVERSION}.tar.gz +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= blttll@gmail.com +COMMENT= Simple Financial Information eXchange (FIX) protocol console client + +BUILD_DEPENDS= go:${PORTSDIR}/lang/go/ + +PLIST_FILES= bin/fixc + +do-build: + cd ${WRKSRC} && \ + go build -o fixc main.go + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/fixc ${STAGEDIR}${PREFIX}/bin + +.include Added: head/finance/fixc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/fixc/distinfo Sun Feb 2 10:24:26 2014 (r342263) @@ -0,0 +1,2 @@ +SHA256 (fixc/v1.0.tar.gz) = a73b3ea2cc4440a06206d219b472096ce635d8eebfe13671e0360af2ec02923e +SIZE (fixc/v1.0.tar.gz) = 3709 Added: head/finance/fixc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/fixc/pkg-descr Sun Feb 2 10:24:26 2014 (r342263) @@ -0,0 +1,5 @@ +fixc is a simple Financial Information eXchange (FIX) protocol console client. +fixc connects to remote host and sends out FIX messages it reads from local +scenario file. + +WWW: https://github.com/blttll/fixc