[linuxtv-dvb-apps] 07/30: Imported Debian patch 1.1.0-11

Tobias Grimm tiber-guest at alioth.debian.org
Tue Sep 3 07:51:56 UTC 2013


This is an automated email from the git hooks/post-receive script.

tiber-guest pushed a commit to branch master
in repository linuxtv-dvb-apps.

commit 2ade78e0b7545aa63792aa4b08f0f88eba0b0e3e
Author: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
Date:   Sat Apr 29 21:42:54 2006 +0200

    Imported Debian patch 1.1.0-11
---
 debian/changelog                            |   17 ++++++++
 debian/control                              |    4 +-
 debian/patches/00list                       |    1 +
 debian/patches/09_x_zap_flush_stdout.dpatch |   62 +++++++++++++++++++++++++++
 debian/watch                                |    2 +-
 5 files changed, 83 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f044485..b2b6b7d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,20 @@
+linuxtv-dvb-apps (1.1.0-11) unstable; urgency=low
+
+  * Thomas Schmidt <tschmidt at debian.org>
+    - Added 09_x_zap_flush_stdout.dpatch - make [stc]zap flush stdout
+      after writing status line (closes: #357126)
+    - Fixed spelling mistake in package description (closes: #363364)
+    - Fixed debian/watch
+
+ -- Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>  Sat, 29 Apr 2006 21:42:54 +0200
+
+linuxtv-dvb-apps (1.1.0-10) unstable; urgency=low
+
+  * Thomas Schmidt <tschmidt at debian.org>
+    - Depend on makedev | udev
+
+ -- Thomas Schmidt <tschmidt at debian.org>  Thu, 29 Dec 2005 14:33:17 +0100
+
 linuxtv-dvb-apps (1.1.0-9) unstable; urgency=low
 
   * Thomas Schmidt <tschmidt at debian.org>
diff --git a/debian/control b/debian/control
index ad81385..0a0b6ee 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Standards-Version: 3.6.2.1
 
 Package: dvb-utils
 Architecture: any
-Depends: ${shlibs:Depends}, makedev (>=2.3.1-66)
+Depends: ${shlibs:Depends}, makedev (>=2.3.1-66) | udev
 Provides: dvb-zapping
 Conflicts: dvb-zapping
 Replaces: dvb-zapping
@@ -17,7 +17,7 @@ Description: Viewer programs for DVB cards
  .
  av7110_loadkeys - tool to load keyfiles of ir-remotes
  evtest - find out events-keys to generate a keyfile for your remote
- femon  - monitor the singal-strength... of your card
+ femon  - monitor the signal-strength... of your card
  scan   - scan all transponders and generate a channels.conf
  czap   - simple zapping tool for the Linux DVB API (DVB-C-Cards)
  szap   - simple zapping tool for the Linux DVB API (DVB-S-Cards)
diff --git a/debian/patches/00list b/debian/patches/00list
index f0aa1d5..1b11212 100644
--- a/debian/patches/00list
+++ b/debian/patches/00list
@@ -6,3 +6,4 @@
 06_freeview_channel_numbers
 07_vdr_output
 08_debug_minor_fixes
+09_x_zap_flush_stdout
diff --git a/debian/patches/09_x_zap_flush_stdout.dpatch b/debian/patches/09_x_zap_flush_stdout.dpatch
new file mode 100644
index 0000000..1f5d5d1
--- /dev/null
+++ b/debian/patches/09_x_zap_flush_stdout.dpatch
@@ -0,0 +1,62 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+
+## 09_x_zap_flush_stdout.dpatch by Sebastian Schmidt <yath at yath.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Make [stc]zap flush stdout after writing status line
+
+ at DPATCH@
+diff -urNad linuxtv-dvb-apps-1.1.0/util/szap/czap.c /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/czap.c
+--- linuxtv-dvb-apps-1.1.0/util/szap/czap.c	2004-04-22 13:09:11.000000000 +0200
++++ /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/czap.c	2006-04-29 21:50:18.955710000 +0200
+@@ -243,9 +243,10 @@
+ 		if (status & FE_HAS_LOCK)
+ 			printf("FE_HAS_LOCK");
+ 
+-		usleep(1000000);
++        printf("\n");
++        fflush(stdout);
+ 
+-		printf("\n");
++		usleep(1000000);
+ 	} while (1);
+ 
+ 	return 0;
+diff -urNad linuxtv-dvb-apps-1.1.0/util/szap/femon.c /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/femon.c
+--- linuxtv-dvb-apps-1.1.0/util/szap/femon.c	2004-04-22 13:09:12.000000000 +0200
++++ /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/femon.c	2006-04-29 21:50:18.955710000 +0200
+@@ -81,6 +81,7 @@
+ 	 printf("FE_HAS_LOCK");
+ 
+       printf("\n");
++      fflush(stdout);
+       usleep(1000000);
+    } while (1);
+ 
+diff -urNad linuxtv-dvb-apps-1.1.0/util/szap/szap.c /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/szap.c
+--- linuxtv-dvb-apps-1.1.0/util/szap/szap.c	2004-04-22 13:09:12.000000000 +0200
++++ /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/szap.c	2006-04-29 21:50:18.959710250 +0200
+@@ -216,6 +216,7 @@
+       if (status & FE_HAS_LOCK)
+ 	 printf("FE_HAS_LOCK");
+       printf("\n");
++      fflush(stdout);
+ 
+       if (exit_after_tuning && ((status & FE_HAS_LOCK) || (++timeout >= 10)))
+          break;
+diff -urNad linuxtv-dvb-apps-1.1.0/util/szap/tzap.c /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/tzap.c
+--- linuxtv-dvb-apps-1.1.0/util/szap/tzap.c	2004-04-22 13:09:12.000000000 +0200
++++ /tmp/dpep.ENs8EE/linuxtv-dvb-apps-1.1.0/util/szap/tzap.c	2006-04-29 21:50:18.959710250 +0200
+@@ -362,9 +362,10 @@
+ 		if (status & FE_HAS_LOCK)
+ 			printf("FE_HAS_LOCK");
+ 
+-		usleep(1000000);
++        printf("\n");
++        fflush(stdout);
+ 
+-		printf("\n");
++		usleep(1000000);
+ 	} while (1);
+ 
+ 	return 0;
diff --git a/debian/watch b/debian/watch
index 61f88aa..aada4bb 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,2 +1,2 @@
 version=2
-http://www.linuxtv.org/download/ linuxtv-dvb-apps.*-([\d+\.]+|\d+)\.tar(\.gz|\.bz2) debian uupdate
+http://www.linuxtv.org/download/ linuxtv-dvb-apps.*-([\d+\.]+|\d+)\.tar\.bz2

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-vdr-dvb/linuxtv-dvb-apps.git



More information about the pkg-vdr-dvb-changes mailing list