1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Ruby/Git is a Ruby library that can be used to create, read and

manipulate Git repositories.  Currently it is a wrapper around
the git binary, but there are plans to switch to C bindings at
some point in the future.

WWW: http://jointheconversation.org/rubygit/

PR:		ports/128734
Submitted by:	Daniel Roethlisberger <daniel at roe.ch>
This commit is contained in:
Martin Wilke 2008-11-09 22:43:16 +00:00
parent 2be44a4b68
commit 021918618c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=222642
4 changed files with 39 additions and 0 deletions

View File

@ -2407,6 +2407,7 @@
SUBDIR += rubygem-fastercsv
SUBDIR += rubygem-fastthread
SUBDIR += rubygem-gem_plugin
SUBDIR += rubygem-git
SUBDIR += rubygem-highline
SUBDIR += rubygem-hoe
SUBDIR += rubygem-inline

View File

@ -0,0 +1,29 @@
# Ports collection makefile for: rubygem-git
# Date created: 2008-11-09
# Whom: Daniel Roethlisberger <daniel@roe.ch>
#
# $FreeBSD$
PORTNAME= git
PORTVERSION= 1.0.5
CATEGORIES= devel rubygems
MASTER_SITES= RF
MASTER_SITE_SUBDIR= gems
MAINTAINER= daniel@roe.ch
COMMENT= A ruby wrapper library around git(1)
RUN_DEPENDS= git>=0:${PORTSDIR}/devel/git
USE_RUBY= yes
USE_RUBYGEMS= yes
post-install:
@${ECHO} ${GEM_CACHE} >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},${GEM_DOC_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type f | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},${GEM_LIB_DIR},' >> ${TMPPLIST}
@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_LIB_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_LIB_DIR},@dirrm ${GEM_LIB_DIR},' >> ${TMPPLIST}
@${FIND} ${PREFIX}/${GEM_DOC_DIR} -type d -depth | ${SED} -e 's,${PREFIX}/${GEM_DOC_DIR},@dirrm ${GEM_DOC_DIR},' >> ${TMPPLIST}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (rubygem/git-1.0.5.gem) = 1763361d6201500d01651d0676da9f3f
SHA256 (rubygem/git-1.0.5.gem) = 64c496f8224c5c479d3726f4c384af5cbae371a0ce68960651981a266159ea78
SIZE (rubygem/git-1.0.5.gem) = 177152

View File

@ -0,0 +1,6 @@
Ruby/Git is a Ruby library that can be used to create, read and
manipulate Git repositories. Currently it is a wrapper around
the git binary, but there are plans to switch to C bindings at
some point in the future.
WWW: http://jointheconversation.org/rubygit/