unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59437] [PATCH] gnu: Add mympd.
@ 2022-11-21  0:26 mirai
  2022-11-21 17:09 ` ( via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: mirai @ 2022-11-21  0:26 UTC (permalink / raw)
  To: 59437; +Cc: Bruno Victal

From: Bruno Victal <mirai@makinata.eu>

* gnu/packages/mpd.scm (mympd): New variable.
---
 gnu/packages/mpd.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 4e9cb0cb37..881065d103 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -55,6 +55,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages libusb)
+  #:use-module (gnu packages lua)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
@@ -66,6 +67,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages music)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pcre)
+  #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages python)
@@ -74,7 +76,9 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages sqlite)
+  #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
+  #:use-module (gnu packages web)
   #:use-module (gnu packages xiph))
 
 (define-public libmpdclient
@@ -561,3 +565,28 @@ (define-public mpdevil
 Instead of maintaining a client side database of your music library,
 mpdevil loads all tags and covers on demand.")
     (license license:gpl3+)))
+
+(define-public mympd
+  (package
+    (name "mympd")
+    (version "10.1.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jcorporation/myMPD")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0cw21sz8xyfz7p8yi03mhriqadrm11x1kqw0pw61v1dkbw13q79c"))))
+    (build-system cmake-build-system)
+    (arguments
+     '(#:tests? #f))
+    (native-inputs (list jq perl))
+    (inputs (list flac libid3tag lua openssl pcre2))
+    (home-page "https://jcorporation.github.io/")
+    (synopsis "Web-based MPD client")
+    (description
+     "myMPD is a standalone and mobile friendly web mpd client with
+a tiny footprint and advanced features.")
+    (license license:gpl3+)))

base-commit: 99ba4ddb03b396f56764a25317f40d4501380704
-- 
2.38.1





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

* [bug#59437] [PATCH] gnu: Add mympd.
  2022-11-21  0:26 [bug#59437] [PATCH] gnu: Add mympd mirai
@ 2022-11-21 17:09 ` ( via Guix-patches via
  2022-11-21 17:50 ` [bug#59437] [PATCH v2] " mirai
  2022-11-22 16:11 ` [bug#59437] [PATCH v3] " mirai
  2 siblings, 0 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-11-21 17:09 UTC (permalink / raw)
  To: mirai, 59437

Heya,

On Mon Nov 21, 2022 at 12:26 AM GMT,  wrote:
> * gnu/packages/mpd.scm (mympd): New variable.

> --- a/gnu/packages/mpd.scm
> +++ b/gnu/packages/mpd.scm

> @@ -561,3 +565,28 @@ (define-public mpdevil

> +    (arguments
> +     '(#:tests? #f))

Please explain why tests are disabled in a comment. Also, please use

  (list ...)

rather than

  '(...)

for arguments.

> +    (description
> +     "myMPD is a standalone and mobile friendly web mpd client with
> +a tiny footprint and advanced features.")

This is a bit markety, I think. How about this?

  (description
   "MyMPD is a mobile-friendly web client for the MPD music
player daemon.")

    -- (




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

* [bug#59437] [PATCH v2] gnu: Add mympd.
  2022-11-21  0:26 [bug#59437] [PATCH] gnu: Add mympd mirai
  2022-11-21 17:09 ` ( via Guix-patches via
@ 2022-11-21 17:50 ` mirai
  2022-11-22  4:38   ` ( via Guix-patches via
  2022-11-22 16:11 ` [bug#59437] [PATCH v3] " mirai
  2 siblings, 1 reply; 6+ messages in thread
From: mirai @ 2022-11-21 17:50 UTC (permalink / raw)
  To: 59437; +Cc: Bruno Victal

From: Bruno Victal <mirai@makinata.eu>

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

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 4e9cb0cb37..4a307d7c49 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -55,6 +55,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages libusb)
+  #:use-module (gnu packages lua)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
@@ -66,6 +67,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages music)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pcre)
+  #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages python)
@@ -74,7 +76,9 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages qt)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages sqlite)
+  #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
+  #:use-module (gnu packages web)
   #:use-module (gnu packages xiph))
 
 (define-public libmpdclient
@@ -561,3 +565,27 @@ (define-public mpdevil
 Instead of maintaining a client side database of your music library,
 mpdevil loads all tags and covers on demand.")
     (license license:gpl3+)))
+
+(define-public mympd
+  (package
+    (name "mympd")
+    (version "10.1.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jcorporation/myMPD")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0cw21sz8xyfz7p8yi03mhriqadrm11x1kqw0pw61v1dkbw13q79c"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:tests? #f)) ; no test target
+    (native-inputs (list jq perl))
+    (inputs (list flac libid3tag lua openssl pcre2))
+    (home-page "https://jcorporation.github.io/")
+    (synopsis "Web-based MPD client")
+    (description "MyMPD is a mobile-friendly web client for the MPD music
+player daemon.")
+    (license license:gpl3+)))

base-commit: 2c9635cb47b0f52de635e93ebd137f1f7191c5fd
-- 
2.38.1





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

* [bug#59437] [PATCH v2] gnu: Add mympd.
  2022-11-21 17:50 ` [bug#59437] [PATCH v2] " mirai
@ 2022-11-22  4:38   ` ( via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: ( via Guix-patches via @ 2022-11-22  4:38 UTC (permalink / raw)
  To: mirai, 59437

On Mon Nov 21, 2022 at 5:50 PM GMT,  wrote:
> * gnu/packages/mpd.scm (mympd): New variable.

This LGTM! :)

    -- (




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

* [bug#59437] [PATCH v3] gnu: Add mympd.
  2022-11-21  0:26 [bug#59437] [PATCH] gnu: Add mympd mirai
  2022-11-21 17:09 ` ( via Guix-patches via
  2022-11-21 17:50 ` [bug#59437] [PATCH v2] " mirai
@ 2022-11-22 16:11 ` mirai
  2022-11-24  9:51   ` bug#59437: " Christopher Baines
  2 siblings, 1 reply; 6+ messages in thread
From: mirai @ 2022-11-22 16:11 UTC (permalink / raw)
  To: 59437; +Cc: Bruno Victal

From: Bruno Victal <mirai@makinata.eu>

* gnu/packages/mpd.scm (mympd): New variable.
---
new upstream release (v10.1.2)

 gnu/packages/mpd.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 0c8dc16cf9..cd37d4682c 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -56,6 +56,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages icu4c)
   #:use-module (gnu packages libusb)
+  #:use-module (gnu packages lua)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
@@ -67,6 +68,7 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages music)
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages pcre)
+  #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages pretty-print)
   #:use-module (gnu packages python)
@@ -76,7 +78,9 @@ (define-module (gnu packages mpd)
   #:use-module (gnu packages serialization)
   #:use-module (gnu packages sphinx)
   #:use-module (gnu packages sqlite)
+  #:use-module (gnu packages tls)
   #:use-module (gnu packages video)
+  #:use-module (gnu packages web)
   #:use-module (gnu packages xiph))
 
 (define-public libmpdclient
@@ -573,3 +577,27 @@ (define-public mpdevil
 Instead of maintaining a client side database of your music library,
 mpdevil loads all tags and covers on demand.")
     (license license:gpl3+)))
+
+(define-public mympd
+  (package
+    (name "mympd")
+    (version "10.1.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/jcorporation/myMPD")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1cqq09j7mi7dz5y6l7i0sa6vi2n5zrndnrxnqsi4vcg99fc2vwv8"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:tests? #f)) ; no test target
+    (native-inputs (list jq perl))
+    (inputs (list flac libid3tag lua openssl pcre2))
+    (home-page "https://jcorporation.github.io/")
+    (synopsis "Web-based MPD client")
+    (description "MyMPD is a mobile-friendly web client for the MPD music
+player daemon.")
+    (license license:gpl3+)))

base-commit: b8d4c323f5d089dd800b358143d5bae26c965404
-- 
2.38.1





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

* bug#59437: [PATCH v3] gnu: Add mympd.
  2022-11-22 16:11 ` [bug#59437] [PATCH v3] " mirai
@ 2022-11-24  9:51   ` Christopher Baines
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Baines @ 2022-11-24  9:51 UTC (permalink / raw)
  To: mirai; +Cc: 59437-done, guix-patches

[-- Attachment #1: Type: text/plain, Size: 347 bytes --]


mirai@makinata.eu writes:

> From: Bruno Victal <mirai@makinata.eu>
>
> * gnu/packages/mpd.scm (mympd): New variable.
> ---
> new upstream release (v10.1.2)
>
>  gnu/packages/mpd.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)

Thanks both! I've pushed this to master as
42898ae8ca25347a4b889bd44203ee7675f0c407.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

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

end of thread, other threads:[~2022-11-24  9:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-21  0:26 [bug#59437] [PATCH] gnu: Add mympd mirai
2022-11-21 17:09 ` ( via Guix-patches via
2022-11-21 17:50 ` [bug#59437] [PATCH v2] " mirai
2022-11-22  4:38   ` ( via Guix-patches via
2022-11-22 16:11 ` [bug#59437] [PATCH v3] " mirai
2022-11-24  9:51   ` bug#59437: " Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).