Bug 176429 - New Port: sysutils/ori - Ori Distributed File System
Summary: New Port: sysutils/ori - Ori Distributed File System
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-25 23:30 UTC by Ali Mashtizadeh
Modified: 2013-06-21 07:01 UTC (History)
0 users

See Also:


Attachments
file.shar (2.54 KB, text/plain)
2013-02-25 23:30 UTC, Ali Mashtizadeh
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ali Mashtizadeh 2013-02-25 23:30:00 UTC
Ori is a distributed file system built for offline operation and empowers the 
user with control over synchronization operations and conflict resolution. We 
provide history through light weight snapshots and allow users to verify the 
history has not been tampered with. Through the use of replication instances 
can be resilient and recover damaged data from other nodes.

WWW:	http://ori.scs.stanford.edu/

Fix: Patch attached with submission follows:
Comment 1 Jason Helfman freebsd_committer freebsd_triage 2013-06-19 16:46:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->jgh

I'll take this
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-06-21 06:58:45 UTC
Author: jgh
Date: Fri Jun 21 05:58:33 2013
New Revision: 321442
URL: http://svnweb.freebsd.org/changeset/ports/321442

Log:
  Ori is a distributed file system built for offline operation and empowers the
  user with control over synchronization operations and conflict resolution. We
  provide history through light weight snapshots and allow users to verify the
  history has not been tampered with. Through the use of replication instances
  can be resilient and recover damaged data from other nodes.
  
  WWW: http://ori.scs.stanford.edu/
  
  PR:		ports/176429
  Submitted by:	mashti@cs.stanford.edu

Added:
  head/sysutils/ori/
  head/sysutils/ori/Makefile   (contents, props changed)
  head/sysutils/ori/distinfo   (contents, props changed)
  head/sysutils/ori/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Fri Jun 21 04:11:49 2013	(r321441)
+++ head/sysutils/Makefile	Fri Jun 21 05:58:33 2013	(r321442)
@@ -588,6 +588,7 @@
     SUBDIR += open
     SUBDIR += openipmi
     SUBDIR += openupsd
+    SUBDIR += ori
     SUBDIR += p5-BSD-Jail-Object
     SUBDIR += p5-BSD-Process
     SUBDIR += p5-BSD-Sysctl

Added: head/sysutils/ori/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/Makefile	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,40 @@
+# Created by: Ali Mashtizadeh <mashti@cs.stanford.edu>
+# $FreeBSD$
+
+PORTNAME=	ori
+PORTVERSION=	0.7.0
+CATEGORIES=	sysutils net
+MASTER_SITES=	http://cdn.bitbucket.org/orifs/ori/downloads/
+
+MAINTAINER=	mashti@cs.stanford.edu
+COMMENT=	Ori Distributed File System
+
+LIB_DEPENDS+=	event-2:${PORTSDIR}/devel/libevent2 \
+		boost_date_time:${PORTSDIR}/devel/boost-libs \
+		execinfo:${PORTSDIR}/devel/libexecinfo
+
+USE_XZ=	yes
+WRKSRC=	${WRKDIR}
+
+USES=	pkgconfig fuse
+USE_SCONS=	yes
+USE_OPENSSL=	yes
+WITH_OPENSSL_PORT=	yes
+
+PLIST_FILES=	bin/ori \
+		bin/orifs \
+		bin/ori_httpd
+MAN1=		ori.1 orifs.1
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	@${ECHO_MSG} "===>  Installing binaries..."
+	${INSTALL_PROGRAM} ${WRKSRC}/build/ori/ori ${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/build/orifs/orifs ${PREFIX}/bin/
+	${INSTALL_PROGRAM} ${WRKSRC}/build/ori_httpd/ori_httpd ${PREFIX}/bin/
+	@${ECHO_MSG} "===>  Installing man pages..."
+	${INSTALL_MAN} ${WRKSRC}/docs/ori.1 ${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/docs/orifs.1 ${MAN1PREFIX}/man/man1
+
+.include <bsd.port.post.mk>

Added: head/sysutils/ori/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/distinfo	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,2 @@
+SHA256 (ori-0.7.0.tar.xz) = 9dbbe48f725f966020065b8f151a75095fdb827b8bbade898e057a7e701b054c
+SIZE (ori-0.7.0.tar.xz) = 282544

Added: head/sysutils/ori/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/ori/pkg-descr	Fri Jun 21 05:58:33 2013	(r321442)
@@ -0,0 +1,7 @@
+Ori is a distributed file system built for offline operation and empowers the 
+user with control over synchronization operations and conflict resolution. We 
+provide history through light weight snapshots and allow users to verify the 
+history has not been tampered with. Through the use of replication instances 
+can be resilient and recover damaged data from other nodes.
+
+WWW: http://ori.scs.stanford.edu/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Jason Helfman freebsd_committer freebsd_triage 2013-06-21 07:01:02 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!