all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57058] [PATCH] gnu: Add python-lief.
@ 2022-08-08 14:52 Hilton Chain via Guix-patches via
  2022-08-11 15:37 ` Mathieu Othacehe
  0 siblings, 1 reply; 7+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-08 14:52 UTC (permalink / raw)
  To: 57058

From 2d62c631996a97f98b4a1e7f383db87bb5b960a8 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Mon, 8 Aug 2022 22:50:45 +0800
Subject: [PATCH] gnu: Add python-lief.

* gnu/packages/python-xyz.scm (python-lief): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b6ca32a757..300aa2b52a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30353,3 +30353,25 @@ (define-public i3-autotiling
      "Script for Sway and i3 to automatically switch the horizontal/vertical
  window split orientation.")
     (license license:gpl3)))
+
+(define-public python-lief
+  (package
+    (name "python-lief")
+    (version "0.12.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lief-project/LIEF")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xzbh3bxy4rw1yamnx68da1v5s56ay4g081cyamv67256g0qy2i1"))))
+    (build-system python-build-system)
+    (native-inputs (list cmake))
+    (home-page "https://github.com/lief-project/LIEF")
+    (synopsis "Library to instrument executable formats")
+    (description
+     "LIEF is a cross platform library which can parse, modify and abstract ELF,
+PE and MachO formats.")
+    (license license:asl2.0)))

base-commit: ec6499aad231b8a5991f38c1ec982be4b3598837
-- 
2.37.1





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#57058] [PATCH] gnu: Add python-lief.
  2022-08-08 14:52 [bug#57058] [PATCH] gnu: Add python-lief Hilton Chain via Guix-patches via
@ 2022-08-11 15:37 ` Mathieu Othacehe
  2022-08-16  6:36   ` [bug#57058] [PATCH v2] " Hilton Chain via Guix-patches via
  0 siblings, 1 reply; 7+ messages in thread
From: Mathieu Othacehe @ 2022-08-11 15:37 UTC (permalink / raw)
  To: Hilton Chain; +Cc: 57058


Hey,

> * gnu/packages/python-xyz.scm (python-lief): New variable.

This looks fine to me, but compilation takes a long time and appears to
be mono-threaded. I found that nix has the following snippet:

--8<---------------cut here---------------start------------->8---
    substituteInPlace setup.py \
      --replace 'cmake_args = []' "cmake_args = [ \"-DCMAKE_INSTALL_PREFIX=$prefix\" ]"
    ${pyEnv.interpreter} setup.py --sdk build --parallel=$NIX_BUILD_CORES
--8<---------------cut here---------------end--------------->8---

that can maybe allow parallel compilation?

Thanks,

Mathieu




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#57058] [PATCH v2] gnu: Add python-lief.
  2022-08-11 15:37 ` Mathieu Othacehe
@ 2022-08-16  6:36   ` Hilton Chain via Guix-patches via
  2022-08-16  9:29     ` Mathieu Othacehe
  0 siblings, 1 reply; 7+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-16  6:36 UTC (permalink / raw)
  To: 57058; +Cc: Mathieu Othacehe

From b9ce692513271f33baf8e45cd10d0a350047986c Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Tue, 16 Aug 2022 14:31:05 +0800
Subject: [PATCH v2] gnu: Add python-lief.

* gnu/packages/python-xyz.scm (python-lief): New variable.
---

v1 -> v2: Enable parallel compilation.

Sorry for the latency! >_<

 gnu/packages/python-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3259f46881..ecc1eab67c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30644,3 +30644,33 @@ (define-public python-misskey
      "This package provides access to Misskey's API.  Misskey is a SNS
 platform using the ActivityPub protocol.")
     (license license:expat)))
+
+(define-public python-lief
+  (package
+    (name "python-lief")
+    (version "0.12.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lief-project/LIEF")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xzbh3bxy4rw1yamnx68da1v5s56ay4g081cyamv67256g0qy2i1"))))
+    (build-system python-build-system)
+    (native-inputs (list cmake))
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (replace 'build
+                 (lambda _
+                   (invoke "python" "setup.py" "--sdk" "build"
+                           (string-append
+                            "-j" (number->string (parallel-job-count)))))))))
+    (home-page "https://github.com/lief-project/LIEF")
+    (synopsis "Library to instrument executable formats")
+    (description
+     "LIEF is a cross platform library which can parse, modify and abstract ELF,
+PE and MachO formats.")
+    (license license:asl2.0)))

base-commit: ace7b5babe118adb9caf116eb8273f7db6e7f152
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#57058] [PATCH v2] gnu: Add python-lief.
  2022-08-16  6:36   ` [bug#57058] [PATCH v2] " Hilton Chain via Guix-patches via
@ 2022-08-16  9:29     ` Mathieu Othacehe
  2022-08-16 13:06       ` Hilton Chain via Guix-patches via
  2022-08-16 13:30       ` [bug#57058] [PATCH v3] " Hilton Chain via Guix-patches via
  0 siblings, 2 replies; 7+ messages in thread
From: Mathieu Othacehe @ 2022-08-16  9:29 UTC (permalink / raw)
  To: Hilton Chain; +Cc: 57058


Hey,

> v1 -> v2: Enable parallel compilation.
>
> Sorry for the latency! >_<

No worries. I confirm that it compiles faster :)

