[Pkg-voip-commits] r9011 - in /opal/trunk/debian: changelog clean patches/ patches/plugins_clean_target.patch patches/series rules
kilian at alioth.debian.org
kilian at alioth.debian.org
Tue Jun 21 14:14:48 UTC 2011
Author: kilian
Date: Tue Jun 21 14:14:48 2011
New Revision: 9011
URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=9011
Log:
Add debian/patches/plugins_clean_target.patch: Most of the plugins don't
have a clean target and thus don't allow rebuilds
Added:
opal/trunk/debian/patches/
opal/trunk/debian/patches/plugins_clean_target.patch
opal/trunk/debian/patches/series
Modified:
opal/trunk/debian/changelog
opal/trunk/debian/clean
opal/trunk/debian/rules
Modified: opal/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/opal/trunk/debian/changelog?rev=9011&op=diff
==============================================================================
--- opal/trunk/debian/changelog (original)
+++ opal/trunk/debian/changelog Tue Jun 21 14:14:48 2011
@@ -10,8 +10,10 @@
building them in debian/rules
* Add libspandsp-dev to Build-Deps to allow T.38 to use it
* Add debian/clean for all files that need to be purged before rebuild
-
- -- Kilian Krause <kilian at debian.org> Tue, 21 Jun 2011 15:22:13 +0200
+ * Add debian/patches/plugins_clean_target.patch: Most of the plugins don't
+ have a clean target and thus don't allow rebuilds
+
+ -- Kilian Krause <kilian at debian.org> Tue, 21 Jun 2011 15:57:11 +0200
opal (3.8.4~dfsg-1) experimental; urgency=low
Modified: opal/trunk/debian/clean
URL: http://svn.debian.org/wsvn/pkg-voip/opal/trunk/debian/clean?rev=9011&op=diff
==============================================================================
--- opal/trunk/debian/clean (original)
+++ opal/trunk/debian/clean Tue Jun 21 14:14:48 2011
@@ -1,1 +1,36 @@
a.out
+Makefile
+include/opal/buildopts.h
+opal.pc
+opal.spec
+opal_cfg.dxy
+opal_defs.mak
+plugins/Makefile
+plugins/audio/G.722.1/Makefile
+plugins/audio/G.722.2/Makefile
+plugins/audio/G722/Makefile
+plugins/audio/G726/Makefile
+plugins/audio/GSM0610/Makefile
+plugins/audio/IMA_ADPCM/Makefile
+plugins/audio/LPC_10/Makefile
+plugins/audio/SILK/Makefile
+plugins/audio/Speex/Makefile
+plugins/audio/Speex/libspeex/speex_config_types.h
+plugins/audio/celt/Makefile
+plugins/audio/gsm-amr/Makefile
+plugins/config.log
+plugins/config.status
+plugins/plugin-config.h
+plugins/plugin-inc.mak
+plugins/video/H.261-vic/Makefile
+plugins/video/THEORA/Makefile
+revision.h
+samples/c_api/Makefile
+samples/callgen/Makefile
+samples/codectest/Makefile
+samples/faxopal/Makefile
+samples/ivropal/Makefile
+samples/opalecho/Makefile
+samples/opalmcu/Makefile
+samples/testpresent/Makefile
+src/codec/speex/libspeex/speex_config_types.h
Added: opal/trunk/debian/patches/plugins_clean_target.patch
URL: http://svn.debian.org/wsvn/pkg-voip/opal/trunk/debian/patches/plugins_clean_target.patch?rev=9011&op=file
==============================================================================
--- opal/trunk/debian/patches/plugins_clean_target.patch (added)
+++ opal/trunk/debian/patches/plugins_clean_target.patch Tue Jun 21 14:14:48 2011
@@ -1,0 +1,68 @@
+Description: Add missing clean target to plugins to allow rebuild
+Author: Kilian Krause <kilian at debian.org>
+
+--- opal-3.10.1~dfsg.orig/samples/c_api/Makefile
++++ opal-3.10.1~dfsg/samples/c_api/Makefile
+@@ -71,4 +71,4 @@ $(OBJDIR)/$(PROG): $(OBJECTS)
+ depend:
+
+ clean:
+- rm $(OBJECTS) $(OBJDIR)/$(PROG)
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/testpresent/Makefile
++++ opal-3.10.1~dfsg/samples/testpresent/Makefile
+@@ -48,3 +48,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/opalmcu/Makefile
++++ opal-3.10.1~dfsg/samples/opalmcu/Makefile
+@@ -48,3 +48,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/faxopal/Makefile
++++ opal-3.10.1~dfsg/samples/faxopal/Makefile
+@@ -48,3 +48,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/opalecho/Makefile
++++ opal-3.10.1~dfsg/samples/opalecho/Makefile
+@@ -44,3 +44,6 @@ endif
+ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
++
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/callgen/Makefile
++++ opal-3.10.1~dfsg/samples/callgen/Makefile
+@@ -48,3 +48,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/ivropal/Makefile
++++ opal-3.10.1~dfsg/samples/ivropal/Makefile
+@@ -48,3 +48,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
+--- opal-3.10.1~dfsg.orig/samples/codectest/Makefile
++++ opal-3.10.1~dfsg/samples/codectest/Makefile
+@@ -50,3 +50,5 @@ ifdef OPALDIR
+ include $(OPALDIR)/opal_inc.mak
+ endif
+
++clean:
++ rm -f $(OBJECTS) $(OBJDIR)/$(PROG)
Added: opal/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/opal/trunk/debian/patches/series?rev=9011&op=file
==============================================================================
--- opal/trunk/debian/patches/series (added)
+++ opal/trunk/debian/patches/series Tue Jun 21 14:14:48 2011
@@ -1,0 +1,1 @@
+plugins_clean_target.patch
Modified: opal/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-voip/opal/trunk/debian/rules?rev=9011&op=diff
==============================================================================
--- opal/trunk/debian/rules (original)
+++ opal/trunk/debian/rules Tue Jun 21 14:14:48 2011
@@ -1,4 +1,5 @@
#!/usr/bin/make -f
+DH_VERBOSE := 1
DEBVERSION := $(shell head -n 1 debian/changelog \
| sed -e 's/^[^(]*(\([^)]*\)).*/\1/')
More information about the Pkg-voip-commits
mailing list