GNU bug report logs - #73936
[PATCH] gnu: Add tuner.

Previous Next

Package: guix-patches;

Reported by: ashish.is <at> lostca.se

Date: Mon, 21 Oct 2024 17:56:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


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

From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: Ashish SHUKLA via Guix-patches via <guix-patches <at> gnu.org>
Cc: ludo <at> gnu.org, Ashish SHUKLA <ashish.is <at> lostca.se>, 73936 <at> debbugs.gnu.org
Subject: Re: [bug#73936] [PATCH v2] gnu: Add tuner.
Date: Tue, 31 Dec 2024 21:40:49 +0800
[Message part 1 (text/plain, inline)]
Ashish SHUKLA via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/music.scm (tuner): New variable.
>
> Change-Id: I4ceb4b06069c460785b477cc017dc249f786dfa1
> ---
>  gnu/packages/music.scm | 54 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 54 insertions(+)
>
> diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
> index 6825f14dcc..77922d9576 100644
> --- a/gnu/packages/music.scm
> +++ b/gnu/packages/music.scm
> @@ -59,6 +59,7 @@
>  ;;; Copyright © 2024 Parnikkapore <poomklao <at> yahoo.com>
>  ;;; Copyright © 2024 hapster <o.rojon <at> posteo.net>
>  ;;; Copyright © 2024 Nikita Domnitskii <nikita <at> domnitskii.me>
> +;;; Copyright © 2024 Ashish SHUKLA <ashish.is <at> lostca.se>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -168,6 +169,7 @@ (define-module (gnu packages music)
>    #:use-module (gnu packages ncurses)
>    #:use-module (gnu packages netpbm)
>    #:use-module (gnu packages networking)
> +  #:use-module (gnu packages pantheon)
>    #:use-module (gnu packages pcre)
>    #:use-module (gnu packages pdf)
>    #:use-module (gnu packages perl)
> @@ -2868,6 +2870,58 @@ (define-public bristol
>  is subjective.")
>      (license license:gpl3+)))
>  
> +(define-public tuner
> +  (package
> +    (name "tuner")
> +    (version "1.5.6")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                     (url "https://github.com/louis77/tuner")
> +                     (commit (string-append "v" version))))
> +              (file-name (git-file-name name version))
> +              (sha256 (base32 "0zz91n56vdwhjwqscl21016i4l4lx3m6ja0fnrapmf16bdl0rrai"))))
> +    (build-system meson-build-system)
> +    (native-inputs
> +     (list desktop-file-utils ; update-desktop-database
> +           gettext-minimal
> +           `(,glib "bin") ; glib-compile-schemas
> +           ; for org.gnome.system.proxy schema
> +           gsettings-desktop-schemas
> +           `(,gtk "bin") ; gtk-update-icon-cache
> +           pkg-config
> +           vala))
> +    (inputs
> +      (list bash-minimal
> +            glib
> +            granite-6
> +            gtk+
> +            libgee
> +            gstreamer
> +            gst-plugins-base   ; for gstreamer 'playbin'
> +            gst-plugins-good   ; for gstreamer 'scaletempo'
> +            gst-plugins-bad
> +            libsoup
> +            json-glib-minimal))
> +    (arguments
> +      (list
> +        #:glib-or-gtk? #t
> +        #:phases
> +        #~(modify-phases %standard-phases
> +            (add-after 'install 'wrap-tuner
> +             (lambda* (#:key outputs #:allow-other-keys)
> +               (let ((out             (assoc-ref outputs "out"))
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                        please remove it.
> +                     (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
> +                 (wrap-program (string-append out "/bin/com.github.louis77.tuner")
                                                 ^^^ for gexp, just use #$output

And this application's bin is com.github.louis77.tuner, maybe add a
soft link called tuner? Of course, this comment can be ignored.

> +                   `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))))))))
> +    (home-page "https://github.com/louis77/tuner")
> +    (synopsis "Application to discover and play internet radio stations")
> +    (description "Tuner is a minimalist radio station player to discover and
> +listen to your favourite internet radio stations.  The application consists of a radio
> +station catalogue sourced from radio-browser.info, and has presets of selections of
> +stations based on random, top, trending, genre.")
> +    (license license:gpl3+)))
> +
>  (define-public tuxguitar
>    (package
>      (name "tuxguitar")
>
> base-commit: c94153ca7715d8c073d89b6c0fcdb233c75d6440
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 139 days ago.

Previous Next


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