Compare commits
11 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
471450bbd9 | ||
|
|
535b3154e5 | ||
|
|
55f700f508 | ||
|
|
5e52740315 | ||
|
|
eaea04aedd | ||
|
|
5b25b8ee88 | ||
|
|
5010e6577c | ||
|
|
b2b9dbe62c | ||
|
|
51a241389e | ||
|
|
0798f7f85b | ||
|
|
5a8409fd98 |
3 changed files with 36 additions and 3 deletions
25
27.patch
25
27.patch
|
|
@ -1,7 +1,7 @@
|
|||
From 87511a915c86ffc68536f03968b70deba82012b8 Mon Sep 17 00:00:00 2001
|
||||
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
||||
Date: Thu, 21 Dec 2023 15:22:26 -0500
|
||||
Subject: [PATCH] =?UTF-8?q?Drop=20AppData=20=E2=80=98content=5Frating?=
|
||||
Subject: [PATCH 1/2] =?UTF-8?q?Drop=20AppData=20=E2=80=98content=5Frating?=
|
||||
=?UTF-8?q?=E2=80=99=20to=20fix=20#26?=
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
|
|
@ -25,3 +25,26 @@ index 13cabd7..9cfcfde 100644
|
|||
<project_license>GPL-2.0+</project_license>
|
||||
<name>wavbreaker</name>
|
||||
<summary>GUI tool to split WAV, MP2 and MP3 files</summary>
|
||||
|
||||
From 2c259c77f664285ead17b5df27f74a562efc2c14 Mon Sep 17 00:00:00 2001
|
||||
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
||||
Date: Tue, 2 Jan 2024 19:37:48 -0500
|
||||
Subject: [PATCH 2/2] Supply a valid content rating (with no content
|
||||
attributes)
|
||||
|
||||
---
|
||||
data/net.sourceforge.wavbreaker.appdata.xml | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/data/net.sourceforge.wavbreaker.appdata.xml b/data/net.sourceforge.wavbreaker.appdata.xml
|
||||
index 9cfcfde..478463d 100644
|
||||
--- a/data/net.sourceforge.wavbreaker.appdata.xml
|
||||
+++ b/data/net.sourceforge.wavbreaker.appdata.xml
|
||||
@@ -3,6 +3,7 @@
|
||||
<component type="desktop-application">
|
||||
<id>net.sourceforge.wavbreaker</id>
|
||||
<metadata_license>FSFAP</metadata_license>
|
||||
+ <content_rating type="oars-1.1" />
|
||||
<project_license>GPL-2.0+</project_license>
|
||||
<name>wavbreaker</name>
|
||||
<summary>GUI tool to split WAV, MP2 and MP3 files</summary>
|
||||
|
|
|
|||
6
wavbreaker.rpmlintrc
Normal file
6
wavbreaker.rpmlintrc
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Not real spelling errors:
|
||||
addFilter(r" spelling-error \('([Uu]ncheck|wavmerge)',")
|
||||
# Use the latest GPLv2 license text
|
||||
# https://github.com/thp/wavbreaker/pull/32
|
||||
# We will not patch this until/unless upstream merges the PR.
|
||||
addFilter(r" incorrect-fsf-address ")
|
||||
|
|
@ -69,11 +69,15 @@ sample rate, 16-bit sample size, etc.).
|
|||
# %%py3_shebang_fix contrib/
|
||||
# Note also that this package neither BuildRequires nor Requires a Python
|
||||
# interpreter.
|
||||
find contrib/ -type f -name '*.py' -print -exec sed -r -i '1{/^#!/d}' '{}' '+'
|
||||
find contrib/ -type f -name '*.py' -print \
|
||||
-exec sed --regexp-extended --in-place '1{/^#!/d}' '{}' '+'
|
||||
|
||||
|
||||
%conf
|
||||
%meson -Dmp3=true -Dogg_vorbis=true
|
||||
|
||||
|
||||
%build
|
||||
%meson -Dmp3=true -Dogg_vorbis=true
|
||||
%meson_build
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue