Compare commits

...
Sign in to create a new pull request.

11 commits

Author SHA1 Message Date
Fedora Release Engineering
471450bbd9 Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 08:41:50 +00:00
Benjamin A. Beasley
535b3154e5 Use various long options 2026-05-25 06:29:09 +01:00
Fedora Release Engineering
55f700f508 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 20:07:38 +00:00
Fedora Release Engineering
5e52740315 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 20:17:53 +00:00
Benjamin A. Beasley
eaea04aedd Update .rpmlintrc file for current rpmlint 2025-05-11 08:07:21 -04:00
Fedora Release Engineering
5b25b8ee88 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 14:46:24 +00:00
Benjamin A. Beasley
5010e6577c Invoke %cmake in %conf rather than in %build 2024-11-03 06:52:41 -05:00
Fedora Release Engineering
b2b9dbe62c Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 09:08:32 +00:00
Benjamin A. Beasley
51a241389e Add an rpmlintrc file
[skip changelog]
2024-04-04 17:22:11 -04:00
Fedora Release Engineering
0798f7f85b Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 08:24:26 +00:00
Benjamin A. Beasley
5a8409fd98 Improved patch for content rating in AppData XML 2024-01-02 20:12:16 -05:00
3 changed files with 36 additions and 3 deletions

View file

@ -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
View 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 ")

View file

@ -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