guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/10: gnu: Add 'upstream-name' property to the netfilter libraries.


From: guix-commits
Subject: 10/10: gnu: Add 'upstream-name' property to the netfilter libraries.
Date: Mon, 11 Apr 2022 07:59:25 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 087abdb9a2cd2634a2bec3e5a2ecfe94d8f39417
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Mon Apr 11 13:57:15 2022 +0200

    gnu: Add 'upstream-name' property to the netfilter libraries.
    
    This allows the 'generic-html' updater to find updates.
    
    * gnu/packages/linux.scm (libnetfilter-conntrack)[properties]: New field.
    (libnetfilter-cttimeout)[properties]: New field.
    (libnetfilter-cthelper)[properties]: New field.
    (libnetfilter-queue)[properties]: New field.
    (libnetfilter-acct)[properties]: New field.
    (libnetfilter-log)[properties]: New field.
---
 gnu/packages/linux.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index e3b72326d1..c31113377c 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7322,6 +7322,7 @@ libnfnetlink_conntrack and libctnetlink.  This library is 
currently used by
 conntrack-tools among many other applications.")
     (home-page 
"https://netfilter.org/projects/libnetfilter_conntrack/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_conntrack")))
     (license license:gpl2+)))
 
 (define-public libnetfilter-cttimeout
@@ -7348,6 +7349,7 @@ timeout policies that can be attached to traffic flows.  
This library is used
 by conntrack-tools.")
     (home-page 
"https://netfilter.org/projects/libnetfilter_cttimeout/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_cttimeout")))
     (license license:gpl2)))
 
 (define-public libnetfilter-cthelper
@@ -7379,6 +7381,7 @@ list existing registered user-space connection tracking 
helpers
 @end enumerate")
     (home-page 
"https://netfilter.org/projects/libnetfilter_cthelper/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_cthelper")))
     (license license:gpl2+)))
 
 (define-public libnetfilter-queue
@@ -7403,6 +7406,7 @@ to packets that have been queued by the kernel packet 
filter.  It is is part
 of a system that deprecates the old ip_queue/libipq mechanism.")
     (home-page "https://netfilter.org/projects/libnetfilter_queue/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_queue")))
     (license license:gpl2+)))
 
 (define-public conntrack-tools
@@ -7474,6 +7478,7 @@ deleting accounting objects
 For the nfnetlink_acct subsystem.")
     (home-page "https://netfilter.org/projects/libnetfilter_acct/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_acct")))
     (license license:lgpl2.1+)))
 
 (define-public nfacct
@@ -7536,6 +7541,7 @@ receiving to-be-logged packets from the kernel 
nfnetlink_log subsystem
 @end enumerate")
     (home-page "https://netfilter.org/projects/libnetfilter_log/index.html";)
     (supported-systems (filter target-linux? %supported-systems))
+    (properties '((upstream-name . "libnetfilter_log")))
     (license license:gpl2+)))
 
 (define-public ulogd



reply via email to

[Prev in Thread] Current Thread [Next in Thread]