Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Jan 2015 15:51:38 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r377097 - in head/devel: . gitinspector gitinspector/files
Message-ID:  <201501151551.t0FFpcoU044570@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Thu Jan 15 15:51:37 2015
New Revision: 377097
URL: https://svnweb.freebsd.org/changeset/ports/377097
QAT: https://qat.redports.org/buildarchive/r377097/

Log:
  Add devel/gitinspector.
  
  gitinspector is a statistical analysis tool for git repositories. The
  defaut analysis shows general statistics per author, which can be
  complemented with a timeline analysis that shows the workload and
  activity of each author. Under normal operation, it filters the
  results to only show statistics about a number of given extensions and
  by default only includes source files in the statistical analysis.
  
  Differential Revision:	https://reviews.freebsd.org/D1529
  Reviewed by:	bapt
  Approved by:	bapt

Added:
  head/devel/gitinspector/
  head/devel/gitinspector/Makefile   (contents, props changed)
  head/devel/gitinspector/distinfo   (contents, props changed)
  head/devel/gitinspector/files/
  head/devel/gitinspector/files/patch-aa   (contents, props changed)
  head/devel/gitinspector/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jan 15 15:10:07 2015	(r377096)
+++ head/devel/Makefile	Thu Jan 15 15:51:37 2015	(r377097)
@@ -548,6 +548,7 @@
     SUBDIR += git-subversion
     SUBDIR += gitg
     SUBDIR += gitg0
+    SUBDIR += gitinspector
     SUBDIR += gitolite
     SUBDIR += gitolite2
     SUBDIR += gitphp

Added: head/devel/gitinspector/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gitinspector/Makefile	Thu Jan 15 15:51:37 2015	(r377097)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	gitinspector
+PORTVERSION=	0.3.2
+CATEGORIES=	devel python
+MASTER_SITES=	GOOGLE_CODE
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	rpaulo@FreeBSD.org
+COMMENT=	Statistical analysis tool for git repositories
+
+LICENSE=	GPLv3
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+USES=		zip python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/gitinspector/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gitinspector/distinfo	Thu Jan 15 15:51:37 2015	(r377097)
@@ -0,0 +1,2 @@
+SHA256 (gitinspector_0.3.2.zip) = 3778e60514f5067f8f2628da5cacbce12db99af6517fcf448afb2964bce963a7
+SIZE (gitinspector_0.3.2.zip) = 254971

Added: head/devel/gitinspector/files/patch-aa
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gitinspector/files/patch-aa	Thu Jan 15 15:51:37 2015	(r377097)
@@ -0,0 +1,11 @@
+--- gitinspector/localization.py.orig	2013-10-30 03:03:02.000000000 -0700
++++ gitinspector/localization.py	2015-01-14 15:57:30.000000000 -0800
+@@ -44,7 +44,7 @@
+ 
+ 			#Fix for non-POSIX-compliant systems (Windows et al.).
+ 			if os.getenv('LANG') is None:
+-				lang = locale.getdefaultlocale()
++			        lang = ('en_US', 'en_US')
+ 				os.environ['LANG'] = lang[0]
+ 
+ 			filename = basedir.get_basedir() + "/translations/messages_%s.mo" % lang[0][0:2]

Added: head/devel/gitinspector/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/gitinspector/pkg-descr	Thu Jan 15 15:51:37 2015	(r377097)
@@ -0,0 +1,8 @@
+gitinspector is a statistical analysis tool for git repositories. The
+defaut analysis shows general statistics per author, which can be
+complemented with a timeline analysis that shows the workload and
+activity of each author. Under normal operation, it filters the
+results to only show statistics about a number of given extensions and
+by default only includes source files in the statistical analysis.
+
+WWW: https://code.google.com/p/gitinspector/



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