summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorPawel Pekala <pawel@FreeBSD.org>2014-12-19 17:24:13 +0000
committerPawel Pekala <pawel@FreeBSD.org>2014-12-19 17:24:13 +0000
commitc83b5d1803bafb07ca6649ac092163cc8be9b778 (patch)
tree63d21afb3dbda2032f8d593b2303daca75335f9f /sysutils
parent- update (diff)
Logify is an incredibly light-weight Ruby logger with a developer-friendly API
and no dependencies. It is intentionally very opinionated and is optimized for speed. This combination makes it perfect for command line applications. WWW: https://github.com/sethvargo/logify PR: 195706 Submitted by: Michael Moll <kvedulv@kvedulv.de>
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/rubygem-logify/Makefile18
-rw-r--r--sysutils/rubygem-logify/distinfo2
-rw-r--r--sysutils/rubygem-logify/pkg-descr5
4 files changed, 26 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 59961ddee29e..ed7b23985789 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -823,6 +823,7 @@
SUBDIR += rubygem-hiera
SUBDIR += rubygem-librarian-puppet
SUBDIR += rubygem-log4r
+ SUBDIR += rubygem-logify
SUBDIR += rubygem-mogilefs-client
SUBDIR += rubygem-murder
SUBDIR += rubygem-ohai
diff --git a/sysutils/rubygem-logify/Makefile b/sysutils/rubygem-logify/Makefile
new file mode 100644
index 000000000000..6448f9f960ed
--- /dev/null
+++ b/sysutils/rubygem-logify/Makefile
@@ -0,0 +1,18 @@
+# Created by: Michael Moll <kvedulv@kvedulv.de>
+# $FreeBSD$
+
+PORTNAME= logify
+PORTVERSION= 0.2.0
+CATEGORIES= sysutils ruby
+MASTER_SITES= RG
+
+MAINTAINER= kvedulv@kvedulv.de
+COMMENT= Lightweight logging library for Ruby
+
+LICENSE= APACHE20
+
+USE_RUBY= yes
+USE_RUBYGEMS= yes
+RUBYGEM_AUTOPLIST= yes
+
+.include <bsd.port.mk>
diff --git a/sysutils/rubygem-logify/distinfo b/sysutils/rubygem-logify/distinfo
new file mode 100644
index 000000000000..9a4b98175590
--- /dev/null
+++ b/sysutils/rubygem-logify/distinfo
@@ -0,0 +1,2 @@
+SHA256 (rubygem/logify-0.2.0.gem) = dea5393f34c81a4996428a36711a7c70866182b1f6b58a9099b7dc9c57e9b0a7
+SIZE (rubygem/logify-0.2.0.gem) = 14336
diff --git a/sysutils/rubygem-logify/pkg-descr b/sysutils/rubygem-logify/pkg-descr
new file mode 100644
index 000000000000..36bf4865597f
--- /dev/null
+++ b/sysutils/rubygem-logify/pkg-descr
@@ -0,0 +1,5 @@
+Logify is an incredibly light-weight Ruby logger with a developer-friendly API
+and no dependencies. It is intentionally very opinionated and is optimized
+for speed. This combination makes it perfect for command line applications.
+
+WWW: https://github.com/sethvargo/logify