GNU bug report logs - #43906
[PATCH] Add missing dependencies of Slic3r

Previous Next

Package: guix-patches;

Reported by: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>

Date: Sat, 10 Oct 2020 13:53:01 UTC

Severity: normal

Tags: patch

Done: Andreas Enge <andreas <at> enge.fr>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 43906 in the body.
You can then email your comments to 43906 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Sat, 10 Oct 2020 13:53:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 10 Oct 2020 13:53:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] Add missing dependencies of Slic3r
Date: Sat, 10 Oct 2020 15:52:17 +0200
[Message part 1 (text/plain, inline)]
Hi,

these patches add the missing dependencies for slic3r.


Malte

[0002-gnu-Add-perl-alien-wxwidgets.patch (text/x-patch, inline)]
From e80c0bd2fdb606d184a1069828e3b2e57ff7351b Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:07:50 +0200
Subject: [PATCH 2/7] gnu: Add perl-alien-wxwidgets.

* gnu/packages/perl.scm (perl-alien-wxwidgets): New variable.
---
 gnu/packages/perl.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 9916c579e4..2cbc57d174 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -76,6 +76,7 @@
   #:use-module (gnu packages textutils)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
+  #:use-module (gnu packages wxwidgets)
   #:use-module (gnu packages xorg))
 
 ;;;
@@ -386,6 +387,33 @@ possibility to download and install prebuilt binaries or to build SDL & co.@:
 from source codes.")
     (license license:perl-license)))
 
