Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2014 10:24:26 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r342263 - in head/finance: . fixc
Message-ID:  <201402021024.s12AOQPi080727@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402021024.s12AOQPi080727>