Github messages for voidlinux
 help / color / mirror / Atom feed
* [ISSUE] [Package Request] RHVoice
@ 2020-11-13 11:09 zenny
  2020-11-15 21:16 ` zenny
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: zenny @ 2020-11-13 11:09 UTC (permalink / raw)
  To: ml

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

New issue by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349

Description:
### Package Name
RHVoice

### Package Source
https://github.com/Olga-Yakovleva/RHVoice

### Application
TTS (text-to-speech)

### Rationale
Better sounds than espeak and flite

### Licenses
LGPL, GPL, CC

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
@ 2020-11-15 21:16 ` zenny
  2020-11-15 21:22 ` ericonr
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2020-11-15 21:16 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-727638225

Comment:
 Hi, I am trying to build RHvoice package from the source (https://github.com/Olga-Yakovleva/RHVoice). Just saw an AUR build (https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=rhvoice) and tried to make an xbps-src template. See http://ix.io/2Edy. Any inputs to make it compatible appreciated! Thanks!

```
# Template file for 'rhvoice-git'
pkgname=rhvoice-git
version=1.2.3.r37.2dc35bc
revision=1
build_style=gnu-configure
configure_args="--disable-multilib
 --disable-bootstrap
 --disable-lto
 --enable-checking=release
 --enable-host-shared
 --enable-languages=jit"
hostmakedepends="git scons speech-dispatcher portaudio libao"
makedepends="libpulse"
short_desc="Free and open source speech synthesizer for Russian and other languages. (development version"
maintainer="null"
license="GPL-3.0-or-later"
homepage="https://github.com/Olga-Yakovleva/RHVoice"
distfiles="${pkgname%-git}::'git+https://github.com/Olga-Yakovleva/RHVoice.git')"
checksum=SKIP
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
backup=('etc/RHVoice/RHVoice.conf')
wrksrc="rhvoice-${version}"

version() {
        cd "$srcdir/${pkgname%-git}"
        printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"
}

build() {
        cd "$srcdir/${pkgname%-git}"
        scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \
              LINKFLAGS="$LDFLAGS"
}

package() {
        cd "$srcdir/${pkgname%-git}"
        mkdir -p "${pkgdir}/usr/lib/speech-dispatcher-modules"
        scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \
              CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
        ln -s "/usr/bin/sd_rhvoice" "${pkgdir}/usr/lib/speech-dispatcher-modules/sd_rhvoice"
}
```

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
  2020-11-15 21:16 ` zenny
@ 2020-11-15 21:22 ` ericonr
  2020-11-20  8:35 ` zenny
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2020-11-15 21:22 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-727639093

Comment:
Void tries not to merge git packages; do you think they have a chance of doing actual releases?

Have you tried using this template? As is, it won't work at all, as far as I can tell. I'd recommend using `build_style=scons` for starters, and checking out other templates that use it for a suggested template structure.

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
  2020-11-15 21:16 ` zenny
  2020-11-15 21:22 ` ericonr
@ 2020-11-20  8:35 ` zenny
  2020-11-20 12:40 ` ericonr
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2020-11-20  8:35 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-731025927

Comment:
> Void tries not to merge git packages; do you think they have a chance of doing actual releases?
> 
> Have you tried using this template? As is, it won't work at all, as far as I can tell. I'd recommend using `build_style=scons` for starters, and checking out other templates that use it for a suggested template structure.

I tried with the following template to build from the stable repo:

```
# Template file for 'rhvoice'
pkgname=rhvoice
version=1.2.3
revision=1
wrksrc="RHVoice-${version}"
build_style=scons
depends="speech-dispatcher libpulseaudio"
makedepends="scons portaudio libao"
optdepends="'portaudio: for portaudio backend' 'libao: for ao backend'"
backup="etc/RHVoice/RHVoice.conf"
short_desc="Free and open source speech synthesizer for Russian and other languages"
maintainer="/dev/null"
license="GPL-3.0-or-later"
homepage="https://github.com/Olga-Yakovleva/RHVoice"
distfiles="https://github.com/Olga-Yakovleva/RHVoice/archive/${version}.tar.gz"
checksum=d104f20dc75fcd133d21751a6e894d34b423e12e4784350b4b9573c727fb71cd


build() {
        cd "$wrksrc/RHVoice-${version}"
        scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \
              LINKFLAGS="$LDFLAGS"
}

package() {
        cd "$wrksrc/RHVoice-${version}"
        mkdir -p "${pkgdir}/usr/lib/speech-dispatcher-modules"
scons install DESTDIR="${pkgdir}" prefix="/usr" sysconfdir="/etc" \
              CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
        ln -s "/usr/bin/sd_rhvoice" "${pkgdir}/usr/lib/speech-dispatcher-modules/sd_rhvoice"
}
```

