GNU bug report logs -
#26614
[PATCH] gnu: Add volk.
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 26614 in the body.
You can then email your comments to 26614 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#26614
; Package
guix-patches
.
(Sat, 22 Apr 2017 21:37:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Danny Milosavljevic <dannym <at> scratchpost.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 22 Apr 2017 21:37:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/engineering.scm (volk): New variable.
---
gnu/packages/engineering.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index dd56af99d..69937146b 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -774,3 +774,30 @@ render model libraries.")
educational use. As such, there is an emphasis on capabilities that improve
the 'showing the effect of'-style of operation.")
(license license:gpl2+)))
+
+(define-public volk
+ (package
+ (name "volk")
+ (version "1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://libvolk.org/releases/volk-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1bz3ywc6y5wmz3i8p4z2wbzhns8bc0ywdkl9qnxpcvfcscarbdlh"))))
+ (build-system cmake-build-system)
+ (inputs
+ `(("boost" ,boost)))
+ (native-inputs
+ `(("python-2", python-2)
+ ("python2-cheetah" ,python2-cheetah)))
+ (home-page "http://libvolk.org/")
+ (synopsis "Vector-Optimized Library of Kernels")
+ (description
+ "@code{volk} contains procedures with machine-specific optimizations
+for mathematical functions. It also provides an machine-independent
+interface to select the best such procedures to use on a given system.")
+ (license license:gpl3+)))
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26614
; Package
guix-patches
.
(Sun, 23 Apr 2017 00:38:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 26614 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Sat, Apr 22, 2017 at 11:35:47PM +0200, Danny Milosavljevic wrote:
> * gnu/packages/engineering.scm (volk): New variable.
LGTM overall!
> + (uri (string-append "http://libvolk.org/releases/volk-"
> + version
> + ".tar.gz"))
We can combine these last two lines, right?
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26614
; Package
guix-patches
.
(Mon, 24 Apr 2017 14:29:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 26614 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Danny Milosavljevic <dannym <at> scratchpost.org> writes:
> * gnu/packages/engineering.scm (volk): New variable.
[...]
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "http://libvolk.org/releases/volk-"
> + version
> + ".tar.gz"))
> + (sha256
> + (base32
> + "1bz3ywc6y5wmz3i8p4z2wbzhns8bc0ywdkl9qnxpcvfcscarbdlh"))))
Indentation is off in this section.
> + (build-system cmake-build-system)
> + (inputs
> + `(("boost" ,boost)))
> + (native-inputs
> + `(("python-2", python-2)
> + ("python2-cheetah" ,python2-cheetah)))
> + (home-page "http://libvolk.org/")
> + (synopsis "Vector-Optimized Library of Kernels")
> + (description
> + "@code{volk} contains procedures with machine-specific optimizations
^^^
...and here (should align with the d).
Sorry! :D
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26614
; Package
guix-patches
.
(Mon, 24 Apr 2017 18:22:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 26614 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/engineering.scm (volk): New variable.
---
gnu/packages/engineering.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index dd56af99d..20efe11a2 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -774,3 +774,29 @@ render model libraries.")
educational use. As such, there is an emphasis on capabilities that improve
the 'showing the effect of'-style of operation.")
(license license:gpl2+)))
+
+(define-public volk
+ (package
+ (name "volk")
+ (version "1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://libvolk.org/releases/volk-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1bz3ywc6y5wmz3i8p4z2wbzhns8bc0ywdkl9qnxpcvfcscarbdlh"))))
+ (build-system cmake-build-system)
+ (inputs
+ `(("boost" ,boost)))
+ (native-inputs
+ `(("python-2", python-2)
+ ("python2-cheetah" ,python2-cheetah)))
+ (home-page "http://libvolk.org/")
+ (synopsis "Vector-Optimized Library of Kernels")
+ (description
+ "@code{volk} contains procedures with machine-specific optimizations
+for mathematical functions. It also provides an machine-independent
+interface to select the best such procedures to use on a given system.")
+ (license license:gpl3+)))
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26614
; Package
guix-patches
.
(Mon, 24 Apr 2017 20:46:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 26614 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Mon, Apr 24, 2017 at 08:21:49PM +0200, Danny Milosavljevic wrote:
> * gnu/packages/engineering.scm (volk): New variable.
LGTM, thanks!
[signature.asc (application/pgp-signature, inline)]
bug closed, send any further explanations to
26614 <at> debbugs.gnu.org and Danny Milosavljevic <dannym <at> scratchpost.org>
Request was from
Danny Milosavljevic <dannym <at> scratchpost.org>
to
control <at> debbugs.gnu.org
.
(Sun, 07 May 2017 19:22:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 05 Jun 2017 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 7 years and 317 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.