eventlog: new package
authorChris Packham <judge.packham@gmail.com>
Sat, 26 Sep 2015 11:25:42 +0000 (23:25 +1200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 13 Oct 2015 21:53:28 +0000 (23:53 +0200)
eventlog is a library for creating structured events from
applications, and is the workhorse behind syslog-ng's own messages.

[Thomas:
 - fix alphabetic ordering in package/Config.in, as noticed by
   Vicente.
 - rewrap Config.in help text and add some URL as a reference (though
   the eventlog project doesn't seem to have a real web page)
 - remove useless slash at the end of EVENTLOG_SITE
 - make the license info more specific: it's a BSD-3c license
 - add a hash file.]

Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Config.in
package/eventlog/Config.in [new file with mode: 0644]
package/eventlog/eventlog.hash [new file with mode: 0644]
package/eventlog/eventlog.mk [new file with mode: 0644]

index f686f1368dff69a8b459e740dbe972557c77f899..8e3c64a36dcde7f8b8c4ab9ca7be08397cc5c61d 100644 (file)
@@ -943,6 +943,7 @@ menu "JSON/XML"
 endmenu
 
 menu "Logging"
+       source "package/eventlog/Config.in"
        source "package/glog/Config.in"
        source "package/liblog4c-localtime/Config.in"
        source "package/liblogging/Config.in"
diff --git a/package/eventlog/Config.in b/package/eventlog/Config.in
new file mode 100644 (file)
index 0000000..f9442f6
--- /dev/null
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_EVENTLOG
+       bool "eventlog"
+       help
+         eventlog is a library for creating structured events from
+         applications, and is the workhorse behind syslog-ng's own
+         messages.
+
+         https://my.balabit.com/downloads/eventlog/
diff --git a/package/eventlog/eventlog.hash b/package/eventlog/eventlog.hash
new file mode 100644 (file)
index 0000000..b8f2ec6
--- /dev/null
@@ -0,0 +1,2 @@
+# From https://my.balabit.com/downloads/eventlog/0.2/eventlog_0.2.12.dsc
+sha256 494dac8e01dc5ce323df2ad554d94874938dab51aa025987677b2bc6906a9c66 eventlog_0.2.12.tar.gz
diff --git a/package/eventlog/eventlog.mk b/package/eventlog/eventlog.mk
new file mode 100644 (file)
index 0000000..c4e5fd9
--- /dev/null
@@ -0,0 +1,14 @@
+################################################################################
+#
+# eventlog
+#
+################################################################################
+
+EVENTLOG_VERSION = 0.2.12
+EVENTLOG_SOURCE = eventlog_$(EVENTLOG_VERSION).tar.gz
+EVENTLOG_SITE = https://my.balabit.com/downloads/eventlog/0.2
+EVENTLOG_LICENSE = BSD-3c
+EVENTLOG_LICENSE_FILES = COPYING
+EVENTLOG_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))