From patchwork Sat Sep 26 11:25:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Packham X-Patchwork-Id: 523081 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 4FF79140771 for ; Sat, 26 Sep 2015 21:26:50 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=mL4sv+JD; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 843A4915B6; Sat, 26 Sep 2015 11:26:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mPCHAP-fLSz4; Sat, 26 Sep 2015 11:26:48 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 704B7915AF; Sat, 26 Sep 2015 11:26:48 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 5BEE11BFC06 for ; Sat, 26 Sep 2015 11:26:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 5409833411 for ; Sat, 26 Sep 2015 11:26:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F47PdaUHQxYp for ; Sat, 26 Sep 2015 11:26:46 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f43.google.com (mail-pa0-f43.google.com [209.85.220.43]) by silver.osuosl.org (Postfix) with ESMTPS id 2694E33425 for ; Sat, 26 Sep 2015 11:26:46 +0000 (UTC) Received: by pacex6 with SMTP id ex6so129571718pac.0 for ; Sat, 26 Sep 2015 04:26:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=y8SVro+hrEFoQ3O5VY/KpazECGU5NWwOLS0o9xr5OCU=; b=mL4sv+JDJd1MtVhnBfjy4Faon3QLmi1J6I3XAyAy2D76ZBAinmXrw9dW3QUHHl/x4+ YGMY7y5c6caaAlcg23Od/k5hfC1t3AIIHPOmmgkk94dBHFIXYOlbGh/bNV917Yp38W1B /FDLZLuXtMFF5Weyu6EFvsAlBmfhR6dP6d5xqMD/UQbKXdrqDVnAUnNl39ln2foS1h2r HzaTMbPQZoQyDXO7vXHSdUk31SwWnkmZUMDg2tuygYYQ5feNqwbossCvsPsS9fpVX4ut Oza6nqVWEZPnHrHk1ZhGtVLjmarIyOfybz+lLtI/93wbF/X3JsXmyjSkJ75LwWGTQvdi BIwQ== X-Received: by 10.68.65.37 with SMTP id u5mr13778087pbs.154.1443266804858; Sat, 26 Sep 2015 04:26:44 -0700 (PDT) Received: from chrisp-dl.ws.atlnz.lc (2-163-36-202-static.alliedtelesis.co.nz. [202.36.163.2]) by smtp.gmail.com with ESMTPSA id rb8sm8854621pab.14.2015.09.26.04.26.42 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 26 Sep 2015 04:26:44 -0700 (PDT) From: Chris Packham To: buildroot@buildroot.org Date: Sat, 26 Sep 2015 23:25:42 +1200 Message-Id: <1443266743-20775-2-git-send-email-judge.packham@gmail.com> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1443266743-20775-1-git-send-email-judge.packham@gmail.com> References: <1443266743-20775-1-git-send-email-judge.packham@gmail.com> Subject: [Buildroot] [RFC PATCH 1/2] eventlog: New package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" eventlog is a library for creating structured events from applications, and is the workhorse behind syslog-ng's own messages. Signed-off-by: Chris Packham --- package/Config.in | 1 + package/eventlog/Config.in | 5 +++++ package/eventlog/eventlog.mk | 14 ++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 package/eventlog/Config.in create mode 100644 package/eventlog/eventlog.mk diff --git a/package/Config.in b/package/Config.in index 9dff5e8..2c033ba 100644 --- a/package/Config.in +++ b/package/Config.in @@ -943,6 +943,7 @@ endmenu menu "Logging" source "package/glog/Config.in" + source "package/eventlog/Config.in" source "package/liblog4c-localtime/Config.in" source "package/liblogging/Config.in" source "package/log4cplus/Config.in" diff --git a/package/eventlog/Config.in b/package/eventlog/Config.in new file mode 100644 index 0000000..3ba909a --- /dev/null +++ b/package/eventlog/Config.in @@ -0,0 +1,5 @@ +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. diff --git a/package/eventlog/eventlog.mk b/package/eventlog/eventlog.mk new file mode 100644 index 0000000..14bbbfe --- /dev/null +++ b/package/eventlog/eventlog.mk @@ -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 +EVENTLOG_LICENSE_FILES = COPYING +EVENTLOG_INSTALL_STAGING = YES + +$(eval $(autotools-package))