Github messages for voidlinux
 help / color / mirror / Atom feed
From: unspecd <unspecd@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] codec2: update to 1.0.3.
Date: Thu, 30 Dec 2021 01:56:18 +0100	[thread overview]
Message-ID: <20211230005618.pirr04l_RwyAKHOI9iCU-Po-jQB7_CQvrLUYuy2TlTo@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-34753@inbox.vuxu.org>

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

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

https://github.com/unspecd/void-packages pkg/codec2
https://github.com/void-linux/void-packages/pull/34753

codec2: update to 1.0.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, x86_64-musl
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - ppc64le-musl


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pkg/codec2-34753.patch --]
[-- Type: text/x-diff, Size: 2700 bytes --]

From f8cc3682be864bce1880a30e01dc33d7aa09d4b9 Mon Sep 17 00:00:00 2001
From: Evgeny Ermakov <evgeny.v.ermakov@gmail.com>
Date: Wed, 29 Dec 2021 22:13:11 +1100
Subject: [PATCH] codec2: update to 1.0.3.

---
 srcpkgs/codec2/template | 47 ++++++++++++-----------------------------
 1 file changed, 13 insertions(+), 34 deletions(-)

diff --git a/srcpkgs/codec2/template b/srcpkgs/codec2/template
index 10521d98c05d..72c1157896d4 100644
--- a/srcpkgs/codec2/template
+++ b/srcpkgs/codec2/template
@@ -1,53 +1,32 @@
 # Template file for 'codec2'
 pkgname=codec2
-version=1.0.1
+version=1.0.3
 revision=1
 build_style=cmake
-checkdepends="gnuplot octave python3-numpy sox valgrind"
+configure_args="-DUNITTEST=1"
+checkdepends="gcc-fortran git gnuplot libgomp-devel octave openblas-devel python3-numpy sox tar valgrind"
 short_desc="Low bit rate speech codec"
 maintainer="Evgeny Ermakov <evgeny.v.ermakov@gmail.com>"
 license="LGPL-2.1-only"
 homepage="https://www.rowetel.com/codec2.html"
 distfiles="https://github.com/drowe67/codec2/archive/v${version}.tar.gz"
-checksum=14227963940d79e0ec5af810f37101b30e1c7e8555abd96c56b3c0473abac8ef
+checksum=48162d562ea3bf4ca273f3c45df04505a006bd9a2b376006c75706c4de957da7
+
+post_fetch() {
+	if [ "$XBPS_CHECK_PKGS" ]; then
+		octave-cli --eval "pkg install -verbose -forge control signal"
+	fi
+}
 
 do_check() {
 	cd build
-	ctest -E "test_CML_ldpcut|\
-test_COHPSK_modem_octave_port|\
-test_OFDM_modem_burst_acq_port|\
-test_OFDM_modem_datac0_octave_burst|\
-test_OFDM_modem_datac1_octave|\
-test_OFDM_modem_datac3_octave|\
-test_OFDM_modem_esno_est_c|\
-test_OFDM_modem_esno_est_octave|\
-test_OFDM_modem_fading_BER|\
-test_OFDM_modem_fading_DPSK_BER|\
-test_OFDM_modem_octaeve_datac0_mpp|\
-test_OFDM_modem_octave_burst_acq|\
-test_OFDM_modem_octave_datac0_mpp|\
-test_OFDM_modem_octave_datac0_mpp_coded|\
-test_OFDM_modem_octave_datac0_postamble|\
-test_OFDM_modem_octave_port|\
-test_OFDM_modem_octave_port_Nc_31|\
-test_OFDM_modem_octave_qam16_uncoded|\
-test_OFDM_modem_phase_est_bw|\
-test_OFDM_modem_time_sync_700D|\
-test_codec2_700c_octave_port|\
-test_demo_700d|\
-test_demo_700d_python|\
-test_freedv_api_700D_backwards_compatability|\
+	ctest -E "test_codec2_700c_octave_port|\
 test_freedv_api_700D_burble|\
 test_freedv_data_raw_fsk_ldpc_100|\
-test_freedv_reliable_text_awgn_700D|\
-test_freedv_reliable_text_fade_1600|\
-test_freedv_reliable_text_fade_700D|\
-test_freedv_reliable_text_fade_700E|\
-test_fsk_lib_4fsk_ldpc|\
-test_fsk_modem_octave_port|\
 test_ldpc_enc_dec_HRA_56_56|\
 test_ldpc_enc_dec_H_16200_9720|\
-test_ldpc_enc_dec_H_2064_516_sparse"
+test_ldpc_enc_dec_H_2064_516_sparse|\
+test_vq_mbest"
 }
 
 codec2-devel_package() {

  parent reply	other threads:[~2021-12-30  0:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-29 11:15 [PR PATCH] " unspecd
2021-12-29 21:40 ` Chocimier
2021-12-30  0:51 ` [PR PATCH] [Updated] " unspecd
2021-12-30  0:56 ` unspecd [this message]
2021-12-30  0:58 ` unspecd
2022-06-20  2:13 ` github-actions
2022-07-04  2:15 ` [PR PATCH] [Closed]: " github-actions

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211230005618.pirr04l_RwyAKHOI9iCU-Po-jQB7_CQvrLUYuy2TlTo@z \
    --to=unspecd@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).