Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mimic: update to 1.3.0.1
@ 2020-05-07  2:51 rmccask
  2020-05-07  3:29 ` [PR PATCH] [Updated] " rmccask
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: rmccask @ 2020-05-07  2:51 UTC (permalink / raw)
  To: ml

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

There is a new pull request by rmccask against master on the void-packages repository

https://github.com/rmccask/void-packages mimic-1.3.0.1
https://github.com/void-linux/void-packages/pull/21711

mimic: update to 1.3.0.1
The current template won't build because the checksum is wrong.

A patch file from https://github.com/void-linux/void-packages/pull/21711.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mimic-1.3.0.1-21711.patch --]
[-- Type: text/x-diff, Size: 2150 bytes --]

From 17a07d7de1ee128fef8fd7650bebc511f250c43d Mon Sep 17 00:00:00 2001
From: Randy McCaskill <randy@mccaskill.us>
Date: Wed, 6 May 2020 22:48:27 -0400
Subject: [PATCH] mimic: update to 1.3.0.1

---
 srcpkgs/mimic/patches/musl.patch | 11 +++++++++++
 srcpkgs/mimic/template           |  9 +++++----
 2 files changed, 16 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/mimic/patches/musl.patch

diff --git a/srcpkgs/mimic/patches/musl.patch b/srcpkgs/mimic/patches/musl.patch
new file mode 100644
index 00000000000..bbf7702a88c
--- /dev/null
+++ b/srcpkgs/mimic/patches/musl.patch
@@ -0,0 +1,11 @@
+--- src/hts/hts_engine_API/lib/HTS_misc.c.orig	2020-05-06 08:48:23.207180474 -0400
++++ src/hts/hts_engine_API/lib/HTS_misc.c	2020-05-06 08:49:38.850713440 -0400
+@@ -247,6 +247,8 @@
+       fgetpos((FILE *) fp->pointer, &pos);
+ #if defined(_WIN32) || defined(__CYGWIN__) || defined(__APPLE__) || defined(__ANDROID__)
+       return (size_t) pos;
++#elif defined(__linux__) && !defined(__GLIBC__) /* musl */
++      return (size_t) pos.__lldata;
+ #else
+       return (size_t) pos.__pos;
+ #endif                          /* _WIN32 || __CYGWIN__ || __APPLE__ || __ANDROID__ */
diff --git a/srcpkgs/mimic/template b/srcpkgs/mimic/template
index 0d0cf824b83..c7429a3d8f0 100644
--- a/srcpkgs/mimic/template
+++ b/srcpkgs/mimic/template
@@ -1,17 +1,18 @@
 # Template file for 'mimic'
 pkgname=mimic
-version=1.2.0.2
-revision=4
+version=1.3.0.1
+revision=1
+wrksrc="${pkgname}1-${version}"
 build_style=gnu-configure
 configure_args="--enable-shared --enable-static"
 hostmakedepends="automake libtool pkg-config"
-makedepends="alsa-lib-devel icu-devel"
+makedepends="alsa-lib-devel icu-devel pcre2-devel"
 short_desc="Mycroft's lightweight Text-to-speech engine"
 maintainer="Rubén Santos <kojicomics@cocaine.ninja>"
 license="custom"
 homepage="https://github.com/MycroftAI/mimic"
 distfiles="https://github.com/MycroftAI/mimic/archive/${version}.tar.gz"
-checksum=6adcc9911b09d6e9513add41ad9dfc0893ece277f556419869520a0f0708c102
+checksum=9041f5c7d3720899c90c890ada179c92c3b542b90bb655c247e4a4835df79249
 
 pre_configure() {
 	./autogen.sh

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

* Re: [PR PATCH] [Updated] mimic: update to 1.3.0.1
  2020-05-07  2:51 [PR PATCH] mimic: update to 1.3.0.1 rmccask
@ 2020-05-07  3:29 ` rmccask
  2020-05-07  3:35 ` rmccask
  2020-05-11 18:34 ` [PR PATCH] [Merged]: " Hoshpak
  2 siblings, 0 replies; 4+ messages in thread
From: rmccask @ 2020-05-07  3:29 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by rmccask against master on the void-packages repository

