From 434dd2cc619f82a9b63f22d36c3933a9e0964966 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 29 Oct 2025 15:59:15 +0100 Subject: [PATCH] gnu: sphinxbase: Deprecate variable. Sphinxbase is now included in Pocketsphinx. Change-Id: If86fb478565fb93a36bf25388d191aa21a25d7b6 --- gnu/packages/speech.scm | 35 +++-------------------------------- 1 file changed, 3 insertions(+), 32 deletions(-) diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm index a4cbb9aa390aecb27a0ebba084888b9569fe1137..53721d7dc5b0be1ef755ef52fa9dc344f2894c24 100644 --- a/gnu/packages/speech.scm +++ b/gnu/packages/speech.scm @@ -651,38 +651,6 @@ It can also speak English through eSpeak or Festival.") ;; libmusicxml license:mpl2.0)))) -(define-public sphinxbase - (package - (name "sphinxbase") - (version "5prealpha") - (source - (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/cmusphinx/" - "sphinxbase/" version "/" - "sphinxbase-" version ".tar.gz")) - (sha256 - (base32 "0vr4k8pv5a8nvq9yja7kl13b5lh0f9vha8fc8znqnm8bwmcxnazp")) - (patches (search-patches "sphinxbase-fix-doxygen.patch")))) - (build-system gnu-build-system) - (arguments - `(#:parallel-tests? #f)) ;tests fail otherwise - (native-inputs - (list bison - doxygen - perl ;for tests - python - swig)) - (inputs - (list pulseaudio)) - (home-page "https://cmusphinx.github.io/") - (synopsis "Support library required by Pocketsphinx and Sphinxtrain") - (description "This package contains the basic libraries shared by -the CMU Sphinx trainer and all the Sphinx decoders (Sphinx-II, -Sphinx-III, and PocketSphinx), as well as some common utilities for -manipulating acoustic feature and audio files.") - (license license:bsd-4))) - (define-public pocketsphinx (package (name "pocketsphinx") @@ -721,3 +689,6 @@ manipulating acoustic feature and audio files.") large vocabulary, speaker-independent continuous speech recognition engine.") (license license:bsd-2))) + +(define-deprecated-package sphinxbase + pocketsphinx)