Compare commits
29 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4158c2b5b5 | ||
|
|
66d9e28d43 | ||
|
|
946e9d9bf1 | ||
|
|
4f0af48fe5 | ||
|
|
c71e68d0ff | ||
|
|
354edd7f8a | ||
|
|
939c6bfa16 | ||
|
|
44e625fbf9 | ||
|
|
a15e83cda2 | ||
|
|
f6d0b69717 | ||
|
|
c8a450c19d | ||
|
|
548d8e3e28 | ||
|
|
8b0b92e368 | ||
|
|
d969bfcad3 | ||
|
|
bce909b7b5 | ||
|
|
059b29fb24 | ||
|
|
e7d8f5ee42 | ||
|
|
a5cef2aae4 | ||
|
|
ecf1cf6d05 | ||
|
|
f3e811d41e | ||
|
|
566f919556 | ||
|
|
35ab40e667 | ||
|
|
a292755590 | ||
|
|
e121611411 | ||
|
|
b1d389e383 | ||
|
|
682d7b108d | ||
| d77e0ecbea | |||
|
|
0b25500288 | ||
|
|
c14d2b3a60 |
4 changed files with 43 additions and 91 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
|||
vorbisgain-0.36.zip
|
||||
/vorbisgain-0.37.tar.gz
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
3c9df5028fa395aa98fdf0f58a5187b0 vorbisgain-0.36.zip
|
||||
SHA512 (vorbisgain-0.37.tar.gz) = 67181834e1a0d7c6e1ccd984e2d30ebf1dcdff84caa77f75e5e771de8414904810e966a43852b7184e075d2428fd8b431124835efc370ce6504b8b2756746e04
|
||||
|
|
|
|||
24
vorbisgain-c99.patch
Normal file
24
vorbisgain-c99.patch
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
Add missing include files to avoid implicit function declarations.
|
||||
|
||||
diff -ur vorbisgain-0.36.orig/configure vorbisgain-0.36/configure
|
||||
--- vorbisgain-0.36.orig/configure 2005-02-06 18:41:37.000000000 +0100
|
||||
+++ vorbisgain-0.36/configure 2019-09-09 15:58:47.721500962 +0200
|
||||
@@ -3894,6 +3894,7 @@
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
#include <ctype.h>
|
||||
+#include <stdlib.h>
|
||||
#if ((' ' & 0x0FF) == 0x020)
|
||||
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
||||
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
||||
diff -ur vorbisgain-0.36.orig/misc.c vorbisgain-0.36/misc.c
|
||||
--- vorbisgain-0.36.orig/misc.c 2019-09-09 12:19:42.805189786 +0200
|
||||
+++ vorbisgain-0.36/misc.c 2019-09-09 12:59:20.848918603 +0200
|
||||
@@ -23,6 +23,7 @@
|
||||
#else /* WIN32 */
|
||||
#include <errno.h>
|
||||
#include <ctype.h>
|
||||
+#include <unistd.h>
|
||||
|
||||
#ifndef DISABLE_WINSIZE
|
||||
|
||||
107
vorbisgain.spec
107
vorbisgain.spec
|
|
@ -1,17 +1,20 @@
|
|||
Name: vorbisgain
|
||||
Version: 0.36
|
||||
Release: 21%{?dist}
|
||||
Version: 0.37
|
||||
Release: %autorelease
|
||||
Summary: Adds tags to Ogg Vorbis files to adjust the volume
|
||||
|
||||
Group: Applications/Multimedia
|
||||
License: LGPLv2
|
||||
URL: http://sjeng.org/vorbisgain.html
|
||||
Source0: http://sjeng.org/ftp/vorbis/%{name}-%{version}.zip
|
||||
Patch0: %{name}-spelling.patch
|
||||
# Automatically converted from old format: LGPLv2 - review is highly recommended.
|
||||
License: LicenseRef-Callaway-LGPLv2
|
||||
URL: https://sjeng.org/vorbisgain.html
|
||||
Source0: https://sjeng.org/ftp/vorbis/%{name}-%{version}.tar.gz
|
||||
Patch0: vorbisgain-spelling.patch
|
||||
Patch1: 001-fprintf_fix.patch
|
||||
Patch2: vorbisgain-c99.patch
|
||||
|
||||
BuildRequires: libvorbis-devel
|
||||
BuildRequires: libogg-devel
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libvorbis-devel
|
||||
BuildRequires: libogg-devel
|
||||
|
||||
|
||||
%description
|
||||
|
|
@ -21,23 +24,20 @@ volume of an Ogg Vorbis file to a predefined standardized loudness.
|
|||
It needs player support to work. Non-supporting players will play back
|
||||
the files without problems, but you'll miss out on the benefits.
|
||||
Nowadays most good players such as ogg123, xmms and mplayer are already
|
||||
compatible.
|
||||
compatible.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1 -b .spelling
|
||||
%patch1 -p1 -b .fprintf
|
||||
%autosetup
|
||||
|
||||
|
||||
%build
|
||||
chmod 755 configure
|
||||
%configure --enable-recursive
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
%make_install
|
||||
|
||||
|
||||
%files
|
||||
|
|
@ -47,77 +47,4 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.36-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Oct 31 2013 Brian Pepple <bpepple@fedoraproject.org> - 0.36-13
|
||||
- Add patch to fix build failure. (#1025254)
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon May 13 2013 Brian Pepple <bpepple@fedoraproject.org> - 0.36-11
|
||||
- Remove some old depreciated cruft from the spec file.
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Jan 09 2012 Brian Pepple <bpepple@fedoraproject.org> - 0.36-8
|
||||
- Rebuild for new gcc.
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Oct 20 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.36-6
|
||||
- Drop buildroot & clean section since they are no longer necessary.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.36-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Fri Feb 8 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.36-3
|
||||
- Rebuild for gcc-4.3.
|
||||
|
||||
* Tue Aug 21 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.36-2
|
||||
- Rebuild.
|
||||
- Update license tag.
|
||||
|
||||
* Fri Oct 13 2006 Brian Pepple <bpepple@fedoraproject.org> - 0.36-1
|
||||
- Update to 0.36.
|
||||
- Add patch to fix spelling errors in manpage.
|
||||
|
||||
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.34-3
|
||||
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
||||
|
||||
* Tue Sep 19 2006 Brian Pepple <bpepple@fedoraproject.org> - 0.34-2
|
||||
- Rebuild for FC6.
|
||||
- Minor formatting changes.
|
||||
|
||||
* Sat May 13 2006 Noa Resare <noa@resare.com> 0.34-1
|
||||
- Initial spec
|
||||
%autochangelog
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue