summaryrefslogtreecommitdiff
path: root/devel/gitinspector/files/patch-aa
diff options
context:
space:
mode:
authorRui Paulo <rpaulo@FreeBSD.org>2015-01-15 15:51:37 +0000
committerRui Paulo <rpaulo@FreeBSD.org>2015-01-15 15:51:37 +0000
commitf99b5838ff0a8b9293bf737152455ee132803866 (patch)
treee75c0dfb0923b8d738f316b49f58851d2752c55b /devel/gitinspector/files/patch-aa
parentManualy depend on vte290 until roxterm supports the 2.91 API from vte3. (diff)
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
Diffstat (limited to 'devel/gitinspector/files/patch-aa')
-rw-r--r--devel/gitinspector/files/patch-aa11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/gitinspector/files/patch-aa b/devel/gitinspector/files/patch-aa
new file mode 100644
index 000000000000..1e3bc48211f6
--- /dev/null
+++ b/devel/gitinspector/files/patch-aa
@@ -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]