+(define-public perl-alien-wxwidgets
+  (package
+    (name "perl-alien-wxwidgets")
+    (version "0.69")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/MD/MDOOTSON/Alien-wxWidgets-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0jg2dmkzhj03f6b0vmv597yryfw9cclsdn9ynvvlrzzgpd5lw8jk"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
+       ("perl-module-build" ,perl-module-build)
+       ("wxwidgets-gtk" ,wxwidgets-gtk2)))
+    (propagated-inputs
+     `(("perl-module-pluggable" ,perl-module-pluggable)))
+    (home-page "https://metacpan.org/release/Alien-wxWidgets")
+    (synopsis "building, finding and using wxWidgets binaries")
+    (description "Alien::wxWidgets can be used to detect and get configuration
+settings from an installed wxWidgets.")
+    (license license:perl-license)))
+
 (define-public perl-any-moose
   (package
     (name "perl-any-moose")
-- 
2.28.0

[0003-gnu-Add-perl-data-uuid.patch (text/x-patch, inline)]
From c959affd510b3c4f8ba74283684fc63d170d9f4b Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:08:59 +0200
Subject: [PATCH 3/7] gnu: Add perl-data-uuid.

* gnu/packages/perl.scm (perl-data-uuid): New variable.
---
 gnu/packages/perl.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 2cbc57d174..3658382884 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -2862,6 +2862,29 @@ necessary later on.")
 variants.")
     (license (package-license perl))))
 
+(define-public perl-data-uuid
+  (package
+    (name "perl-data-uuid")
+    (version "1.226")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/R/RJ/RJBS/Data-UUID-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0lv4k4ibxwkw7zz9hw97s34za9nvjxb4kbmgmx5sj4fll3zmfg89"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Data-UUID")
+    (synopsis "Globally/Universally Unique Identifiers (GUIDs/UUIDs)")
+    (description "This module provides a framework for generating v3 UUIDs
+(Universally Unique Identifiers, also known as GUIDs (Globally Unique
+Identifiers). A UUID is 128 bits long, and is guaranteed to be different
+from all other UUIDs/GUIDs generated until 3400 CE.")
+    (license license:bsd-3)))
+
 (define-public perl-data-visitor
   (package
     (name "perl-data-visitor")
-- 
2.28.0

[0004-gnu-Add-perl-net-bonjour.patch (text/x-patch, inline)]
From dfc0b42e3723aabf254ba6a4f54e4956553bcce1 Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:10:14 +0200
Subject: [PATCH 4/7] gnu: Add perl-net-bonjour.

* gnu/packages/perl.scm (perl-net-bonjour): New variable.
---
 gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 3658382884..bdf962e027 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -67,6 +67,7 @@
   #:use-module (gnu packages image)
   #:use-module (gnu packages less)
   #:use-module (gnu packages ncurses)
+  #:use-module (gnu packages networking)
   #:use-module (gnu packages perl-check)
   #:use-module (gnu packages perl-compression)
   #:use-module (gnu packages perl-web)
@@ -7744,6 +7745,31 @@ kernel routing table of the host system.  However, such operations could be
 implemented using the API provided by the module.")
   (license license:perl-license)))
 
+(define-public perl-net-bonjour
+  (package
+    (name "perl-net-bonjour")
+    (version "0.96")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/C/CH/CHLIGE/Net-Bonjour-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "15qzkfk0isn6c4js3ih95k3dylq6scijp863s0485c00n8x1z2n3"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-net-dns" ,perl-net-dns)))
+    (home-page "https://metacpan.org/release/Net-Bonjour")
+    (synopsis "Module for DNS service discovery (Apple's Bonjour)")
+    (description "Net::Bonjour is a set of modules that allow one to discover
+local services via multicast DNS (mDNS) or enterprise services via
+traditional DNS. This method of service discovery has been branded as
+Bonjour by Apple Computer.")
+    (license license:perl-license)))
+
 (define-public perl-net-dns-native
   (package
     (name "perl-net-dns-native")
-- 
2.28.0

[0005-gnu-Add-perl-growl-gntp.patch (text/x-patch, inline)]
From a684261d723bf57553c909b20774152db3ef2798 Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:15:13 +0200
Subject: [PATCH 5/7] gnu: Add perl-growl-gntp.

* gnu/packages/perl.scm (perl-growl-gntp): New variable.
---
 gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index bdf962e027..a34eab43c2 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -5017,6 +5017,32 @@ vaguely inspired by John Ousterhout's Tk_ParseArgv.")
 the abstract data structures.")
     (license (package-license perl))))
 
+(define-public perl-growl-gntp
+  (package
+    (name "perl-growl-gntp")
+    (version "0.21")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/MA/MATTN/Growl-GNTP-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0gq8ypam6ifp8f3s2mf5d6sw53m7h3ki1zfahh2p41kl8a77yy98"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-module-build-tiny" ,perl-module-build-tiny)))
+    (propagated-inputs
+     `(("perl-crypt-cbc" ,perl-crypt-cbc)
+       ("perl-data-uuid" ,perl-data-uuid)))
+    (home-page "https://metacpan.org/release/Growl-GNTP")
+    (synopsis "Perl implementation of GNTP Protocol (Client Part)")
+    (description "Growl::GNTP is Perl implementation of GNTP Protocol (Client
+Part)")
+    (license license:perl-license)))
+
 (define-public perl-guard
   (package
     (name "perl-guard")
-- 
2.28.0

[0006-gnu-Add-perl-wx.patch (text/x-patch, inline)]
From 34c09a396ddd4db0ea821d8114c7f4537f4c7468 Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:16:46 +0200
Subject: [PATCH 6/7] gnu: Add perl-wx.

* gnu/packages/perl.scm (perl-wx): New variable.
---
 gnu/packages/perl.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index a34eab43c2..879fdd4e74 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -10877,6 +10877,42 @@ it.  With this module, you can add your own magic to any variable without
 having to write a single line of XS.")
     (license (package-license perl))))
 
+(define-public perl-wx
+  (package
+    (name "perl-wx")
+    (version "0.9932")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/MD/MDOOTSON/Wx-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0w0vcpk8bmklh16c0z1vxgipnmvdw7cckcmay7k7cihgb99vdz8w"))))
+    (build-system perl-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda _
+             ;; Tests require a running X server.
+             (system "Xvfb :1 &")
+             (setenv "DISPLAY" ":1")
+             #t)))))
+    (native-inputs
+     `(("perl-alien-wxwidgets" ,perl-alien-wxwidgets)
+       ("perl-extutils-xspp" ,perl-extutils-xspp)
+       ("xvfb" ,xorg-server-for-tests)))
+    (propagated-inputs
+     `(("perl-alien-wxwidgets" ,perl-alien-wxwidgets)))
+    (home-page "https://metacpan.org/release/Wx")
+    (synopsis "interface to the wxWidgets cross-platform GUI toolkit")
+    (description "The Wx module is a wrapper for the wxWidgets (formerly
+known as wxWindows) GUI toolkit.")
+    (license license:perl-license)))
+
 (define-public perl-xml-writer
   (package
     (name "perl-xml-writer")
-- 
2.28.0

[0007-gnu-Add-perl-wx-glcanvas.patch (text/x-patch, inline)]
From 2348760d580539199e99e4a7f3b9141f6c7884f2 Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:17:14 +0200
Subject: [PATCH 7/7] gnu: Add perl-wx-glcanvas.

* gnu/packages/perl.scm (perl-wx-glcanvas): New variable.
---
 gnu/packages/perl.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 879fdd4e74..9bf60433e3 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -10913,6 +10913,40 @@ having to write a single line of XS.")
 known as wxWindows) GUI toolkit.")
     (license license:perl-license)))
 