https://github.com/rmccask/void-packages mimic-1.3.0.1
https://github.com/void-linux/void-packages/pull/21711

mimic: update to 1.3.0.1
The current template won't build because the checksum is wrong.

A patch file from https://github.com/void-linux/void-packages/pull/21711.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mimic-1.3.0.1-21711.patch --]
[-- Type: text/x-diff, Size: 2209 bytes --]

From f0e62f4149ebdd7ec95fa49d1b62c16d5f25398b Mon Sep 17 00:00:00 2001
From: Randy McCaskill <randy@mccaskill.us>
Date: Wed, 6 May 2020 22:48:27 -0400
Subject: [PATCH] mimic: update to 1.3.0.1

---
 srcpkgs/mimic/patches/musl.patch | 11 +++++++++++
 srcpkgs/mimic/template           | 10 ++++++----
 2 files changed, 17 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/mimic/patches/musl.patch

diff --git a/srcpkgs/mimic/patches/musl.patch b/srcpkgs/mimic/patches/musl.patch
new file mode 100644
index 00000000000..bbf7702a88c
--- /dev/null
+++ b/srcpkgs/mimic/patches/musl.patch
@@ -0,0 +1,11 @@
+--- src/hts/hts_engine_API/lib/HTS_misc.c.orig	2020-05-06 08:48:23.207180474 -0400
++++ src/hts/hts_engine_API/lib/HTS_misc.c	2020-05-06 08:49:38.850713440 -0400
+@@ -247,6 +247,8 @@
+       fgetpos((FILE *) fp->pointer, &pos);
+ #if defined(_WIN32) || defined(__CYGWIN__) || defined(__APPLE__) || defined(__ANDROID__)
+       return (size_t) pos;
++#elif defined(__linux__) && !defined(__GLIBC__) /* musl */
++      return (size_t) pos.__lldata;
+ #else
+       return (size_t) pos.__pos;
+ #endif                          /* _WIN32 || __CYGWIN__ || __APPLE__ || __ANDROID__ */
diff --git a/srcpkgs/mimic/template b/srcpkgs/mimic/template
index 0d0cf824b83..1fdf653c9e7 100644
--- a/srcpkgs/mimic/template
+++ b/srcpkgs/mimic/template
@@ -1,17 +1,19 @@
 # Template file for 'mimic'
 pkgname=mimic
-version=1.2.0.2
-revision=4
+version=1.3.0.1
+revision=1
+wrksrc="${pkgname}1-${version}"
 build_style=gnu-configure
 configure_args="--enable-shared --enable-static"
 hostmakedepends="automake libtool pkg-config"
-makedepends="alsa-lib-devel icu-devel"
+makedepends="alsa-lib-devel icu-devel pcre2-devel"
 short_desc="Mycroft's lightweight Text-to-speech engine"
 maintainer="Rubén Santos <kojicomics@cocaine.ninja>"
 license="custom"
 homepage="https://github.com/MycroftAI/mimic"
+changelog="https://github.com/MycroftAI/mimic1/releases"
 distfiles="https://github.com/MycroftAI/mimic/archive/${version}.tar.gz"