It builds the package, but there is no `/usr/bin/sd_rdvoice` found after installation of the package. :( Any input?

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (2 preceding siblings ...)
  2020-11-20  8:35 ` zenny
@ 2020-11-20 12:40 ` ericonr
  2020-11-20 19:55 ` zenny
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2020-11-20 12:40 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-731147362

Comment:
We don't use `pkgdir`, we use `DESTDIR`.

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (3 preceding siblings ...)
  2020-11-20 12:40 ` ericonr
@ 2020-11-20 19:55 ` zenny
  2020-12-18 14:12 ` ericonr
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2020-11-20 19:55 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-731377318

Comment:
> We don't use `pkgdir`, we use `DESTDIR`.

Thanks @ericonr. 

I replaced all instances of  `pkgdir` with `DESTDIR`, 

```
# Template file for 'rhvoice'
pkgname=rhvoice
version=1.2.3
revision=1
wrksrc="RHVoice-${version}"
build_style=scons
depends="speech-dispatcher libpulseaudio"
makedepends="scons portaudio libao"
optdepends="'portaudio: for portaudio backend' 'libao: for ao backend'"
backup="etc/RHVoice/RHVoice.conf"
short_desc="Free and open source speech synthesizer for Russian and other languages"
maintainer="/dev/null"
license="GPL-3.0-or-later"
homepage="https://github.com/Olga-Yakovleva/RHVoice"
distfiles="https://github.com/Olga-Yakovleva/RHVoice/archive/${version}.tar.gz"
checksum=d104f20dc75fcd133d21751a6e894d34b423e12e4784350b4b9573c727fb71cd


build() {
        cd "$wrksrc/RHVoice-${version}"
        scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \
              LINKFLAGS="$LDFLAGS"
}

package() {
        cd "$wrksrc/RHVoice-${version}"
        mkdir -p "${DESTDIR}/usr/lib/speech-dispatcher-modules"
scons install DESTDIR="${DESTDIR}" prefix="/usr" sysconfdir="/etc" \
              CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
        ln -s "/usr/bin/sd_rhvoice" "${DESTDIR}/usr/lib/speech-dispatcher-modules/sd_rhvoice"

```

Also, appended following 3 lines to `common/shlibs`

```
$ rg libRHVoice common/shlibs
3997:libRHVoice.so.5 rhvoice-1.2.3_1
3998:libRHVoice_audio.so.2 rhvoice-1.2.3_1
3999:libRHVoice_core.so.4 rhvoice-1.2.3_1
```

The package gets built, but it does not behave as expected (no `RHVoice` binary nor `sd_rhvoice` installed) after running ` $ sudo xbps-install --repository=hostdir/binpkgs rhvoice`. No errors either. 

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (4 preceding siblings ...)
  2020-11-20 19:55 ` zenny
@ 2020-12-18 14:12 ` ericonr
  2021-02-19  8:02 ` zenny
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2020-12-18 14:12 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-748104925

Comment:
@zenny is this still necessary given work on https://github.com/void-linux/void-packages/pull/27193 on espeak-ng?

The `build` and `package` functions aren't doing anything, void uses `do_build` and `do_install` for this functionality. You don't really need them, though. Just make `post_install` with 

```
ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"
```

and you should be good.

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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (5 preceding siblings ...)
  2020-12-18 14:12 ` ericonr
@ 2021-02-19  8:02 ` zenny
  2021-02-19  8:39 ` zenny
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2021-02-19  8:02 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-781905495

Comment:
> @zenny is this still necessary given work on #27193 on espeak-ng?
> 

Yep, because espeak-ng produces robotic voice whereas rhvoice has more natural output.

> The `build` and `package` functions aren't doing anything, void uses `do_build` and `do_install` for this functionality. You don't really need them, though. Just make `post_install` with
> 
> ```
> ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"

I shall try and get back.

> ```
> 
> and you should be good.



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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (6 preceding siblings ...)
  2021-02-19  8:02 ` zenny
@ 2021-02-19  8:39 ` zenny
  2021-02-19  8:39 ` zenny
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2021-02-19  8:39 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-781905495

Comment:
> @zenny is this still necessary given work on #27193 on espeak-ng?
> 

Yep, because espeak-ng produces robotic voice whereas rhvoice has more natural output.

> The `build` and `package` functions aren't doing anything, void uses `do_build` and `do_install` for this functionality. You don't really need them, though. Just make `post_install` with
> 
> ```
> ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"


```
# Template file for 'RHVoice'
pkgname=rhvoice
version=1.2.3
revision=1
wrksrc="RHVoice-${version}"
build_style=scons
depends="speech-dispatcher libpulseaudio"
makedepends="scons portaudio libao"
optdepends="'portaudio: for portaudio backend' 'libao: for ao backend'"
backup="etc/RHVoice/RHVoice.conf"
short_desc="Free and open source speech synthesizer for Russian and other languages"
maintainer="zenny <garbytrash@gmail.com>"
license="GPL-3.0-or-later"
homepage="https://github.com/Olga-Yakovleva/RHVoice"
distfiles="https://github.com/Olga-Yakovleva/RHVoice/archive/${version}.tar.gz"
checksum=d104f20dc75fcd133d21751a6e894d34b423e12e4784350b4b9573c727fb71cd


do_build() {
	cd "$wrksrc/RHVoice-${version}"
	scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \
	      LINKFLAGS="$LDFLAGS"
}

post_install() {
	cd "$wrksrc/RHVoice-${version}"
	mkdir -p "${DESTDIR}/usr/lib/speech-dispatcher-modules"
scons install DESTDIR="${DESTDIR}" prefix="/usr" sysconfdir="/etc" \
	      CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
	      ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"
}
```

With above, error reported were missing `[runtime] speech-dispatcher-0.10.1_3` among others:

 ```
$ ./xbps-src pkg rhvoice
=> xbps-src: updating repositories for host (x86_64)...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/nonfree/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/debug/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/multilib/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/multilib/nonfree/x86_64-repodata' ...
=> xbps-src: updating software in / masterdir...
=> xbps-src: cleaning up / masterdir...
=> rhvoice-1.2.3_1: removing autodeps, please wait...
=> rhvoice-1.2.3_1: building [scons] for x86_64...
   [host] scons-4.0.1_2: found (https://alpha.de.repo.voidlinux.org/current)
   [target] scons-4.0.1_2: found (https://alpha.de.repo.voidlinux.org/current)
   [target] portaudio-190600.20161030_6: found (https://alpha.de.repo.voidlinux.org/current)
   [target] libao-1.2.2_1: found (https://alpha.de.repo.voidlinux.org/current)
   [runtime] speech-dispatcher-0.10.1_3: not found
   [runtime] libpulseaudio-14.2_1: found (https://alpha.de.repo.voidlinux.org/current)
=> rhvoice-1.2.3_1: installing host dependencies: scons-4.0.1_2 ...
=> rhvoice-1.2.3_1: installing target dependencies: scons-4.0.1_2 portaudio-190600.20161030_6 libao-1.2.2_1 ...
=> rhvoice-1.2.3_1: running pre-build hook: 02-script-wrapper ...
=> rhvoice-1.2.3_1: running do_build ...
/void-packages/srcpkgs/rhvoice/template: line 20: cd: /builddir/RHVoice-1.2.3/RHVoice-1.2.3: No such file or directory
=> ERROR: rhvoice-1.2.3_1: do_build: 'cd "$wrksrc/RHVoice-${version}"' exited with 1
=> ERROR:   in do_build() at srcpkgs/rhvoice/template:20
```

> 
> and you should be good.

Cheers,



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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (7 preceding siblings ...)
  2021-02-19  8:39 ` zenny
@ 2021-02-19  8:39 ` zenny
  2022-04-30  2:14 ` github-actions
  2022-05-14  2:16 ` [ISSUE] [CLOSED] " github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: zenny @ 2021-02-19  8:39 UTC (permalink / raw)
  To: ml

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

New comment by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-781905495

Comment:
> @zenny is this still necessary given work on #27193 on espeak-ng?
> 

Yep, because espeak-ng produces robotic voice whereas rhvoice has more natural output.

> The `build` and `package` functions aren't doing anything, void uses `do_build` and `do_install` for this functionality. You don't really need them, though. Just make `post_install` with
> 
> ```
> ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"


```
# Template file for 'RHVoice'
pkgname=rhvoice
version=1.2.3
revision=1
wrksrc="RHVoice-${version}"
build_style=scons
depends="speech-dispatcher libpulseaudio"
makedepends="scons portaudio libao"
optdepends="'portaudio: for portaudio backend' 'libao: for ao backend'"
backup="etc/RHVoice/RHVoice.conf"
short_desc="Free and open source speech synthesizer for Russian and other languages"
maintainer="zenny"
license="GPL-3.0-or-later"
homepage="https://github.com/Olga-Yakovleva/RHVoice"
distfiles="https://github.com/Olga-Yakovleva/RHVoice/archive/${version}.tar.gz"
checksum=d104f20dc75fcd133d21751a6e894d34b423e12e4784350b4b9573c727fb71cd


do_build() {
	cd "$wrksrc/RHVoice-${version}"
	scons prefix="/usr" sysconfdir="/etc" CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" \
	      LINKFLAGS="$LDFLAGS"
}

post_install() {
	cd "$wrksrc/RHVoice-${version}"
	mkdir -p "${DESTDIR}/usr/lib/speech-dispatcher-modules"
scons install DESTDIR="${DESTDIR}" prefix="/usr" sysconfdir="/etc" \
	      CPPFLAGS="$CPPFLAGS" CCFLAGS="$CFLAGS" LINKFLAGS="$LDFLAGS"
	      ln -s "../lib/speech-dispatcher-modules/sd_rhvoice" "${DESTDIR}/usr/bin/sd_rhvoice"
}
```

With above, error reported were missing `[runtime] speech-dispatcher-0.10.1_3` among others:

 ```
$ ./xbps-src pkg rhvoice
=> xbps-src: updating repositories for host (x86_64)...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/nonfree/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/debug/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/multilib/x86_64-repodata' ...
[*] Updating repository `https://alpha.de.repo.voidlinux.org/current/multilib/nonfree/x86_64-repodata' ...
=> xbps-src: updating software in / masterdir...
=> xbps-src: cleaning up / masterdir...
=> rhvoice-1.2.3_1: removing autodeps, please wait...
=> rhvoice-1.2.3_1: building [scons] for x86_64...
   [host] scons-4.0.1_2: found (https://alpha.de.repo.voidlinux.org/current)
   [target] scons-4.0.1_2: found (https://alpha.de.repo.voidlinux.org/current)
   [target] portaudio-190600.20161030_6: found (https://alpha.de.repo.voidlinux.org/current)
   [target] libao-1.2.2_1: found (https://alpha.de.repo.voidlinux.org/current)
   [runtime] speech-dispatcher-0.10.1_3: not found
   [runtime] libpulseaudio-14.2_1: found (https://alpha.de.repo.voidlinux.org/current)
=> rhvoice-1.2.3_1: installing host dependencies: scons-4.0.1_2 ...
=> rhvoice-1.2.3_1: installing target dependencies: scons-4.0.1_2 portaudio-190600.20161030_6 libao-1.2.2_1 ...
=> rhvoice-1.2.3_1: running pre-build hook: 02-script-wrapper ...
=> rhvoice-1.2.3_1: running do_build ...
/void-packages/srcpkgs/rhvoice/template: line 20: cd: /builddir/RHVoice-1.2.3/RHVoice-1.2.3: No such file or directory
=> ERROR: rhvoice-1.2.3_1: do_build: 'cd "$wrksrc/RHVoice-${version}"' exited with 1
=> ERROR:   in do_build() at srcpkgs/rhvoice/template:20
```

> 
> and you should be good.

Cheers,



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

* Re: [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (8 preceding siblings ...)
  2021-02-19  8:39 ` zenny
@ 2022-04-30  2:14 ` github-actions
  2022-05-14  2:16 ` [ISSUE] [CLOSED] " github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2022-04-30  2:14 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/issues/26349#issuecomment-1113893047

Comment:
Issues become stale 90 days after last activity and are closed 14 days after that.  If this issue is still relevant bump it or assign it.

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

* Re: [ISSUE] [CLOSED] [Package Request] RHVoice
  2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
                   ` (9 preceding siblings ...)
  2022-04-30  2:14 ` github-actions
@ 2022-05-14  2:16 ` github-actions
  10 siblings, 0 replies; 12+ messages in thread
From: github-actions @ 2022-05-14  2:16 UTC (permalink / raw)
  To: ml

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

Closed issue by zenny on void-packages repository

https://github.com/void-linux/void-packages/issues/26349

Description:
### Package Name
RHVoice

### Package Source
https://github.com/Olga-Yakovleva/RHVoice

### Application
TTS (text-to-speech)

### Rationale
Better sounds than espeak and flite

### Licenses
LGPL, GPL, CC

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

end of thread, other threads:[~2022-05-14  2:16 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13 11:09 [ISSUE] [Package Request] RHVoice zenny
2020-11-15 21:16 ` zenny
2020-11-15 21:22 ` ericonr
2020-11-20  8:35 ` zenny
2020-11-20 12:40 ` ericonr
2020-11-20 19:55 ` zenny
2020-12-18 14:12 ` ericonr
2021-02-19  8:02 ` zenny
2021-02-19  8:39 ` zenny
2021-02-19  8:39 ` zenny
2022-04-30  2:14 ` github-actions
2022-05-14  2:16 ` [ISSUE] [CLOSED] " github-actions

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 NNTP newsgroup(s).