unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: fesoj000 <fesoj000@gmail.com>
To: 54457@debbugs.gnu.org
Subject: [bug#54457] [PATCH 8/9] gnu: Add libnetfilter-log
Date: Sat, 19 Mar 2022 01:47:47 +0100	[thread overview]
Message-ID: <7f34743c-4251-6de2-082f-dc9aa3cb2cc9@gmail.com> (raw)
In-Reply-To: <871b5ef4-87f1-bd27-0d24-0725064b2894@gmail.com>

* gnu/packages/linux.scm (libnetfilter-log): New variable.
---
  gnu/packages/linux.scm | 28 ++++++++++++++++++++++++++++
  1 file changed, 28 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 183f6ef5b4..bb8ed6b1fb 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7439,6 +7439,34 @@ (define-public nfacct
     (home-page "https://netfilter.org/projects/nfacct/index.html")
     (license license:gpl2)))
  
+(define-public libnetfilter-log
+  (package
+   (name "libnetfilter_log")
+   (version "1.0.2")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (string-append "https://netfilter.org/projects/" name "/files/" name
+                         "-" version ".tar.bz2"))
+     (sha256
+      (base32
+       "1spy9xs41v76kid5ana8n126f3mvgq6fjibbfbj4kn0larbhix73"))))
+   (build-system gnu-build-system)
+   (native-inputs (list pkg-config libnfnetlink libmnl))
+   (synopsis "Userspace library providing interface to packets logged by
+netfilter.")
+   (description "libnetfilter_log is a userspace library providing interface to
+packets that have been logged by the kernel packet filter. It is is part of a
+system that deprecates the old syslog/dmesg based packet logging. This library
+has been previously known as libnfnetlink_log.
+@enumerate
+@item
+receiving to-be-logged packets from the kernel nfnetlink_log subsystem
+@end enumerate
+")
+   (home-page "https://netfilter.org/projects/libnetfilter_log/index.html")
+   (license license:gpl2)))
+
  (define-public proot
    (package
      (name "proot")
-- 
2.34.0





  parent reply	other threads:[~2022-03-19  0:48 UTC|newest]

Thread overview: 61+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-19  0:19 [bug#54457] [PATCH 0/9] Add netfilter tools and libraries fesoj000
2022-03-19  0:47 ` [bug#54457] [PATCH 1/9] gnu: Add libnetfilter-conntrack fesoj000
2022-03-19  0:47 ` [bug#54457] [PATCH 2/9] gnu: Add libnetfilter-cttimeout fesoj000
2022-03-19  0:47 ` [bug#54457] [PATCH 3/9] gnu: Add libnetfilter-cthelper fesoj000
2022-03-19 23:26   ` Maxime Devos
2022-03-19 23:27   ` Maxime Devos
2022-03-19 23:28   ` Maxime Devos
2022-03-19 23:29   ` Maxime Devos
2022-03-19 23:29   ` Maxime Devos
2022-03-19  0:47 ` [bug#54457] [PATCH 4/9] gnu: Add libnetfilter-queue fesoj000
2022-03-19 23:22   ` Maxime Devos
2022-03-21 19:49     ` fesoj000
2022-03-21 20:08       ` Maxime Devos
2022-03-19 23:23   ` Maxime Devos
2022-03-21 19:49     ` fesoj000
2022-03-19 23:25   ` Maxime Devos
2022-03-19  0:47 ` [bug#54457] [PATCH 5/9] gnu: Add conntrack-tools fesoj000
2022-03-19 13:54   ` Maxime Devos
2022-03-21 20:15     ` fesoj000
2022-03-19 23:19   ` Maxime Devos
2022-03-19  0:47 ` [bug#54457] [PATCH 6/9] gnu: Add libnetfilter-acct fesoj000
2022-03-19  0:47 ` [bug#54457] [PATCH 7/9] gnu: Add nfacct fesoj000
2022-03-19 23:20   ` Maxime Devos
2022-03-19  0:47 ` fesoj000 [this message]
2022-03-19  0:47 ` [bug#54457] [PATCH 9/9] gnu: Add ulogd fesoj000
2022-03-19 13:54   ` Maxime Devos
2022-03-21 21:19 ` [bug#54457] [PATCH 0/9] Add netfilter tools and libraries v2 fesoj000
2022-03-23 19:39   ` Maxime Devos
2022-03-21 21:19 ` [bug#54457] [PATCH 1/9] gnu: Add libnetfilter-conntrack fesoj000
2022-03-23 19:48   ` Maxime Devos
2022-03-21 21:20 ` [bug#54457] [PATCH 2/9] gnu: Add libnetfilter-cttimeout fesoj000
2022-03-23 19:38   ` Maxime Devos
2022-03-21 21:20 ` [bug#54457] [PATCH 3/9] gnu: Add libnetfilter-cthelper fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 4/9] gnu: Add libnetfilter-queue fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 5/9] gnu: Add conntrack-tools fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 6/9] gnu: Add libnetfilter-acct fesoj000
2022-03-21 21:31   ` fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 7/9] gnu: Add nfacct fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 8/9] gnu: Add libnetfilter-log fesoj000
2022-03-21 21:31   ` fesoj000
2022-03-21 21:20 ` [bug#54457] [PATCH 9/9] gnu: Add ulogd fesoj000
2022-03-23 19:41   ` Maxime Devos
2022-03-23 21:28     ` fesoj000
2022-03-26 12:31       ` fesoj000
2022-03-26 18:30         ` Maxime Devos
2022-03-23 19:42   ` Maxime Devos
2022-03-23 19:46   ` Maxime Devos
2022-03-21 21:32 ` [bug#54457] [PATCH 6/9] gnu: Add libnetfilter-acct fesoj000
2022-03-21 21:32 ` [bug#54457] [PATCH 8/9] gnu: Add libnetfilter-log fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 0/9] Add netfilter tools and libraries fesoj000
2022-04-01 12:48   ` fesoj000
2022-04-11 12:01   ` bug#54457: [PATCH " Ludovic Courtès
2022-03-26 23:34 ` [bug#54457] [PATCHv3 1/9] gnu: Add libnetfilter-conntrack fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 2/9] gnu: Add libnetfilter-cttimeout fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 3/9] gnu: Add libnetfilter-cthelper fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 4/9] gnu: Add libnetfilter-queue fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 5/9] gnu: Add conntrack-tools fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 6/9] gnu: Add libnetfilter-acct fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 7/9] gnu: Add nfacct fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 8/9] gnu: Add libnetfilter-log fesoj000
2022-03-26 23:34 ` [bug#54457] [PATCHv3 9/9] gnu: Add ulogd fesoj000

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7f34743c-4251-6de2-082f-dc9aa3cb2cc9@gmail.com \
    --to=fesoj000@gmail.com \
    --cc=54457@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).