all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dave Love <fx@gnu.org>
To: 27915@debbugs.gnu.org
Subject: [bug#27915] libnl additions
Date: Wed, 02 Aug 2017 14:32:13 +0100	[thread overview]
Message-ID: <87r2wu5c4i.fsf@i-ulialbion.it.manchester.ac.uk> (raw)

[-- Attachment #1: Type: text/plain, Size: 237 bytes --]

These put the extra bits from what I previously did as libnl3 into
libnl.  I don't know whether the handling of the Python interface is the
right way to do it, but I don't think the Python is important anyway --
Debian doesn't ship it.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0003-gnu-libnl-Add-doc-output.patch --]
[-- Type: text/x-diff, Size: 1986 bytes --]

From d4986401bfcb2eacd7c7f437a50ca85d752cc904 Mon Sep 17 00:00:00 2001
From: Dave Love <fx@gnu.org>
Date: Wed, 2 Aug 2017 12:09:02 +0100
Subject: [PATCH 3/4] gnu: libnl: Add "doc" output.

* gnu/packages/linux.scm (libnl)[native-inputs, outputs]: Add doc source.
[arguments]: New field.
---
 gnu/packages/linux.scm | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a189458ad..3902560a8 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1463,7 +1463,30 @@ transparently through a bridge.")
                (base32
                 "1r3lw3hjvqxi5zqyq2w1qadm3gisd9nlf71dkl4yplacmssnhm3h"))))
     (build-system gnu-build-system)
-    (native-inputs `(("flex" ,flex) ("bison" ,bison)))
+    (native-inputs
+     `(("flex" ,flex) ("bison" ,bison)
+       ("libnl3-doc"
+        ,(origin
+           (method url-fetch)
+           (uri (string-append
+                 "https://github.com/thom311/libnl/releases/download/libnl"
+                 (string-join (string-split version #\.) "_")
+                 "/libnl-doc-" version ".tar.gz"))
+           (sha256
+            (base32 "0srab805yj8wb13l64qjyp3mdbqapxg5vk46v3zlhhzpmxqw8j7r"))))))
+    (outputs '("out" "doc"))
+    (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (add-after 'install 'install-doc
+             (lambda* (#:key inputs outputs #:allow-other-keys)
+               (let ((dest (format #f "~a/share/doc"
+                                   (assoc-ref outputs "doc"))))
+                 (mkdir-p dest)
+                 (with-directory-excursion dest
+                   (and
+                    (zero? (system* "tar" "xf" (assoc-ref inputs "libnl3-doc")))
+                    (zero? (system "mv *libnl-doc* libnl3"))))))))))
     (home-page "http://www.infradead.org/~tgr/libnl/")
     (synopsis "NetLink protocol library suite")
     (description
-- 
2.11.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0004-gnu-libnl-Add-python2-and-python3-outputs.patch --]
[-- Type: text/x-diff, Size: 2909 bytes --]

From e64186082735f533bf172fcad491eaabed2928f0 Mon Sep 17 00:00:00 2001
From: Dave Love <fx@gnu.org>
Date: Wed, 2 Aug 2017 13:39:28 +0100
Subject: [PATCH 4/4] gnu: libnl: Add "python2" and "python3" outputs.

* gnu/packages/linux.scm (libnl)[native-inputs]: Extend.
[outputs]: Add python2, python3.
[install-python]: New phase.
---
 gnu/packages/linux.scm | 27 +++++++++++++++++++++++++--
 1 file changed, 25 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3902560a8..dd9c34999 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -101,6 +101,7 @@
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages groff)
   #:use-module (gnu packages selinux)
+  #:use-module (gnu packages swig)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
@@ -1464,7 +1465,12 @@ transparently through a bridge.")
                 "1r3lw3hjvqxi5zqyq2w1qadm3gisd9nlf71dkl4yplacmssnhm3h"))))
     (build-system gnu-build-system)
     (native-inputs
-     `(("flex" ,flex) ("bison" ,bison)
+     `(("flex" ,flex)
+       ("bison" ,bison)
+       ("python-2" ,python-2)
+       ("python-3" ,python-3)
+       ("swig" ,swig)
+       ("pkg-config" ,pkg-config)
        ("libnl3-doc"
         ,(origin
            (method url-fetch)
@@ -1474,10 +1480,27 @@ transparently through a bridge.")
                  "/libnl-doc-" version ".tar.gz"))
            (sha256
             (base32 "0srab805yj8wb13l64qjyp3mdbqapxg5vk46v3zlhhzpmxqw8j7r"))))))
-    (outputs '("out" "doc"))
+    (outputs '("out" "doc" "python2" "python3"))
     (arguments
        `(#:phases
          (modify-phases %standard-phases
+           (add-after 'install 'install-python
+             (lambda* (#:key outputs #:allow-other-keys)
+               (define (python-inst python)
+                 (let ((ldflags (format #f "LDFLAGS=-Wl,-rpath=~a/lib"
+                                        (assoc-ref %outputs "out")))
+                       (pyout (assoc-ref %outputs python)))
+                   (and
+                    ;; The rpm spec quoth "build twice, otherwise capi.py is
+                    ;; not copied to the build directory"
+                    (zero? (system (format #f "~a ~a setup.py build"
+                                           ldflags python pyout)))
+                    (zero?
+                     (system (format #f "~a ~a setup.py install --prefix=~a"
+                                     ldflags python pyout)))
+                    (zero? (system* python "setup.py" "clean")))))
+               (with-directory-excursion "./python"
+                 (for-each python-inst '("python2" "python3")))))
            (add-after 'install 'install-doc
              (lambda* (#:key inputs outputs #:allow-other-keys)
                (let ((dest (format #f "~a/share/doc"
-- 
2.11.0


             reply	other threads:[~2017-08-02 13:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-02 13:32 Dave Love [this message]
2017-08-17 21:54 ` bug#27915: libnl additions Marius Bakke
2017-08-23 10:15   ` [bug#27915] " Dave Love
2017-08-24 18:11     ` Marius Bakke
2017-09-01 10:49       ` Dave Love

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

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

  git send-email \
    --in-reply-to=87r2wu5c4i.fsf@i-ulialbion.it.manchester.ac.uk \
    --to=fx@gnu.org \
    --cc=27915@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.