GNU bug report logs -
#26350
Build octave with gl2ps support
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 26350 in the body.
You can then email your comments to 26350 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 03 Apr 2017 15:44:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Arun Isaac <arunisaac <at> systemreboot.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 03 Apr 2017 15:44:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
GNU Octave needs gl2ps to export plots to EPS format. Sending patches
for this now...
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 03 Apr 2017 15:48:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 26350 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/gl.scm (gl2ps): New variable.
---
gnu/packages/gl.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 37a1bd909..e18965866 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -7,6 +7,7 @@
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado <at> elephly.net>
;;; Copyright © 2016 David Thompson <davet <at> gnu.org>
;;; Copyright © 2017 Efraim Flashner <efraim <at> flashner.co.il>
+;;; Copyright © 2017 Arun Isaac <arunisaac <at> systemreboot.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27,12 +28,14 @@
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages bison)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages documentation)
#:use-module (gnu packages flex)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages guile)
+ #:use-module (gnu packages image)
#:use-module (gnu packages linux)
#:use-module (gnu packages llvm)
#:use-module (gnu packages pkg-config)
@@ -612,3 +615,34 @@ library for OpenGL. It has lean API modeled after HTML5 canvas API. It is
aimed to be a practical and fun toolset for building scalable user interfaces
and visualizations.")
(license license:zlib)))
+
+(define-public gl2ps
+ (package
+ (name "gl2ps")
+ (version "1.3.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://geuz.org/gl2ps/src/gl2ps-"
+ version ".tgz"))
+ (sha256
+ (base32
+ "0h1nrhmkc4qjw2ninwpj2zbgwhc0qg6pdhpsibbvry0d2bzhns4a"))))
+ (build-system cmake-build-system)
+ (inputs
+ `(("libpng" ,libpng)
+ ("mesa" ,mesa)
+ ("zlib" ,zlib)))
+ (arguments
+ `(#:tests? #f)) ;; no tests
+ (home-page "http://www.geuz.org/gl2ps/")
+ (synopsis "OpenGL to PostScript printing library")
+ (description "GL2PS is a C library providing high quality vector
+output for any OpenGL application. GL2PS uses sorting algorithms
+capable of handling intersecting and stretched polygons, as well as
+non-manifold objects. GL2PS provides many features including advanced
+smooth shading and text rendering, culling of invisible primitives and
+mixed vector/bitmap output.")
+ (license (list license:lgpl2.0+
+ (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
--
2.11.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 03 Apr 2017 15:48:03 GMT)
Full text and
rfc822 format available.
Message #11 received at 26350 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/maths.scm (octave)[inputs]: Add gl2ps.
---
gnu/packages/maths.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index cefc53d67..df60ec384 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1001,6 +1001,7 @@ can solve two kinds of problems:
(inputs
`(("lapack" ,lapack)
("readline" ,readline)
+ ("gl2ps" ,gl2ps)
("glpk" ,glpk)
("fftw" ,fftw)
("fftwf" ,fftwf)
--
2.11.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 03 Apr 2017 15:51:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 26350 <at> debbugs.gnu.org (full text, mbox):
> + (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
I'm not sure I got this license right. Could someone please check before
pushing?
Thanks.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Sat, 08 Apr 2017 13:20:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 26350 <at> debbugs.gnu.org (full text, mbox):
Arun Isaac <arunisaac <at> systemreboot.net> skribis:
>> + (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
>
> I'm not sure I got this license right. Could someone please check before
> pushing?
This looks like a copyleft license incompatible with the GPL.
However gl2ps.h has an explicit LGPL-compatibility clause, which makes
it usable in Octave:
https://searchcode.com/file/9513121/tags/R2008-04-29/extra/jhandles/src/gl2ps.h
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Sat, 08 Apr 2017 13:25:01 GMT)
Full text and
rfc822 format available.
Message #20 received at 26350 <at> debbugs.gnu.org (full text, mbox):
Arun Isaac <arunisaac <at> systemreboot.net> skribis:
> * gnu/packages/gl.scm (gl2ps): New variable.
Applied.
> + (license (list license:lgpl2.0+
> + (license:non-copyleft "http://www.geuz.org/gl2ps/COPYING.GL2PS")))))
I changed ‘non-copyleft’ to ‘fsf-free’ with a note saying this is a
copyleft license.
Thanks!
Ludo’.
Reply sent
to
ludo <at> gnu.org (Ludovic Courtès)
:
You have taken responsibility.
(Sat, 08 Apr 2017 13:26:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Arun Isaac <arunisaac <at> systemreboot.net>
:
bug acknowledged by developer.
(Sat, 08 Apr 2017 13:26:02 GMT)
Full text and
rfc822 format available.
Message #25 received at 26350-done <at> debbugs.gnu.org (full text, mbox):
Arun Isaac <arunisaac <at> systemreboot.net> skribis:
> * gnu/packages/maths.scm (octave)[inputs]: Add gl2ps.
Applied, thanks!
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Sat, 08 Apr 2017 13:28:02 GMT)
Full text and
rfc822 format available.
Message #28 received at 26350 <at> debbugs.gnu.org (full text, mbox):
BTW Arun, could you create an account on Savannah so we can give you
commit access (make sure to upload on your Savannah account page the
OpenPGP key you will use to sign commits)? That should be more
convenient for you. :-)
Thanks in advance,
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Sat, 08 Apr 2017 18:22:02 GMT)
Full text and
rfc822 format available.
Message #31 received at 26350 <at> debbugs.gnu.org (full text, mbox):
Ludovic Courtès writes:
> BTW Arun, could you create an account on Savannah so we can give you
> commit access (make sure to upload on your Savannah account page the
> OpenPGP key you will use to sign commits)? That should be more
> convenient for you. :-)
That's nice. Thanks! :-) I've created an account on Savannah.
https://savannah.gnu.org/users/arunisaac
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 10 Apr 2017 08:16:02 GMT)
Full text and
rfc822 format available.
Message #34 received at 26350 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Arun,
Arun Isaac <arunisaac <at> systemreboot.net> skribis:
> Ludovic Courtès writes:
>
>> BTW Arun, could you create an account on Savannah so we can give you
>> commit access (make sure to upload on your Savannah account page the
>> OpenPGP key you will use to sign commits)? That should be more
>> convenient for you. :-)
>
> That's nice. Thanks! :-) I've created an account on Savannah.
>
> https://savannah.gnu.org/users/arunisaac
Awesome, I’ve added you to the group.
Could you reply to this message signed with OpenPGP key
7F730343F2F09F3C77BF79D32E25EE8B61802BB3?
Please make sure to read ‘HACKING’ for the bits about commit access.
Thank you, and welcome aboard! :-)
Ludo’.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 10 Apr 2017 18:17:02 GMT)
Full text and
rfc822 format available.
Message #37 received at 26350 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
> Could you reply to this message signed with OpenPGP key
> 7F730343F2F09F3C77BF79D32E25EE8B61802BB3?
My outgoing SMTP relay (the mailjet.com smarthost) reencodes my mail
corrupting my PGP signature. And, since I am running my mail server on a
dynamic IP connection, I'm having difficulty sending mail directly to
debbugs.gnu.org. So, instead I have attached a text file signed with my
key. Will that do?
> Please make sure to read ‘HACKING’ for the bits about commit access.
Yes, I read `HACKING'.
> Thank you, and welcome aboard! :-)
Thank You! :-)
[test-signature.gpg (application/octet-stream, attachment)]
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 10 Apr 2017 19:44:01 GMT)
Full text and
rfc822 format available.
Message #40 received at 26350 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Mon, Apr 10, 2017 at 11:46:11PM +0530, Arun Isaac wrote:
>
> > Could you reply to this message signed with OpenPGP key
> > 7F730343F2F09F3C77BF79D32E25EE8B61802BB3?
>
> My outgoing SMTP relay (the mailjet.com smarthost) reencodes my mail
> corrupting my PGP signature. And, since I am running my mail server on a
> dynamic IP connection, I'm having difficulty sending mail directly to
> debbugs.gnu.org. So, instead I have attached a text file signed with my
> key. Will that do?
Thanks, I verified the text file was signed with key
7F730343F2F09F3C77BF79D32E25EE8B61802BB3.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26350
; Package
guix-patches
.
(Mon, 10 Apr 2017 21:39:01 GMT)
Full text and
rfc822 format available.
Message #43 received at 26350 <at> debbugs.gnu.org (full text, mbox):
Arun Isaac <arunisaac <at> systemreboot.net> skribis:
>> Could you reply to this message signed with OpenPGP key
>> 7F730343F2F09F3C77BF79D32E25EE8B61802BB3?
>
> This message should be signed with my key.
Perfect, thanks!
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 09 May 2017 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 94 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.