Github messages for voidlinux
 help / color / mirror / Atom feed
From: SolitudeSF <SolitudeSF@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] melonDS: update to 0.9.5
Date: Tue, 16 May 2023 16:04:50 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-43901@inbox.vuxu.org> (raw)

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

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

https://github.com/SolitudeSF/void-packages melonds
https://github.com/void-linux/void-packages/pull/43901

melonDS: update to 0.9.5
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, x86_64 glibc

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

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

From 4646746bcda83aeb8ba95252b8a23fe235c0da50 Mon Sep 17 00:00:00 2001
From: SolitudeSF <solitudesf@protonmail.com>
Date: Tue, 16 May 2023 17:03:46 +0300
Subject: [PATCH] melonDS: update to 0.9.5

---
 .../patches/align-test-case-i686.patch        | 28 -------------------
 srcpkgs/melonDS/patches/fix-gcc12.patch       | 19 -------------
 srcpkgs/melonDS/template                      |  8 +++---
 3 files changed, 4 insertions(+), 51 deletions(-)
 delete mode 100644 srcpkgs/melonDS/patches/align-test-case-i686.patch
 delete mode 100644 srcpkgs/melonDS/patches/fix-gcc12.patch

diff --git a/srcpkgs/melonDS/patches/align-test-case-i686.patch b/srcpkgs/melonDS/patches/align-test-case-i686.patch
deleted file mode 100644
index 1427d4ce1b02..000000000000
--- a/srcpkgs/melonDS/patches/align-test-case-i686.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://github.com/wwylele/teakra/commit/5862fd000353b8086b5be799c0a7f3ee1b2fe971.patch
-
-From 5862fd000353b8086b5be799c0a7f3ee1b2fe971 Mon Sep 17 00:00:00 2001
-From: Jan Beich <jbeich@FreeBSD.org>
-Date: Mon, 14 Jan 2019 22:21:41 +0000
-Subject: [PATCH] Align TestCase on 32-bit x86
-
-src/test.h:37:1: fatal error: static_assert failed
-static_assert(sizeof(TestCase) == 4312);
-^             ~~~~~~~~~~~~~~~~~~~~~~~~
----
- src/test.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/teakra/src/test.h b/src/teakra/src/test.h
-index e8c8742..869f8d2 100644
---- a/src/teakra/src/test.h
-+++ b/src/teakra/src/test.h
-@@ -29,7 +29,7 @@ struct State {
- 
- static_assert(std::is_trivially_copyable_v<State>);
- 
--struct TestCase {
-+struct alignas(8) TestCase {
-     State before, after;
-     u16 opcode, expand;
- };
-
diff --git a/srcpkgs/melonDS/patches/fix-gcc12.patch b/srcpkgs/melonDS/patches/fix-gcc12.patch
deleted file mode 100644
index 46daaa51e91d..000000000000
--- a/srcpkgs/melonDS/patches/fix-gcc12.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From 55355e1e7c82e9bccda9cfb72b65c64c6d8b208c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Trung=20L=C3=AA?= <trung.le@ruby-journal.com>
-Date: Thu, 24 Feb 2022 10:42:35 +1100
-Subject: [PATCH] Add utility lib to fix missing std::exchange error
-
----
- src/interpreter.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/interpreter.h b/src/interpreter.h
-index 72724ee..aac4916 100644
---- a/src/teakra/src/interpreter.h
-+++ b/src/teakra/src/interpreter.h
-@@ -1,4 +1,5 @@
- #pragma once
-+#include <utility>
- #include <atomic>
- #include <stdexcept>
- #include <tuple>
diff --git a/srcpkgs/melonDS/template b/srcpkgs/melonDS/template
index 9594c3b3294b..11da3e44906d 100644
--- a/srcpkgs/melonDS/template
+++ b/srcpkgs/melonDS/template
@@ -1,14 +1,14 @@
 # Template file for 'melonDS'
 pkgname=melonDS
-version=0.9.4
+version=0.9.5
 revision=1
 build_style=cmake
-hostmakedepends="pkg-config qt5-host-tools qt5-qmake"
+hostmakedepends="pkg-config qt5-host-tools qt5-qmake extra-cmake-modules"
 makedepends="qt5-devel libslirp-devel SDL2-devel libepoxy-devel
- libarchive-devel"
+ libarchive-devel qt5-multimedia-devel"
 short_desc="Fast and accurate Nintendo DS emulator"
 maintainer="Francesco Circhetta <francesco.circhetta@gmail.com>"
 license="GPL-3.0-or-later"
 homepage="http://melonds.kuribo64.net/"
 distfiles="https://github.com/Arisotura/melonDS/archive/${version}.tar.gz"
-checksum=8022c8798a723f8ffae6ffdad2e7637cf9046e88f86b55b5f9ad3fa3b2e6d398
+checksum=52c6b99340b8bba8c52b11a2242591f05e838c34ddd9ec20dcf1a6039405434a

             reply	other threads:[~2023-05-16 14:04 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-16 14:04 SolitudeSF [this message]
2023-05-16 14:17 ` [PR PATCH] [Updated] " SolitudeSF
2023-05-17  4:45 ` [PR PATCH] [Merged]: " classabbyamp

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-43901@inbox.vuxu.org \
    --to=solitudesf@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).