+(define-public perl-wx-glcanvas
+  (package
+    (name "perl-wx-glcanvas")
+    (version "0.09")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/MB/MBARBON/Wx-GLCanvas-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "1q4gvj4gdx4l8k4mkgiix24p9mdfy1miv7abidf0my3gy2gw5lka"))))
+    (build-system perl-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda _
+             ;; Tests require a running X server.
+             (system "Xvfb :1 &")
+             (setenv "DISPLAY" ":1")
+             #t)))))
+    (native-inputs `(("perl-wx" ,perl-wx)
+                     ("xvfb" ,xorg-server-for-tests)))
+    (inputs `(("mesa" ,mesa)))
+    (propagated-inputs `(("perl-wx" ,perl-wx)))
+    (home-page "https://metacpan.org/release/Wx-GLCanvas")
+    (synopsis "interface to wxWidgets' OpenGL canvas")
+    (description "The documentation for this module is included in the main
+wxPerl distribution (wxGLCanvas).")
+    (license license:perl-license)))
+
 (define-public perl-xml-writer
   (package
     (name "perl-xml-writer")
-- 
2.28.0


Information forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Sat, 10 Oct 2020 19:54:01 GMT) Full text and rfc822 format available.

Message #8 received at 43906 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Enge <andreas <at> enge.fr>
To: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Cc: 43906 <at> debbugs.gnu.org
Subject: Re: [bug#43906] [PATCH] Add missing dependencies of Slic3r
Date: Sat, 10 Oct 2020 21:53:03 +0200
Hello,

On Sat, Oct 10, 2020 at 03:52:17PM +0200, Malte Frank Gerdes wrote:
> Subject: [PATCH 2/7] gnu: Add perl-alien-wxwidgets.

during build, I see the following messages:
starting phase `build'
Building Alien-wxWidgets
'media' library not found: some functionality will be missing

Does this matter? Should we add more inputs?

Then this:
starting phase `check'
t/01_load.t .......... ok
t/zy_pod_coverage.t .. skipped: Test::Pod::Coverage 1.00 required for testing POD coverage
t/zz_pod.t ........... skipped: Test::Pod 1.00 required for testing POD

Similarly, add (native-)inputs?

Concerning these, I ran this command:
$ guix gc --references /gnu/store/r8lbv88cg2nqkk0a2hjcvrs0z3ljqrcy-perl-alien-wxwidgets-0.69
/gnu/store/a41jn9pcrgpkgba6vpd3m56r0fsczsv2-wxwidgets-gtk2-3.0.5.1
/gnu/store/r8lbv88cg2nqkk0a2hjcvrs0z3ljqrcy-perl-alien-wxwidgets-0.69

So wxwidgets-gtk2 should be a normal, non-native input.
Why -gtk2? Does this warrant a comment?

Concerning normal vs. propagated inputs, I must confess my ignorance of perl;
do all perl packages need to be propagated?

I would suggest insignificantly beefed up descriptive fields:
    (synopsis "Module for building, finding and using wxWidgets binaries")
    (description "Alien::wxWidgets can be used to detect and get configuration
settings from an installed wxWidgets package.")

Andreas





Information forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Sat, 10 Oct 2020 20:28:01 GMT) Full text and rfc822 format available.

Message #11 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Tobias Geerinckx-Rice <me <at> tobias.gr>
To: Andreas Enge <andreas <at> enge.fr>
Cc: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>, 43906 <at> debbugs.gnu.org,
 guix-patches <at> gnu.org
Subject: Re: [bug#43906] [PATCH] Add missing dependencies of Slic3r
Date: Sat, 10 Oct 2020 22:26:59 +0200
[Message part 1 (text/plain, inline)]
Andreas,

Andreas Enge 写道:
> Then this:
> starting phase `check'
> t/01_load.t .......... ok
> t/zy_pod_coverage.t .. skipped: Test::Pod::Coverage 1.00 
> required for testing POD coverage
> t/zz_pod.t ........... skipped: Test::Pod 1.00 required for 
> testing POD
>
> Similarly, add (native-)inputs?

I deliberately ignore these when I see them.

Like test coverage or code formatting tests, these test the source 
code (here: documentation) itself, not the build result.  IMO 
that's useful for upstream authors but not for us redistributors.

> Concerning normal vs. propagated inputs, I must confess my 
> ignorance of perl; do all perl packages need to be propagated?

Yes, unless a PERL5LIB wrapper is used instead.  Binaries & 
scripts can be wrapped, Perl modules can't.

Kind regards,

T G-R
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Sat, 10 Oct 2020 20:28:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Tue, 13 Oct 2020 19:28:01 GMT) Full text and rfc822 format available.

Message #17 received at 43906 <at> debbugs.gnu.org (full text, mbox):

From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
To: Andreas Enge <andreas <at> enge.fr>
Cc: 43906 <at> debbugs.gnu.org
Subject: Re: [bug#43906] [PATCH v2] perl-alien-wxwidgets
Date: Tue, 13 Oct 2020 21:27:42 +0200
[Message part 1 (text/plain, inline)]
Andreas Enge <andreas <at> enge.fr> writes:

> Hello,
>
> On Sat, Oct 10, 2020 at 03:52:17PM +0200, Malte Frank Gerdes wrote:
>> Subject: [PATCH 2/7] gnu: Add perl-alien-wxwidgets.
>
> during build, I see the following messages:
> starting phase `build'
> Building Alien-wxWidgets
> 'media' library not found: some functionality will be missing
>
> Does this matter? Should we add more inputs?

I checked that and (i'm also not a perl user, in fact i have never read
as much perl as in those packages in order to get slic3r :D) i can't
see any reason why it shouldn't find that library. It /is/ there. It's
part of wxwidgets. So i don't know what is going on there :/

> Then this:
> starting phase `check'
> t/01_load.t .......... ok
> t/zy_pod_coverage.t .. skipped: Test::Pod::Coverage 1.00 required for testing
> POD coverage
> t/zz_pod.t ........... skipped: Test::Pod 1.00 required for testing POD
>
> Similarly, add (native-)inputs?

As Tobias said, it might be perfectly fine to ignore these. I added the
relevant bits nonetheless, because it might be of help sometimes (or not
:D).

> Concerning these, I ran this command:
> $ guix gc --references
> /gnu/store/r8lbv88cg2nqkk0a2hjcvrs0z3ljqrcy-perl-alien-wxwidgets-0.69
> /gnu/store/a41jn9pcrgpkgba6vpd3m56r0fsczsv2-wxwidgets-gtk2-3.0.5.1
> /gnu/store/r8lbv88cg2nqkk0a2hjcvrs0z3ljqrcy-perl-alien-wxwidgets-0.69
>
> So wxwidgets-gtk2 should be a normal, non-native input.
> Why -gtk2? Does this warrant a comment?

i don't know why i chose wxwidgets-gtk2 - it works perfectly fine with
wxwidgets, sorry!

> I would suggest insignificantly beefed up descriptive fields:
>     (synopsis "Module for building, finding and using wxWidgets binaries")
>     (description "Alien::wxWidgets can be used to detect and get configuration
> settings from an installed wxWidgets package.")

I have modified the patch according to your suggestions.


Malte

[0001-gnu-Add-perl-alien-wxwidgets.patch (text/x-patch, inline)]
From bedffb896dba772bfcc8d2af05fb3bbacfeb6e08 Mon Sep 17 00:00:00 2001
From: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Date: Wed, 7 Oct 2020 18:07:50 +0200
Subject: [PATCH] gnu: Add perl-alien-wxwidgets.

* gnu/packages/perl.scm (perl-alien-wxwidgets): New variable.
---
 gnu/packages/perl.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 9916c579e4..34a84ab2fb 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -76,6 +76,7 @@
   #:use-module (gnu packages textutils)
   #:use-module (gnu packages video)
   #:use-module (gnu packages web)
+  #:use-module (gnu packages wxwidgets)
   #:use-module (gnu packages xorg))
 
 ;;;
@@ -386,6 +387,35 @@ possibility to download and install prebuilt binaries or to build SDL & co.@:
 from source codes.")
     (license license:perl-license)))
 
+(define-public perl-alien-wxwidgets
+  (package
+    (name "perl-alien-wxwidgets")
+    (version "0.69")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://cpan/authors/id/M/MD/MDOOTSON/Alien-wxWidgets-"
+             version
+             ".tar.gz"))
+       (sha256
+        (base32
+         "0jg2dmkzhj03f6b0vmv597yryfw9cclsdn9ynvvlrzzgpd5lw8jk"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
+       ("perl-module-build" ,perl-module-build)
+       ("perl-test-pod" ,perl-test-pod)
+       ("perl-test-pod-coverage" ,perl-test-pod-coverage)
+       ("wxwidgets" ,wxwidgets)))
+    (propagated-inputs
+     `(("perl-module-pluggable" ,perl-module-pluggable)))
+    (home-page "https://metacpan.org/release/Alien-wxWidgets")
+    (synopsis "Module for building, finding and using wxWidgets binaries")
+    (description "Alien::wxWidgets can be used to detect and get configuration
+settings from an installed wxWidgets package.")
+    (license license:perl-license)))
+
 (define-public perl-any-moose
   (package
     (name "perl-any-moose")
-- 
2.28.0


Information forwarded to guix-patches <at> gnu.org:
bug#43906; Package guix-patches. (Thu, 09 Feb 2023 20:48:02 GMT) Full text and rfc822 format available.

Message #20 received at 43906 <at> debbugs.gnu.org (full text, mbox):

From: Andreas Enge <andreas <at> enge.fr>
To: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Cc: 43906 <at> debbugs.gnu.org
Subject: [bug#43906] [PATCH v3] perl-wx
Date: Thu, 9 Feb 2023 21:47:18 +0100
[Message part 1 (text/plain, inline)]
Hello,

in the meantime, perl-data-uuid had already been added to Guix.

I have reimported perl-net-bonjour and perl-growl-gntp and pushed them.

Then I have adapted your perl-alien-wxwidgets to modern conventions
and pushed it.

perl-wx as attached fails with the following message, so I did not test
perl-wx-glcanvas:
No such 'link' library: 'adv' at /tmp/guix-build-perl-wx-0.9932.drv-0/Wx-0.9932/build/Wx/build/MakeMaker.pm line 212.

It looks as if the wxwidgets are not found, which makes me wonder if the
perl-alien-wxwidgets package is correct...

Is there still interest in slic3r? Wikipedia claims that prusa-slicer
(which we have) is an improved fork, but maybe it work only with Prusa
printers? If there is no interest, I am going to close the bug.

Andreas

[0001-gnu-Add-perl-wx.patch (text/plain, attachment)]

Reply sent to Andreas Enge <andreas <at> enge.fr>:
You have taken responsibility. (Sat, 18 Feb 2023 11:06:01 GMT) Full text and rfc822 format available.

Notification sent to Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>:
bug acknowledged by developer. (Sat, 18 Feb 2023 11:06:01 GMT) Full text and rfc822 format available.

Message #25 received at 43906-done <at> debbugs.gnu.org (full text, mbox):

From: Andreas Enge <andreas <at> enge.fr>
To: Malte Frank Gerdes <malte.f.gerdes <at> gmail.com>
Cc: 43906-done <at> debbugs.gnu.org
Subject: Re: [bug#43906] [PATCH v3] perl-wx
Date: Sat, 18 Feb 2023 12:05:18 +0100
Closing the issue, if there is renewed interest in slic3r or its
dependencies please feel free to submit new patches.

Andreas





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 18 Mar 2023 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 33 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.