It looks like no tests are run though:

--8<---------------cut here---------------start------------->8---
Copying /tmp/guix-build-python-lief-0.12.1.drv-0/source/build/lief.so into build/lib.linux-x86_64-3.9/lief.cpython-39-x86_64-linux-gnu.so
copying /tmp/guix-build-python-lief-0.12.1.drv-0/source/build/lief.so -> build/lib.linux-x86_64-3.9/lief.cpython-39-x86_64-linux-gnu.so
copying build/lib.linux-x86_64-3.9/lief.cpython-39-x86_64-linux-gnu.so -> 

----------------------------------------------------------------------
Ran 0 tests in 0.000s
--8<---------------cut here---------------end--------------->8---

Any idea why?

Thanks,

Mathieu




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#57058] [PATCH v2] gnu: Add python-lief.
  2022-08-16  9:29     ` Mathieu Othacehe
@ 2022-08-16 13:06       ` Hilton Chain via Guix-patches via
  2022-08-16 13:30       ` [bug#57058] [PATCH v3] " Hilton Chain via Guix-patches via
  1 sibling, 0 replies; 7+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-16 13:06 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 57058

Found the option in the setup script, however the tests require network. There's
also options for docs, for now I'll try out if they are worthy enabling.




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#57058] [PATCH v3] gnu: Add python-lief.
  2022-08-16  9:29     ` Mathieu Othacehe
  2022-08-16 13:06       ` Hilton Chain via Guix-patches via
@ 2022-08-16 13:30       ` Hilton Chain via Guix-patches via
  2022-08-17  7:25         ` bug#57058: [PATCH] " Mathieu Othacehe
  1 sibling, 1 reply; 7+ messages in thread
From: Hilton Chain via Guix-patches via @ 2022-08-16 13:30 UTC (permalink / raw)
  To: 57058; +Cc: Mathieu Othacehe

From c865b31b702d0e5f86faaadcb306cea269ae1109 Mon Sep 17 00:00:00 2001
From: Hilton Chain <hako@ultrarare.space>
Date: Tue, 16 Aug 2022 21:26:33 +0800
Subject: [PATCH v3] gnu: Add python-lief.

* gnu/packages/python-xyz.scm (python-lief): New variable.
---

v2 -> v3: Disable tests.

 gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3259f46881..fbb52a300f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30644,3 +30644,34 @@ (define-public python-misskey
      "This package provides access to Misskey's API.  Misskey is a SNS
 platform using the ActivityPub protocol.")
     (license license:expat)))
+
+(define-public python-lief
+  (package
+    (name "python-lief")
+    (version "0.12.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/lief-project/LIEF")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1xzbh3bxy4rw1yamnx68da1v5s56ay4g081cyamv67256g0qy2i1"))))
+    (build-system python-build-system)
+    (native-inputs (list cmake))
+    (arguments
+     (list #:tests? #f                  ;needs network
+           #:phases #~(modify-phases %standard-phases
+                        (replace 'build
+                          (lambda _
+                            (invoke
+                             "python" "setup.py" "--sdk" "build"
+                             (string-append
+                              "-j" (number->string (parallel-job-count)))))))))
+    (home-page "https://github.com/lief-project/LIEF")
+    (synopsis "Library to instrument executable formats")
+    (description
+     "LIEF is a cross platform library which can parse, modify and abstract ELF,
+PE and MachO formats.")
+    (license license:asl2.0)))

base-commit: ace7b5babe118adb9caf116eb8273f7db6e7f152
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#57058: [PATCH] gnu: Add python-lief.
  2022-08-16 13:30       ` [bug#57058] [PATCH v3] " Hilton Chain via Guix-patches via
@ 2022-08-17  7:25         ` Mathieu Othacehe
  0 siblings, 0 replies; 7+ messages in thread
From: Mathieu Othacehe @ 2022-08-17  7:25 UTC (permalink / raw)
  To: Hilton Chain; +Cc: 57058-done


> * gnu/packages/python-xyz.scm (python-lief): New variable.

Pushed, thanks!

Mathieu




^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-08-17  7:26 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-08 14:52 [bug#57058] [PATCH] gnu: Add python-lief Hilton Chain via Guix-patches via
2022-08-11 15:37 ` Mathieu Othacehe
2022-08-16  6:36   ` [bug#57058] [PATCH v2] " Hilton Chain via Guix-patches via
2022-08-16  9:29     ` Mathieu Othacehe
2022-08-16 13:06       ` Hilton Chain via Guix-patches via
2022-08-16 13:30       ` [bug#57058] [PATCH v3] " Hilton Chain via Guix-patches via
2022-08-17  7:25         ` bug#57058: [PATCH] " Mathieu Othacehe

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.