* [bug#50661] [PATCH] gnu: Add valeronoi.
@ 2021-09-18 13:25 phodina via Guix-patches via
2021-09-18 13:37 ` [bug#50661] [PATCH v2] " phodina via Guix-patches via
2021-09-27 22:52 ` [bug#50661] [PATCH v3] " phodina via Guix-patches via
0 siblings, 2 replies; 6+ messages in thread
From: phodina via Guix-patches via @ 2021-09-18 13:25 UTC (permalink / raw)
To: 50661
* gnu/packages/engineering.scm (valeronoi): New variable.
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 46622f3a1f..37f927a7a3 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2021 qblade <qblade@protonmail.com>
;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -127,6 +128,7 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xiph)
#:use-module (gnu packages openkinect)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg))
(define-public librecad
@@ -1168,6 +1170,32 @@ 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 valeronoi
+(package
+ (name "valeronoi")
+ (version "v0.1.3")
+ (source (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ccoors/Valeronoi")
+ (commit version)))
+ (sha256
+ (base32
+ "1a866h37xmhrnl7hnkhdzjjm8dpjwhq0va2g6hdcp7y949d82ipp"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key outputs #:allow-other-keys)
+ (invoke "./valeronoi-tests"))))))
+ (inputs `(("qtbase" ,qtbase-5) ("qtsvg" ,qtsvg) ("openssl" ,openssl) ("libxkbcommon" ,libxkbcommon) ("cgal" ,cgal) ("gmp" ,gmp) ("mpfr" ,mpfr) ("boost" ,boost)))
+ (synopsis "WiFi mapping companion app for Valetudo")
+ (description "Valeronoi (Valetudo + Voronoi) is a companion for Valetudo for generating WiFi signal strength maps. It visualizes them using a Voronoi diagram.")
+ (home-page "https://github.com/ccoors/Valeronoi")
+ (license license:gpl3)))
+
(define-public volk
(package
(name "volk")
--
2.32.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#50661] [PATCH v2] gnu: Add valeronoi.
2021-09-18 13:25 [bug#50661] [PATCH] gnu: Add valeronoi phodina via Guix-patches via
@ 2021-09-18 13:37 ` phodina via Guix-patches via
2021-09-22 16:27 ` Xinglu Chen
2021-09-27 22:52 ` [bug#50661] [PATCH v3] " phodina via Guix-patches via
1 sibling, 1 reply; 6+ messages in thread
From: phodina via Guix-patches via @ 2021-09-18 13:37 UTC (permalink / raw)
To: 50661@debbugs.gnu.org
Fixed forgotten formatting issues.
--8<---------------cut here---------------start------------->8--
* gnu/packages/engineering.scm (valeronoi): New variable.
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 46622f3a1f..f61fa04a43 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2021 qblade <qblade@protonmail.com>
;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -127,6 +128,7 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xiph)
#:use-module (gnu packages openkinect)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg))
(define-public librecad
@@ -1168,6 +1170,42 @@ 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 valeronoi
+(package
+ (name "valeronoi")
+ (version "v0.1.3")
+ (source (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ccoors/Valeronoi")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1a866h37xmhrnl7hnkhdzjjm8dpjwhq0va2g6hdcp7y949d82ipp"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key outputs #:allow-other-keys)
+ (invoke "./valeronoi-tests"))))))
+ (inputs `(("qtbase" ,qtbase-5)
+ ("qtsvg" ,qtsvg)
+ ("openssl" ,openssl)
+ ("libxkbcommon" ,libxkbcommon)
+ ("cgal" ,cgal)
+ ("gmp" ,gmp)
+ ("mpfr" ,mpfr)
+ ("boost" ,boost)))
+ (synopsis "WiFi mapping companion app for Valetudo")
+ (description "Valeronoi (Valetudo + Voronoi) is a companion for Valetudo
+for generating WiFi signal strength maps. It visualizes them using a Voronoi
+diagram.")
+ (home-page "https://github.com/ccoors/Valeronoi")
+ (license license:gpl3)))
+
(define-public volk
(package
(name "volk")
--
2.32.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#50661] [PATCH v2] gnu: Add valeronoi.
2021-09-18 13:37 ` [bug#50661] [PATCH v2] " phodina via Guix-patches via
@ 2021-09-22 16:27 ` Xinglu Chen
0 siblings, 0 replies; 6+ messages in thread
From: Xinglu Chen @ 2021-09-22 16:27 UTC (permalink / raw)
To: phodina, 50661@debbugs.gnu.org
[-- Attachment #1: Type: text/plain, Size: 2956 bytes --]
On Sat, Sep 18 2021, phodina via Guix-patches via wrote:
> Fixed forgotten formatting issues.
>
> --8<---------------cut here---------------start------------->8--
>
> * gnu/packages/engineering.scm (valeronoi): New variable.
>
> diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
> index 46622f3a1f..f61fa04a43 100644
> --- a/gnu/packages/engineering.scm
> +++ b/gnu/packages/engineering.scm
> @@ -24,6 +24,7 @@
> ;;; Copyright © 2021 qblade <qblade@protonmail.com>
> ;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
> +;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -127,6 +128,7 @@
> #:use-module (gnu packages xml)
> #:use-module (gnu packages xiph)
> #:use-module (gnu packages openkinect)
> + #:use-module (gnu packages xdisorg)
> #:use-module (gnu packages xorg))
>
> (define-public librecad
> @@ -1168,6 +1170,42 @@ 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 valeronoi
> +(package
> + (name "valeronoi")
> + (version "v0.1.3")
The version string should not contain the “v”, and the latest version
seems to be 0.1.4.
> + (source (origin
> + (method git-fetch)
> + (uri
> + (git-reference
> + (url "https://github.com/ccoors/Valeronoi")
> + (commit version)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32
> + "1a866h37xmhrnl7hnkhdzjjm8dpjwhq0va2g6hdcp7y949d82ipp"))))
> + (build-system cmake-build-system)
> + (arguments
> + `(#:phases
> + (modify-phases %standard-phases
> + (replace 'check
> + (lambda* (#:key outputs #:allow-other-keys)
> + (invoke "./valeronoi-tests"))))))
The ‘outputs’ argument isn’t used, and the ‘check’ phase doesn’t respect
the ‘--without-tests’ package transformation. The following snippet
would fix this.
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "./valeronoi-tests")))
> + (inputs `(("qtbase" ,qtbase-5)
> + ("qtsvg" ,qtsvg)
> + ("openssl" ,openssl)
> + ("libxkbcommon" ,libxkbcommon)
> + ("cgal" ,cgal)
> + ("gmp" ,gmp)
> + ("mpfr" ,mpfr)
> + ("boost" ,boost)))
> + (synopsis "WiFi mapping companion app for Valetudo")
> + (description "Valeronoi (Valetudo + Voronoi) is a companion for Valetudo
> +for generating WiFi signal strength maps. It visualizes them using a Voronoi
> +diagram.")
> + (home-page "https://github.com/ccoors/Valeronoi")
> + (license license:gpl3)))
The ‘COPYING’ file says gpl3+.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#50661] [PATCH v3] gnu: Add valeronoi.
2021-09-18 13:25 [bug#50661] [PATCH] gnu: Add valeronoi phodina via Guix-patches via
2021-09-18 13:37 ` [bug#50661] [PATCH v2] " phodina via Guix-patches via
@ 2021-09-27 22:52 ` phodina via Guix-patches via
2021-12-03 15:36 ` phodina via Guix-patches via
2021-12-03 20:39 ` Nicolas Goaziou
1 sibling, 2 replies; 6+ messages in thread
From: phodina via Guix-patches via @ 2021-09-27 22:52 UTC (permalink / raw)
To: Xinglu Chen; +Cc: 50661@debbugs.gnu.org
* gnu/packages/engineering.scm (valeronoi): New variable.
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 46622f3a1f..9dacc6c948 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2021 qblade <qblade@protonmail.com>
;;; Copyright © 2021 Gerd Heber <gerd.heber@gmail.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -127,6 +128,7 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xiph)
#:use-module (gnu packages openkinect)
+ #:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg))
(define-public librecad
@@ -1168,6 +1170,43 @@ 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 valeronoi
+(package
+ (name "valeronoi")
+ (version "0.1.4")
+ (source (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/ccoors/Valeronoi")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1zp653bjqsyixa5j1pp9k12iqsl8dz72yyi38asxmcym1wngsjcd"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "./valeronoi-tests")))))))
+ (inputs `(("qtbase" ,qtbase-5)
+ ("qtsvg" ,qtsvg)
+ ("openssl" ,openssl)
+ ("libxkbcommon" ,libxkbcommon)
+ ("cgal" ,cgal)
+ ("gmp" ,gmp)
+ ("mpfr" ,mpfr)
+ ("boost" ,boost)))
+ (synopsis "WiFi mapping companion app for Valetudo")
+ (description "Valeronoi (Valetudo + Voronoi) is a companion for Valetudo
+for generating WiFi signal strength maps. It visualizes them using a Voronoi
+diagram.")
+ (home-page "https://github.com/ccoors/Valeronoi")
+ (license license:gpl3+)))
+
(define-public volk
(package
(name "volk")
--
2.32.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#50661] [PATCH v3] gnu: Add valeronoi.
2021-09-27 22:52 ` [bug#50661] [PATCH v3] " phodina via Guix-patches via
@ 2021-12-03 15:36 ` phodina via Guix-patches via
2021-12-03 20:39 ` Nicolas Goaziou
1 sibling, 0 replies; 6+ messages in thread
From: phodina via Guix-patches via @ 2021-12-03 15:36 UTC (permalink / raw)
To: Xinglu Chen; +Cc: 50661@debbugs.gnu.org
ping
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#50661] [PATCH v3] gnu: Add valeronoi.
2021-09-27 22:52 ` [bug#50661] [PATCH v3] " phodina via Guix-patches via
2021-12-03 15:36 ` phodina via Guix-patches via
@ 2021-12-03 20:39 ` Nicolas Goaziou
1 sibling, 0 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2021-12-03 20:39 UTC (permalink / raw)
To: 50661; +Cc: Xinglu Chen, phodina, 50661@debbugs.gnu.org
Hello,
phodina via Guix-patches via <guix-patches@gnu.org> writes:
> * gnu/packages/engineering.scm (valeronoi): New variable.
Applied, with the changes below:
> + (inputs `(("qtbase" ,qtbase-5)
> + ("qtsvg" ,qtsvg)
> + ("openssl" ,openssl)
> + ("libxkbcommon" ,libxkbcommon)
> + ("cgal" ,cgal)
> + ("gmp" ,gmp)
> + ("mpfr" ,mpfr)
> + ("boost" ,boost)))
I sorted inputs alphabetically.
> + (synopsis "WiFi mapping companion app for Valetudo")
I replace "app" with "application"
Note: there is a new release. You may want to update it.
Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-12-03 20:41 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-18 13:25 [bug#50661] [PATCH] gnu: Add valeronoi phodina via Guix-patches via
2021-09-18 13:37 ` [bug#50661] [PATCH v2] " phodina via Guix-patches via
2021-09-22 16:27 ` Xinglu Chen
2021-09-27 22:52 ` [bug#50661] [PATCH v3] " phodina via Guix-patches via
2021-12-03 15:36 ` phodina via Guix-patches via
2021-12-03 20:39 ` Nicolas Goaziou
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.