2019-03-21 00:22:00 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2020-02-04 20:43:25 +00:00
|
|
|
;;; Copyright © 2019, 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
2020-04-14 15:17:42 +00:00
|
|
|
;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-03-21 00:22:00 +00:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages gpodder)
|
|
|
|
#:use-module (guix download)
|
2019-03-21 00:22:04 +00:00
|
|
|
#:use-module (guix git-download)
|
2019-03-21 00:22:00 +00:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix build-system cmake)
|
2019-03-21 00:22:01 +00:00
|
|
|
#:use-module (guix build-system python)
|
2019-03-21 00:22:00 +00:00
|
|
|
#:use-module (gnu packages)
|
2019-03-21 00:22:01 +00:00
|
|
|
#:use-module (gnu packages check)
|
2019-03-21 00:22:04 +00:00
|
|
|
#:use-module (gnu packages freedesktop)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gtk)
|
2019-03-21 00:22:00 +00:00
|
|
|
#:use-module (gnu packages pkg-config)
|
2019-03-21 00:22:04 +00:00
|
|
|
#:use-module (gnu packages python-web)
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2019-09-27 08:43:43 +00:00
|
|
|
#:use-module (gnu packages qt)
|
|
|
|
#:use-module (gnu packages video))
|
2019-03-21 00:22:00 +00:00
|
|
|
|
2019-03-21 00:22:04 +00:00
|
|
|
(define-public gpodder
|
|
|
|
(package
|
|
|
|
(name "gpodder")
|
2020-11-23 20:35:53 +00:00
|
|
|
(version "3.10.17")
|
2019-03-21 00:22:04 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 20:53:28 +00:00
|
|
|
(url "https://github.com/gpodder/gpodder")
|
2019-03-21 00:22:04 +00:00
|
|
|
(commit version)))
|
|
|
|
(sha256
|
2020-11-23 20:35:53 +00:00
|
|
|
(base32 "0wrk8d4q6ricbcjzlhk10vrk1qg9hi323kgyyd0c8nmh7a82h8pd"))
|
2020-09-04 18:17:51 +00:00
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(patches (search-patches "gpodder-disable-updater.patch"))))
|
2019-03-21 00:22:04 +00:00
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
2020-04-15 16:41:02 +00:00
|
|
|
`(("intltool" ,intltool)
|
|
|
|
("python-coverage" ,python-coverage)
|
|
|
|
("python-minimock" ,python-minimock)))
|
2019-03-21 00:22:04 +00:00
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+)
|
|
|
|
("python-pygobject" ,python-pygobject)
|
|
|
|
("python-pycairo" ,python-pycairo)
|
|
|
|
("python-dbus" ,python-dbus)
|
|
|
|
("python-html5lib" ,python-html5lib)
|
|
|
|
("python-mygpoclient" ,python-mygpoclient)
|
|
|
|
("python-podcastparser" ,python-podcastparser)
|
2019-09-27 08:43:43 +00:00
|
|
|
("youtube-dl" ,youtube-dl)
|
2019-03-21 00:22:04 +00:00
|
|
|
("xdg-utils" ,xdg-utils)))
|
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; Avoid needing xdg-utils as a propagated input.
|
|
|
|
(add-after 'unpack 'patch-xdg-open
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((xdg-utils (assoc-ref inputs "xdg-utils")))
|
|
|
|
(substitute* "src/gpodder/util.py"
|
|
|
|
(("xdg-open") (string-append xdg-utils "/bin/xdg-open")))
|
|
|
|
#t)))
|
2020-04-15 16:41:02 +00:00
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(invoke "make" "unittest")))
|
2019-03-26 21:41:59 +00:00
|
|
|
;; 'msgmerge' introduces non-determinism by resetting the
|
|
|
|
;; POT-Creation-Date in .po files.
|
|
|
|
(add-before 'install 'do-not-run-msgmerge
|
|
|
|
(lambda _
|
|
|
|
(substitute* "makefile"
|
|
|
|
(("msgmerge") "true"))
|
|
|
|
#t))
|
2019-03-21 00:22:04 +00:00
|
|
|
(add-before 'install 'make-po-files-writable
|
|
|
|
(lambda _
|
|
|
|
(for-each
|
|
|
|
(lambda (f)
|
|
|
|
(chmod f #o664))
|
2019-06-13 06:35:08 +00:00
|
|
|
(find-files "po"))
|
|
|
|
#t))
|
2019-03-21 00:22:04 +00:00
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(setenv "PREFIX" (assoc-ref outputs "out"))
|
2019-06-13 06:35:08 +00:00
|
|
|
(invoke "make" "install")))
|
2019-03-21 00:22:04 +00:00
|
|
|
(add-after 'install 'wrap-gpodder
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
|
|
|
(wrap-program (string-append out "/bin/gpodder")
|
|
|
|
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)))
|
|
|
|
#t))))))
|
|
|
|
(home-page "https://gpodder.github.io")
|
|
|
|
(synopsis "Simple podcast client")
|
|
|
|
(description "gPodder is a podcatcher, i.e. an application that allows
|
|
|
|
podcast feeds (RSS, Atom, Youtube, Soundcloud, Vimeo and XSPF) to be
|
|
|
|
subscribed to, checks for new episodes and allows the podcast to be saved
|
|
|
|
locally for later listening.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2019-03-21 00:22:00 +00:00
|
|
|
(define-public libmygpo-qt
|
|
|
|
(package
|
|
|
|
(name "libmygpo-qt")
|
|
|
|
(version "1.1.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://stefan.derkits.at/files/"
|
|
|
|
"libmygpo-qt/libmygpo-qt." version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1kg18qrq2rsswgzhl65r3mlyx7kpqg4wwnbp4yiv6svvmadmlxl2"))
|
|
|
|
(patches (search-patches "libmygpo-qt-fix-qt-5.11.patch"
|
|
|
|
"libmygpo-qt-missing-qt5-modules.patch"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("qt" ,qtbase)))
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags '("-DMYGPO_BUILD_TESTS=ON")
|
|
|
|
;; TODO: Enable tests when https://github.com/gpodder/gpodder/issues/446
|
|
|
|
;; is fixed.
|
|
|
|
#:tests? #f))
|
2020-01-18 23:05:39 +00:00
|
|
|
(home-page "https://gpodder.github.io")
|
2019-03-21 00:22:00 +00:00
|
|
|
(synopsis "Qt/C++ library wrapping the gpodder web service")
|
|
|
|
(description "@code{libmygpo-qt} is a Qt/C++ library wrapping the
|
|
|
|
@url{https://gpodder.net} APIs. It allows applications to discover, manage
|
|
|
|
and track podcasts.")
|
|
|
|
(license license:lgpl2.1+)))
|
2019-03-21 00:22:01 +00:00
|
|
|
|
2019-03-20 23:55:31 +00:00
|
|
|
(define-public python-mygpoclient
|
|
|
|
(package
|
|
|
|
(name "python-mygpoclient")
|
|
|
|
(version "1.8")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "mygpoclient" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1fi5x6k1mngr0iviw2s4n1f3y2x7pwqy5ivkcrjdprzvwr37f0mh"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("python-coverage" ,python-coverage)
|
|
|
|
("python-minimock" ,python-minimock)
|
|
|
|
("python-nose" ,python-nose)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(invoke "make" "test"))))))
|
|
|
|
(home-page "https://mygpoclient.readthedocs.io")
|
|
|
|
(synopsis "Python library for the gPodder web service")
|
|
|
|
(description "@code{mygpoclient} provides an easy and structured way to
|
|
|
|
access the @url{https://gpodder.net} web services. In addition to
|
|
|
|
subscription list synchronization and storage, the API supports uploading and
|
|
|
|
downloading episode status changes.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2019-03-21 00:22:01 +00:00
|
|
|
(define-public python-podcastparser
|
|
|
|
(package
|
|
|
|
(name "python-podcastparser")
|
2020-11-14 15:41:25 +00:00
|
|
|
(version "0.6.6")
|
2019-03-21 00:22:01 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "podcastparser" version))
|
|
|
|
(sha256
|
2020-11-14 15:41:25 +00:00
|
|
|
(base32 "0m24r2qhck0win44xfhxajbppkss4ha6am0042s0xyq3408883m3"))))
|
2019-03-21 00:22:01 +00:00
|
|
|
(native-inputs
|
2020-11-14 15:41:25 +00:00
|
|
|
`(("python-pytest" ,python-pytest)))
|
2020-04-15 16:41:07 +00:00
|
|
|
(arguments
|
|
|
|
'(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'check
|
2020-11-14 15:41:25 +00:00
|
|
|
(lambda _ (invoke "pytest"))))))
|
2019-03-21 00:22:01 +00:00
|
|
|
(build-system python-build-system)
|
|
|
|
(home-page "http://gpodder.org/podcastparser")
|
|
|
|
(synopsis "Simplified and fast RSS parser Python library")
|
|
|
|
(description "@code{podcastparser} is a library for the gPodder project to
|
|
|
|
provide an easy and reliable way of parsing RSS and Atom-based podcast feeds
|
|
|
|
in Python.")
|
|
|
|
(license license:isc)))
|