[SCM] drc/master: Patches applied upstream.
mira-guest at users.alioth.debian.org
mira-guest at users.alioth.debian.org
Wed Oct 4 16:17:06 UTC 2017
The following commit has been merged in the master branch:
commit 3bc0a84fe17ff74dea01a072b3cecbe790384ffe
Author: Jaromír Mikeš <mira.mikes at seznam.cz>
Date: Wed Oct 4 18:10:50 2017 +0200
Patches applied upstream.
diff --git a/debian/patches/01-as-needed.patch b/debian/patches/01-as-needed.patch
deleted file mode 100644
index 0001047..0000000
--- a/debian/patches/01-as-needed.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Description: fix FTBFS with ld --as-needed
- Place libraries after source files in gcc invocations.
-Author: Ilya Barygin <randomaction at ubuntu.com>
-Forwarded: Denis Sbragion <d.sbragion at infotecna.it>
----
- source/makefile | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
---- drc.orig/source/makefile
-+++ drc/source/makefile
-@@ -73,13 +73,13 @@ BIN_TARGETS=drc lsconv glsweep
- ALL: drc glsweep lsconv
-
- drc: $(DRCSRC)
-- $(CC) $(CFLAGS) -lm -lstdc++ -o drc $(DRCSRC)
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o drc $(DRCSRC) -lm -lstdc++
-
- glsweep: $(GLSWEEPSRC)
-- $(CC) $(GLSCFLAGS) -lm -o glsweep $(GLSWEEPSRC)
-+ $(CC) $(LDFLAGS) $(GLSCFLAGS) -o glsweep $(GLSWEEPSRC) -lm
-
- lsconv: $(LSCONVSRC)
-- $(CC) $(CFLAGS) -lm -o lsconv $(LSCONVSRC)
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o lsconv $(LSCONVSRC) -lm
-
- clean:
- rm -f $(OBJS)
diff --git a/debian/patches/02-spelling-errors.patch b/debian/patches/02-spelling-errors.patch
deleted file mode 100644
index 7dc4dae..0000000
--- a/debian/patches/02-spelling-errors.patch
+++ /dev/null
@@ -1,328 +0,0 @@
-Description: Fix spelling errors.
-Author: Jaromír Mikeš <mira.mikes at seznam.cz>
-Forwarded: yes
-
----
- source/baselib.cpp | 14 +++++++-------
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
-Index: drc/source/baselib.cpp
-===================================================================
---- drc.orig/source/baselib.cpp
-+++ drc/source/baselib.cpp
-@@ -230,7 +230,7 @@ Boolean WriteSignal(const char * FName,c
- /* Apre il file di output */
- if ((IOF = fopen(FName,"wb")) == NULL)
- {
-- perror("\nUnable to open ouput file");
-+ perror("\nUnable to open output file");
- return False;
- }
-
-@@ -243,7 +243,7 @@ Boolean WriteSignal(const char * FName,c
- RWD = (DRCFileDouble) Src[I];
- if (fwrite((void *) &RWD,sizeof(DRCFileDouble),1,IOF) != 1)
- {
-- perror("\nError writing ouput file");
-+ perror("\nError writing output file");
- return False;
- }
- }
-@@ -255,7 +255,7 @@ Boolean WriteSignal(const char * FName,c
- RWF = (DRCFileFloat) Src[I];
- if (fwrite((void *) &RWF,sizeof(DRCFileFloat),1,IOF) != 1)
- {
-- perror("\nError writing ouput file");
-+ perror("\nError writing output file");
- return False;
- }
- }
-@@ -267,7 +267,7 @@ Boolean WriteSignal(const char * FName,c
- RWI = (DRCFileInt) floor(0.5 + Src[I]);
- if (fwrite((void *) &RWI,sizeof(DRCFileInt),1,IOF) != 1)
- {
-- perror("\nError writing ouput file");
-+ perror("\nError writing output file");
- return False;
- }
- }
-@@ -305,7 +305,7 @@ Boolean OverwriteSignal(const char * FNa
- RWD = (DRCFileDouble) Src[I];
- if (fwrite((void *) &RWD,sizeof(DRCFileDouble),1,IOF) != 1)
- {
-- perror("\nError writing ouput file.");
-+ perror("\nError writing output file.");
- return False;
- }
- }
-@@ -318,7 +318,7 @@ Boolean OverwriteSignal(const char * FNa
- RWF = (DRCFileFloat) Src[I];
- if (fwrite((void *) &RWF,sizeof(DRCFileFloat),1,IOF) != 1)
- {
-- perror("\nError writing ouput file.");
-+ perror("\nError writing output file.");
- return False;
- }
- }
-@@ -331,7 +331,7 @@ Boolean OverwriteSignal(const char * FNa
- RWI = (DRCFileInt) floor(0.5 + Src[I]);
- if (fwrite((void *) &RWI,sizeof(DRCFileInt),1,IOF) != 1)
- {
-- perror("\nError writing ouput file.");
-+ perror("\nError writing output file.");
- return False;
- }
- }
-Index: drc/source/drc.cpp
-===================================================================
---- drc.orig/source/drc.cpp
-+++ drc/source/drc.cpp
-@@ -21,13 +21,13 @@
-
- d.sbragion at infotecna.it
-
-- This program uses the FFT routines from Takuya Ooura and the GNU
-- Scientific Library (GSL). Many thanks to Takuya Ooura and the GSL
-+ This program uses the FFT routines from Takuya Ooura and the GNU
-+ Scientific Library (GSL). Many thanks to Takuya Ooura and the GSL
- developers for these efficient routines.
-
- ****************************************************************************/
-
--/* Main file */
-+/* Main file */
-
- /* Inclusioni */
- #include "drc.h"
-@@ -51,15 +51,15 @@
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
--#include <fenv.h>
-+#include <fenv.h>
-
- /* Versione corrente */
- #define DRCVersion "3.2.1"
--#define DRCCopyright "2002-2012"
--
--/* Memory leaks debugger */
--#ifdef DebugMLeaks
-- #include "debug_new.h"
-+#define DRCCopyright "2002-2012"
-+
-+/* Memory leaks debugger */
-+#ifdef DebugMLeaks
-+ #include "debug_new.h"
- #endif
-
- /* Header iniziale programma */
-@@ -97,7 +97,7 @@ void ShowDRCUsage(void)
- sputs("\nParameters:\n");
- sputs(" --help : show the full options list (long)");
- sputs(" Options: parameters overwriting options");
-- sputs(" DRCFile: name of DRC configration file\n");
-+ sputs(" DRCFile: name of DRC configuration file\n");
- sputs(" Refer to the manual and samples for options");
- sputs(" details and file format\n");
- }
-@@ -199,8 +199,8 @@ int main(int argc, char * argv[])
-
- /* I386 Debug only, enables all floating point exceptions traps */
- /* int em = 0x372;
-- __asm__ ("fldcw %0" : : "m" (em)); */
--
-+ __asm__ ("fldcw %0" : : "m" (em)); */
-+
- /* Messaggio iniziale */
- ShowDRCHeader();
-
-@@ -262,9 +262,9 @@ int main(int argc, char * argv[])
- if (CfgParse(DRCFile,CfgParmsDef,CfgSimple) <= 0)
- {
- /* Dealloca le informazioni parsing command line */
-- FreeCmdLine(OptData, CfgParmsDef);
-+ FreeCmdLine(OptData, CfgParmsDef);
- CfgFree(CfgParmsDef);
--
-+
- sputs(CfgGetLastErrorDsc());
- sputs("Configuration file parsing error.");
- return 1;
-@@ -280,7 +280,7 @@ int main(int argc, char * argv[])
- if (SetupDRCCfgBaseDir(&Cfg,CfgParmsDef,OptData) > 0)
- {
- /* Dealloca le informazioni parsing command line */
-- FreeCmdLine(OptData, CfgParmsDef);
-+ FreeCmdLine(OptData, CfgParmsDef);
- CfgFree(CfgParmsDef);
-
- sputs("Base configuration setup error.");
-@@ -347,7 +347,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if ((Cfg.BCInitWindow / 2 - Cfg.BCPreWindowLen) < PSStart)
-- sputs("!!Warning: input signal too short for correct signal prewindowing, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prewindowing, spurious spikes may be generated.");
-
- for (I = 0;I < Cfg.BCInitWindow / 2 - Cfg.BCPreWindowLen;I++)
- InSig[I] = 0;
-@@ -671,13 +671,13 @@ int main(int argc, char * argv[])
- OInSig[I] = MCOutSig[J];
- }
-
-- /* Calcola il valore RMS del segnale in ingresso */
-+ /* Calcola il valore RMS del segnale in ingresso */
- SRMSValue = GetRMSLevel(OInSig,MCOutSigLen);
- if (SRMSValue > ((DLReal) 0.0))
- printf("Input signal RMS level %f (%f dB).\n",(double) SRMSValue, (double) (20 * log10((double) SRMSValue)));
- else
- printf("Input signal RMS level %f (-Inf dB).\n",(double) SRMSValue);
-- fflush(stdout);
-+ fflush(stdout);
-
- /*********************************************************************************/
- /* Dip limiting preventivo */
-@@ -689,7 +689,7 @@ int main(int argc, char * argv[])
- switch (Cfg.BCDLType[0])
- {
- /* Fase lineare */
-- case 'L':
-+ case 'L':
- case 'P':
- sputs("Input signal linear phase dip limiting...");
- if (C1LPDipLimit(&MCOutSig[MCOutSigStart],MCOutSigLen,Cfg.BCDLMinGain,Cfg.BCDLStart,
-@@ -701,7 +701,7 @@ int main(int argc, char * argv[])
- break;
-
- /* Fase minima */
-- case 'M':
-+ case 'M':
- case 'W':
- sputs("Input signal minimum phase dip limiting...");
- if (C1HMPDipLimit(&MCOutSig[MCOutSigStart],MCOutSigLen,Cfg.BCDLMinGain,Cfg.BCDLStart,
-@@ -854,7 +854,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if (((Cfg.BCPreWindowLen == 0) && (WStart1 < PSStart)) || ((WStart1 + Cfg.MPLowerWindow) > PSEnd))
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- BWPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
- Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
-@@ -867,7 +867,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if ((WStart1 + Cfg.MPLowerWindow) > PSEnd)
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- BWPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
- Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
-@@ -880,7 +880,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if (((Cfg.BCPreWindowLen == 0) && (WStart1 < PSStart)) || ((WStart1 + Cfg.MPLowerWindow) > PSEnd))
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- SLPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
- Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
-@@ -893,7 +893,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if ((WStart1 + Cfg.MPLowerWindow) > PSEnd)
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- SLPreFilt(&MPSig[WStart1],Cfg.MPLowerWindow,Cfg.MPUpperWindow,
- Cfg.MPFilterLen,Cfg.MPBandSplit,Cfg.MPWindowExponent,
-@@ -927,7 +927,7 @@ int main(int argc, char * argv[])
- switch (Cfg.DLType[0])
- {
- /* Fase lineare */
-- case 'L':
-+ case 'L':
- case 'P':
- sputs("MP signal linear phase dip limiting...");
- if (C1LPDipLimit(&MPPFSig[WStart1],WLen1,Cfg.DLMinGain,Cfg.DLStart,
-@@ -939,7 +939,7 @@ int main(int argc, char * argv[])
- break;
-
- /* Fase minima */
-- case 'M':
-+ case 'M':
- case 'W':
- sputs("MP signal minimum phase dip limiting...");
- if (C1HMPDipLimit(&MPPFSig[WStart1],WLen1,Cfg.DLMinGain,Cfg.DLStart,
-@@ -1113,7 +1113,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if (((Cfg.BCPreWindowLen == 0) && (WStart2 < PSStart)) || ((WStart2 + Cfg.EPLowerWindow) > PSEnd))
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- BWPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
- Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
-@@ -1126,7 +1126,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if ((WStart2 + Cfg.EPLowerWindow) > PSEnd)
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- BWPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
- Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
-@@ -1139,7 +1139,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if (((Cfg.BCPreWindowLen == 0) && (WStart2 < PSStart)) || ((WStart2 + Cfg.EPLowerWindow) > PSEnd))
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- SLPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
- Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
-@@ -1152,7 +1152,7 @@ int main(int argc, char * argv[])
-
- /* Verifica che la finestratura sia corretta */
- if ((WStart2 + Cfg.EPLowerWindow) > PSEnd)
-- sputs("!!Warning: input signal too short for correct signal prefiltering, spurios spikes may be generated.");
-+ sputs("!!Warning: input signal too short for correct signal prefiltering, spurious spikes may be generated.");
-
- SLPreFilt(&EPSig[WStart2],Cfg.EPLowerWindow,Cfg.EPUpperWindow,
- Cfg.EPFilterLen,Cfg.EPBandSplit,Cfg.EPWindowExponent,
-@@ -1553,7 +1553,7 @@ int main(int argc, char * argv[])
- switch (Cfg.PTDLType[0])
- {
- /* Fase lineare */
-- case 'L':
-+ case 'L':
- case 'P':
- sputs("Target reference signal linear phase dip limiting...");
- if (C1LPDipLimit(&PTTConv[PTTRefLen],Cfg.PTReferenceWindow,Cfg.PTDLMinGain,Cfg.PTDLStart,
-@@ -1565,7 +1565,7 @@ int main(int argc, char * argv[])
- break;
-
- /* Fase minima */
-- case 'M':
-+ case 'M':
- case 'W':
- sputs("Target reference minimum phase dip limiting...");
- if (C1HMPDipLimit(&PTTConv[PTTRefLen],Cfg.PTReferenceWindow,Cfg.PTDLMinGain,Cfg.PTDLStart,
-@@ -1729,7 +1729,7 @@ int main(int argc, char * argv[])
- switch (Cfg.PLType[0])
- {
- /* Fase lineare */
-- case 'L':
-+ case 'L':
- case 'P':
- sputs("Linear phase peak limiting...");
- if (C1LPPeakLimit(&ISRevOut[WStart2],WLen2,Cfg.PLMaxGain,Cfg.PLStart,
-@@ -1741,7 +1741,7 @@ int main(int argc, char * argv[])
- break;
-
- /* Fase minima */
-- case 'M':
-+ case 'M':
- case 'W':
- sputs("Minimum phase peak limiting...");
- if (C1HMPPeakLimit(&ISRevOut[WStart2],WLen2,Cfg.PLMaxGain,Cfg.PLStart,
diff --git a/debian/patches/03-makefile.patch b/debian/patches/03-makefile.patch
deleted file mode 100644
index 1ca6f6d..0000000
--- a/debian/patches/03-makefile.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-Description: Set prefix properly and fix install commands.
- Removed processor specific cpp flags.
- Set /usr/share/doc as installation path of the documentation.
- Remove SSE flags to fix FTBFS on !x86 architectures.
-Author: Jaromír Mikeš <mira.mikes at seznam.cz>
- Alessio Treglia <alessio at debian.org>
-Forwarded: Denis Sbragion <d.sbragion at infotecna.it>
-
----
- source/makefile | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-Index: drc/source/makefile
-===================================================================
---- drc.orig/source/makefile
-+++ drc/source/makefile
-@@ -3,8 +3,10 @@
- # DRC version
- VERSION=3.2.1
-
-+DESTDIR=
-+
- # Where to install
--INSTALL_PREFIX=$(DESTDIR)/usr/local
-+INSTALL_PREFIX=$(DESTDIR)/usr
-
- # Compiler
- CC=g++
-@@ -21,7 +23,7 @@ CC=g++
-
- # Pentium 3 or greater optimizaztions settings with SSE support
- # Be careful: -mfpmath=sse sometimes causes accuracy problems
--CFLAGS=-march=pentium3 -O -s -mfancy-math-387 -msse -mfpmath=sse -mtune=pentium3 -I.
-+CFLAGS=-O2 -g -I.
-
- # Same as above, but tested on recent Mac OS X
- # Be careful: -mfpmath=sse sometimes causes accuracy problems
-@@ -65,7 +67,7 @@ CONFIG_TARGETS=config/*
- TARGET_TARGETS=target/*
- MIC_TARGETS=mic/*
- IMPULSE_TARGETS=../sample/rs.pcm
--DOC_TARGETS=readme.txt ../doc/text/drc.txt
-+DOC_TARGETS=readme.txt
- BIN_TARGETS=drc lsconv glsweep
-
- # Targets
-@@ -76,7 +78,7 @@ drc: $(DRCSRC)
- $(CC) $(LDFLAGS) $(CFLAGS) -o drc $(DRCSRC) -lm -lstdc++
-
- glsweep: $(GLSWEEPSRC)
-- $(CC) $(LDFLAGS) $(GLSCFLAGS) -o glsweep $(GLSWEEPSRC) -lm
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o glsweep $(GLSWEEPSRC) -lm
-
- lsconv: $(LSCONVSRC)
- $(CC) $(LDFLAGS) $(CFLAGS) -o lsconv $(LSCONVSRC) -lm
-@@ -85,15 +87,16 @@ clean:
- rm -f $(OBJS)
-
- install: $(CONFIG_TARGETS) $(TARGET_TARGETS) $(MIC_TARGETS) $(IMPULSE_TARGETS) $(DOC_TARGETS) $(BIN_TARGETS)
-+ install -d $(INSTALL_PREFIX)/bin
- install $(BIN_TARGETS) $(INSTALL_PREFIX)/bin
- install -d $(INSTALL_PREFIX)/share/drc/config/
-- install $(CONFIG_TARGETS) $(INSTALL_PREFIX)/share/drc/config/
-+ cp -r $(CONFIG_TARGETS) $(INSTALL_PREFIX)/share/drc/config/
- install -d $(INSTALL_PREFIX)/share/drc/target/
-- install $(TARGET_TARGETS) $(INSTALL_PREFIX)/share/drc/target/
-+ cp -r $(TARGET_TARGETS) $(INSTALL_PREFIX)/share/drc/target/
- install -d $(INSTALL_PREFIX)/share/drc/mic/
-- install $(MIC_TARGETS) $(INSTALL_PREFIX)/share/drc/mic/
-+ install -m 644 $(MIC_TARGETS) $(INSTALL_PREFIX)/share/drc/mic/
- install -d $(INSTALL_PREFIX)/share/drc/impulse/
-- install $(IMPULSE_TARGETS) $(INSTALL_PREFIX)/share/drc/impulse/
-- install -d $(INSTALL_PREFIX)/share/drc/filter/
-- install -d $(INSTALL_PREFIX)/share/doc/drc-$(VERSION)/
-- install $(DOC_TARGETS) $(INSTALL_PREFIX)/share/doc/drc-$(VERSION)/
-+ install -m 644 $(IMPULSE_TARGETS) $(INSTALL_PREFIX)/share/drc/impulse/
-+# install -d $(INSTALL_PREFIX)/share/drc/filter/
-+ install -d $(INSTALL_PREFIX)/share/doc/drc/
-+ install -m 644 $(DOC_TARGETS) $(INSTALL_PREFIX)/share/doc/drc/
diff --git a/debian/patches/04-cpp_flags.patch b/debian/patches/04-cpp_flags.patch
deleted file mode 100644
index 93554b9..0000000
--- a/debian/patches/04-cpp_flags.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-Description: Pass cppflags.
-Author: Jaromír Mikeš <mira.mikes at seznam.cz>
-Forwarded: Denis Sbragion <d.sbragion at infotecna.it>
-
-Index: drc/source/makefile
-===================================================================
---- drc.orig/source/makefile
-+++ drc/source/makefile
-@@ -75,13 +75,13 @@ BIN_TARGETS=drc lsconv glsweep
- ALL: drc glsweep lsconv
-
- drc: $(DRCSRC)
-- $(CC) $(LDFLAGS) $(CFLAGS) -o drc $(DRCSRC) -lm -lstdc++
-+ $(CC) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -o drc $(DRCSRC) -lm -lstdc++
-
- glsweep: $(GLSWEEPSRC)
-- $(CC) $(LDFLAGS) $(CFLAGS) -o glsweep $(GLSWEEPSRC) -lm
-+ $(CC) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -o glsweep $(GLSWEEPSRC) -lm
-
- lsconv: $(LSCONVSRC)
-- $(CC) $(LDFLAGS) $(CFLAGS) -o lsconv $(LSCONVSRC) -lm
-+ $(CC) $(LDFLAGS) $(CPPFLAGS) $(CFLAGS) -o lsconv $(LSCONVSRC) -lm
-
- clean:
- rm -f $(OBJS)
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index d3c20de..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,4 +0,0 @@
-01-as-needed.patch
-02-spelling-errors.patch
-03-makefile.patch
-04-cpp_flags.patch
--
drc packaging
More information about the pkg-multimedia-commits
mailing list