Github messages for voidlinux
 help / color / mirror / Atom feed
From: DavideMaggio <DavideMaggio@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] faust: update to 2.60.3
Date: Sun, 10 Sep 2023 17:38:59 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-46004@inbox.vuxu.org> (raw)

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

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

https://github.com/DavideMaggio/void-packages master
https://github.com/void-linux/void-packages/pull/46004

faust: update to 2.60.3
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
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)




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

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

From e64b5cbeaf16a7462b4550a28317ccc9169659e1 Mon Sep 17 00:00:00 2001
From: mag <mag-one@autistici.org>
Date: Sun, 10 Sep 2023 17:16:10 +0000
Subject: [PATCH] faust: update to 2.60.3

---
 .../faust-voidlinux-lib_and_arch_paths.patch  | 52 +++++++++----------
 srcpkgs/faust/template                        |  4 +-
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/srcpkgs/faust/patches/faust-voidlinux-lib_and_arch_paths.patch b/srcpkgs/faust/patches/faust-voidlinux-lib_and_arch_paths.patch
index 761214ea0e919..3587fc639e67e 100644
--- a/srcpkgs/faust/patches/faust-voidlinux-lib_and_arch_paths.patch
+++ b/srcpkgs/faust/patches/faust-voidlinux-lib_and_arch_paths.patch
@@ -1,32 +1,32 @@
---- a/compiler/libcode.cpp-old	2019-12-22 19:50:13.663677186 +0100
-+++ b/compiler/libcode.cpp	2019-12-22 19:51:42.011680485 +0100
-@@ -733,11 +733,11 @@
+--- a/compiler/global.cpp-orig	2023-09-09 10:38:02.642030383 +0000
++++ b/compiler/global.cpp	2023-09-09 10:41:55.199049192 +0000
+@@ -1679,6 +1679,7 @@ void global::initDirectories(int argc, c
+     gImportDirList.push_back(exepath::dirup(gFaustExeDir) + "/share/faust");
+     gImportDirList.push_back("/usr/local/share/faust");
+     gImportDirList.push_back("/usr/share/faust");
++    gImportDirList.push_back("/usr/lib/faust");
+     
+     //-------------------------------------------------------------------------------------
+     // init gArchitectureDirList : a list of path where to search architectures files
+@@ -1697,6 +1698,7 @@ void global::initDirectories(int argc, c
+     gArchitectureDirList.push_back(exepath::dirup(gFaustExeDir) + "/include");
+     gArchitectureDirList.push_back("/usr/local/share/faust");
+     gArchitectureDirList.push_back("/usr/share/faust");
++    gArchitectureDirList.push_back("/usr/lib/faust");
+     gArchitectureDirList.push_back("/usr/local/include");
+     gArchitectureDirList.push_back("/usr/include");
+     
+@@ -2088,11 +2090,11 @@ void global::printIncludeDir()
  }
- static void printArchDir()
+ void global::printArchDir()
  {
--    cout << gGlobal->gFaustRootDir << kPSEP << "share" << kPSEP << "faust" << endl;
-+    cout << gGlobal->gFaustRootDir << kPSEP << "lib" << kPSEP << "faust" << endl;
+-    cout << gFaustRootDir << kPSEP << "share" << kPSEP << "faust" << endl;
++    cout << gFaustRootDir << kPSEP << "lib" << kPSEP << "faust" << endl;
  }
- static void printDspDir()
+ void global::printDspDir()
  {
--    cout << gGlobal->gFaustRootDir << kPSEP << "share" << kPSEP << "faust" << endl;
-+    cout << gGlobal->gFaustRootDir << kPSEP << "lib" << kPSEP << "faust" << endl;
+-    cout << gFaustRootDir << kPSEP << "share" << kPSEP << "faust" << endl;
++    cout << gFaustRootDir << kPSEP << "lib" << kPSEP << "faust" << endl;
  }
- static void printPaths()
+ void global::printPaths()
  {
-@@ -1101,6 +1101,7 @@
-     gGlobal->gImportDirList.push_back(exepath::dirup(gGlobal->gFaustExeDir) + "/share/faust");
-     gGlobal->gImportDirList.push_back("/usr/local/share/faust");
-     gGlobal->gImportDirList.push_back("/usr/share/faust");
-+    gGlobal->gImportDirList.push_back("/usr/lib/faust");
- 
-     //-------------------------------------------------------------------------------------
-     // init gArchitectureDirList : a list of path where to search architectures files
-@@ -1119,6 +1120,7 @@
-     gGlobal->gArchitectureDirList.push_back(exepath::dirup(gGlobal->gFaustExeDir) + "/include");
-     gGlobal->gArchitectureDirList.push_back("/usr/local/share/faust");
-     gGlobal->gArchitectureDirList.push_back("/usr/share/faust");
-+    gGlobal->gArchitectureDirList.push_back("/usr/lib/faust");
-     gGlobal->gArchitectureDirList.push_back("/usr/local/include");
-     gGlobal->gArchitectureDirList.push_back("/usr/include");
- 
diff --git a/srcpkgs/faust/template b/srcpkgs/faust/template
index f74da4bedafce..8ac95644e5e88 100644
--- a/srcpkgs/faust/template
+++ b/srcpkgs/faust/template
@@ -1,6 +1,6 @@
 # Template file for 'faust'
 pkgname=faust
-version=2.54.9
+version=2.60.3
 revision=1
 build_style=gnu-makefile
 hostmakedepends="cmake pkg-config llvm which"
@@ -10,7 +10,7 @@ maintainer="mag <mag-one@autistici.org>"
 license="GPL-2.0-or-later"
 homepage="https://faust.grame.fr/"
 distfiles="https://github.com/grame-cncm/faust/releases/download/${version}/faust-${version}.tar.gz"
-checksum="29cfb88f87fd93a55620c18f58ec585a31b6f8106a9fd3528db8340048adef28"
+checksum="1088b31ad2a6175ff27807afc33c5929c33e97a7d09a1995e126bdda9940fc1e"
 
 # Android stuffs, used by the 'faust2android' script.
 nostrip_files="libsndfile.so libsndfile.a "

             reply	other threads:[~2023-09-10 15:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-10 15:38 DavideMaggio [this message]
2023-09-15 21:49 ` [PR PATCH] [Merged]: " Duncaen

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=gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-46004@inbox.vuxu.org \
    --to=davidemaggio@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).