-checksum=6adcc9911b09d6e9513add41ad9dfc0893ece277f556419869520a0f0708c102
+checksum=9041f5c7d3720899c90c890ada179c92c3b542b90bb655c247e4a4835df79249
 
 pre_configure() {
 	./autogen.sh

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

* Re: [PR PATCH] [Updated] mimic: update to 1.3.0.1
  2020-05-07  2:51 [PR PATCH] mimic: update to 1.3.0.1 rmccask
  2020-05-07  3:29 ` [PR PATCH] [Updated] " rmccask
@ 2020-05-07  3:35 ` rmccask
  2020-05-11 18:34 ` [PR PATCH] [Merged]: " Hoshpak
  2 siblings, 0 replies; 4+ messages in thread
From: rmccask @ 2020-05-07  3:35 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by rmccask against master on the void-packages repository

https://github.com/rmccask/void-packages mimic-1.3.0.1
https://github.com/void-linux/void-packages/pull/21711

mimic: update to 1.3.0.1
The current template won't build because the checksum is wrong.

A patch file from https://github.com/void-linux/void-packages/pull/21711.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mimic-1.3.0.1-21711.patch --]
[-- Type: text/x-diff, Size: 2250 bytes --]

From 410d2ac2497c4bb8295749a3e2eef1553b8cf4f7 Mon Sep 17 00:00:00 2001
From: Randy McCaskill <randy@mccaskill.us>
Date: Wed, 6 May 2020 22:48:27 -0400
Subject: [PATCH] mimic: update to 1.3.0.1

---
 srcpkgs/mimic/patches/musl.patch | 11 +++++++++++
 srcpkgs/mimic/template           | 12 +++++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/mimic/patches/musl.patch

diff --git a/srcpkgs/mimic/patches/musl.patch b/srcpkgs/mimic/patches/musl.patch
new file mode 100644
index 00000000000..bbf7702a88c
--- /dev/null
+++ b/srcpkgs/mimic/patches/musl.patch
@@ -0,0 +1,11 @@
+--- src/hts/hts_engine_API/lib/HTS_misc.c.orig	2020-05-06 08:48:23.207180474 -0400
++++ src/hts/hts_engine_API/lib/HTS_misc.c	2020-05-06 08:49:38.850713440 -0400
+@@ -247,6 +247,8 @@
+       fgetpos((FILE *) fp->pointer, &pos);
+ #if defined(_WIN32) || defined(__CYGWIN__) || defined(__APPLE__) || defined(__ANDROID__)
+       return (size_t) pos;
++#elif defined(__linux__) && !defined(__GLIBC__) /* musl */
++      return (size_t) pos.__lldata;
+ #else
+       return (size_t) pos.__pos;
+ #endif                          /* _WIN32 || __CYGWIN__ || __APPLE__ || __ANDROID__ */
diff --git a/srcpkgs/mimic/template b/srcpkgs/mimic/template
index 0d0cf824b83..ed11690e5bd 100644
--- a/srcpkgs/mimic/template
+++ b/srcpkgs/mimic/template
@@ -1,17 +1,19 @@
 # Template file for 'mimic'
 pkgname=mimic
-version=1.2.0.2
-revision=4
+version=1.3.0.1
+revision=1
+wrksrc="${pkgname}1-${version}"
 build_style=gnu-configure
 configure_args="--enable-shared --enable-static"
 hostmakedepends="automake libtool pkg-config"
-makedepends="alsa-lib-devel icu-devel"
+makedepends="alsa-lib-devel icu-devel pcre2-devel"
 short_desc="Mycroft's lightweight Text-to-speech engine"
 maintainer="Rubén Santos <kojicomics@cocaine.ninja>"
-license="custom"
+license="custom: permissive BSD-like"
 homepage="https://github.com/MycroftAI/mimic"
+changelog="https://github.com/MycroftAI/mimic1/releases"
 distfiles="https://github.com/MycroftAI/mimic/archive/${version}.tar.gz"
-checksum=6adcc9911b09d6e9513add41ad9dfc0893ece277f556419869520a0f0708c102
+checksum=9041f5c7d3720899c90c890ada179c92c3b542b90bb655c247e4a4835df79249
 
 pre_configure() {
 	./autogen.sh

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

* Re: [PR PATCH] [Merged]: mimic: update to 1.3.0.1
  2020-05-07  2:51 [PR PATCH] mimic: update to 1.3.0.1 rmccask
  2020-05-07  3:29 ` [PR PATCH] [Updated] " rmccask
  2020-05-07  3:35 ` rmccask
@ 2020-05-11 18:34 ` Hoshpak
  2 siblings, 0 replies; 4+ messages in thread
From: Hoshpak @ 2020-05-11 18:34 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

mimic: update to 1.3.0.1
https://github.com/void-linux/void-packages/pull/21711

Description:
The current template won't build because the checksum is wrong.

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

end of thread, other threads:[~2020-05-11 18:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-07  2:51 [PR PATCH] mimic: update to 1.3.0.1 rmccask
2020-05-07  3:29 ` [PR PATCH] [Updated] " rmccask
2020-05-07  3:35 ` rmccask
2020-05-11 18:34 ` [PR PATCH] [Merged]: " Hoshpak

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).