[SCM] vdr-plugin-director packaging repository branch, master, updated. debian/0.2.8-21-2-gef62750

etobi git at e-tobi.net
Sat Jun 2 18:45:48 UTC 2012


The following commit has been merged in the master branch:
commit 670ede08c4b1ce880778e7e2da1a44568f9be190
Author: etobi <git at e-tobi.net>
Date:   Sat Jun 2 20:40:32 2012 +0200

    Source format 3.0 (quilt)
    
    * Source format 3.0 (quilt)
    * Switched to debhelper 7 and dropped cdbs
    * Build-depend on vdr-dev (>= 1.7.21)

diff --git a/debian/README.source b/debian/README.source
deleted file mode 100644
index 54d6fec..0000000
--- a/debian/README.source
+++ /dev/null
@@ -1,7 +0,0 @@
-This package uses the dpatch system to save and apply patches to the
-upstream source code of the software that is packaged. For details
-about how to use dpatch read
-
-   /usr/share/doc/dpatch/README.source.gz
-
-from the dpatch package.
diff --git a/debian/changelog b/debian/changelog
index 7def7ad..9966fdc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+vdr-plugin-director (0.2.8-22) UNRELEASED; urgency=low
+
+  * Source format 3.0 (quilt)
+  * Switched to debhelper 7 and dropped cdbs
+  * Build-depend on vdr-dev (>= 1.7.21)
+
+ -- Tobias Grimm <etobi at debian.org>  Sat, 02 Jun 2012 20:39:56 +0200
+
 vdr-plugin-director (0.2.8-21) experimental; urgency=low
 
   * Removed non-standard shebang line from debian/rules
diff --git a/debian/compat b/debian/compat
index 7ed6ff8..7f8f011 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-5
+7
diff --git a/debian/control b/debian/control
index 60fa5e7..71da2b9 100644
--- a/debian/control
+++ b/debian/control
@@ -4,8 +4,8 @@ Priority: extra
 Maintainer: Thomas Günther <tom at toms-cafe.de>
 Origin: ctvdr
 Bugs: mailto:pkg-vdr-dvb-devel at lists.alioth.debian.org
-Build-Depends: debhelper (>= 5), cdbs, vdr-dev (>= 1.6.0-5), dpatch
-Standards-Version: 3.8.3
+Build-Depends: debhelper (>= 7.0.50~), vdr-dev (>= 1.7.27)
+Standards-Version: 3.9.3
 
 Package: vdr-plugin-director
 Architecture: any
diff --git a/debian/install b/debian/install
index e7b6950..5bdf93b 100644
--- a/debian/install
+++ b/debian/install
@@ -1 +1,2 @@
 libvdr-director.so.*    usr/lib/vdr/plugins/
+locale                  usr/share/
diff --git a/debian/patches/00list b/debian/patches/00list
deleted file mode 100644
index 4097d09..0000000
--- a/debian/patches/00list
+++ /dev/null
@@ -1,3 +0,0 @@
-01_Makefile-fPIC-fix
-
-90_director-0.2.8-1.5.3
diff --git a/debian/patches/01_Makefile-fPIC-fix.dpatch b/debian/patches/01_Makefile-fPIC-fix.patch
similarity index 100%
rename from debian/patches/01_Makefile-fPIC-fix.dpatch
rename to debian/patches/01_Makefile-fPIC-fix.patch
diff --git a/debian/patches/90_director-0.2.8-1.5.3.dpatch b/debian/patches/90_director-0.2.8-1.5.3.patch
similarity index 100%
rename from debian/patches/90_director-0.2.8-1.5.3.dpatch
rename to debian/patches/90_director-0.2.8-1.5.3.patch
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..3c18195
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,4 @@
+01_Makefile-fPIC-fix.patch
+
+90_director-0.2.8-1.5.3.patch
+vdr-1.7.27-i18n.patch
diff --git a/debian/patches/vdr-1.7.27-i18n.patch b/debian/patches/vdr-1.7.27-i18n.patch
new file mode 100644
index 0000000..d691fad
--- /dev/null
+++ b/debian/patches/vdr-1.7.27-i18n.patch
@@ -0,0 +1,1170 @@
+Index: vdr-plugin-director/Makefile
+===================================================================
+--- vdr-plugin-director.orig/Makefile	2012-06-02 20:43:17.000000000 +0200
++++ vdr-plugin-director/Makefile	2012-06-02 20:43:17.000000000 +0200
+@@ -50,7 +50,7 @@
+ 
+ ### The object files (add further files here):
+ 
+-OBJS = $(PLUGIN).o directorosd.o i18n.o
++OBJS = $(PLUGIN).o directorosd.o
+ 
+ ### Implicit rules:
+ 
+@@ -66,9 +66,34 @@
+ 
+ -include $(DEPFILE)
+ 
++### Internationalization (I18N):
++
++PODIR     = po
++LOCALEDIR = $(VDRDIR)/locale
++I18Npo    = $(wildcard $(PODIR)/*.po)
++I18Nmsgs  = $(addprefix $(LOCALEDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
++I18Npot   = $(PODIR)/$(PLUGIN).pot
++
++%.mo: %.po
++	msgfmt -c -o $@ $<
++
++$(I18Npot): $(wildcard *.c)
++	xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<tobias.grimm at e-tobi.net>' -o $@ $^
++
++%.po: $(I18Npot)
++	msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
++	@touch $@
++
++$(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
++	@mkdir -p $(dir $@)
++	cp $< $@
++
++.PHONY: i18n
++i18n: $(I18Nmsgs)
++
+ ### Targets:
+ 
+-all: libvdr-$(PLUGIN).so
++all: libvdr-$(PLUGIN).so i18n
+ 
+ libvdr-$(PLUGIN).so: $(OBJS)
+ 	$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
+@@ -83,4 +108,5 @@
+ 	@echo Distribution package created as $(PACKAGE).tgz
+ 
+ clean:
++	@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
+ 	@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
+Index: vdr-plugin-director/director.c
+===================================================================
+--- vdr-plugin-director.orig/director.c	2012-06-02 20:42:44.000000000 +0200
++++ vdr-plugin-director/director.c	2012-06-02 20:43:17.000000000 +0200
+@@ -6,7 +6,7 @@
+  * $Id$
+  */
+ 
+-#include "i18n.h"
++#include <vdr/i18n.h>
+ #include "director.h"
+ #include "directorosd.h"
+ 
+@@ -56,7 +56,6 @@
+ bool cPluginDirector::Start(void)
+ {
+   // Start any background activities the plugin shall perform.
+-  RegisterI18n(Phrases);
+   if(autostart == 1)
+   	directorStatus = new cDirectorStatus(this);
+   // Default values for setup
+Index: vdr-plugin-director/director.h
+===================================================================
+--- vdr-plugin-director.orig/director.h	2012-06-02 20:42:44.000000000 +0200
++++ vdr-plugin-director/director.h	2012-06-02 20:43:17.000000000 +0200
+@@ -6,8 +6,8 @@
+ #include <vdr/remote.h>
+ 
+ static const char *VERSION        = "0.2.8";
+-static const char *DESCRIPTION    = "plugin to use the premiere multifeed option";
+-static const char *MAINMENUENTRY  = "Director";
++static const char *DESCRIPTION    = trNOOP("plugin to use the premiere multifeed option");
++static const char *MAINMENUENTRY  = trNOOP("Director");
+ int hide = 0;
+ int portalmode = 1;
+ int swapKeys = 0;
+Index: vdr-plugin-director/i18n.c
+===================================================================
+--- vdr-plugin-director.orig/i18n.c	2012-06-02 20:42:44.000000000 +0200
++++ /dev/null	1970-01-01 00:00:00.000000000 +0000
+@@ -1,132 +0,0 @@
+- /*
+- * autotimer.c: A plugin for the Video Disk Recorder
+- *
+- * See the README file for copyright information and how to reach the author.
+- *
+- * $Id: i18n.c Exp $
+- */
+-
+-#include "i18n.h"
+-
+-const tI18nPhrase Phrases[] = {
+-  { "Hide main menu entry",
+-    "Hauptmenüeintrag verstecken",
+-    "",// TODO
+-    "Nascondi voce nel menù principale",// Italiano
+-    "",// TODO
+-    "",// TODO
+-    "Invisible dans le menu principal",
+-    "",// TODO
+-    "Piilota valinta päävalikosta",
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO 
+-#if VDRVERSNUM && VDRVERSNUM >= 10313
+-    "", // Eesti
+-#if VDRVERSNUM >= 10316
+-    "", // Dansk
+-#endif
+-#endif
+-  },
+-  { "Swap up and down",
+-    "Tasten auf und ab vertauschen",
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-#if VDRVERSNUM && VDRVERSNUM >= 10313
+-    "", // Eesti
+-#if VDRVERSNUM >= 10316
+-    "", // Dansk
+-#endif
+-#endif
+-  },
+-  { "Portal Mode",
+-    "Portal Mode",
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-#if VDRVERSNUM && VDRVERSNUM >= 10313
+-    "", // Eesti
+-#if VDRVERSNUM >= 10316
+-    "", // Dansk
+-#endif
+-#endif
+-  },
+- { "Display info on channel change",
+-    "Kanalinfo beim umschalten anzeigen",
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-#if VDRVERSNUM && VDRVERSNUM >= 10313
+-    "", // Eesti
+-#if VDRVERSNUM >= 10316
+-    "", // Dansk
+-#endif
+-#endif
+-  },
+-{ "Start the plugin automatically",
+-    "Das Plugin automatisch starten",
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-    "",// TODO
+-#if VDRVERSNUM && VDRVERSNUM >= 10313
+-    "", // Eesti
+-#if VDRVERSNUM >= 10316
+-    "", // Dansk
+-#endif
+-#endif
+-  },
+-  { NULL }
+-  };
+Index: vdr-plugin-director/i18n.h
+===================================================================
+--- vdr-plugin-director.orig/i18n.h	2012-06-02 20:42:44.000000000 +0200
++++ /dev/null	1970-01-01 00:00:00.000000000 +0000
+@@ -1,16 +0,0 @@
+-/*
+- * autotimer.c: A plugin for the Video Disk Recorder
+- *
+- * See the README file for copyright information and how to reach the author.
+- *
+- * $Id: i18n.h 1.0 Exp $
+- */
+-
+-#ifndef _I18N__H
+-#define _I18N__H
+-
+-#include <vdr/i18n.h>
+-
+-extern const tI18nPhrase Phrases[];
+-
+-#endif //_I18N__H
+Index: vdr-plugin-director/po/ca_ES.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/ca_ES.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,40 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Marc Rovira Vall <tm05462 at salleURL.edu>, 2003
++# Ramon Roca <ramon.roca at xcombo.com>, 2003
++# Jordi Vilà <jvila at tinet.org>, 2003
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Jordi Vilà <jvila at tinet.org>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/cs_CZ.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/cs_CZ.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Vladimír Bárta <vladimir.barta at k2atmitec.cz>, 2006
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Vladimír Bárta <vladimir.barta at k2atmitec.cz>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/da_DK.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/da_DK.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Mogens Elneff <mogens at elneff.dk>, 2004
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Mogens Elneff <mogens at elneff.dk>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/de_DE.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/de_DE.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Klaus Schmidinger <kls at tvdr.de>, 2000
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Klaus Schmidinger <kls at tvdr.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr "Hauptmenüeintrag verstecken"
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr "Tasten auf und ab vertauschen"
++
++msgid "Portal Mode"
++msgstr "Portal Mode"
++
++msgid "Display info on channel change"
++msgstr "Kanalinfo beim umschalten anzeigen"
++
++msgid "Start the plugin automatically"
++msgstr "Das Plugin automatisch starten"
+Index: vdr-plugin-director/po/el_GR.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/el_GR.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Dimitrios Dimitrakos <mail at dimitrios.de>, 2002
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Dimitrios Dimitrakos <mail at dimitrios.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-7\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/es_ES.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/es_ES.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Ruben Nunez Francisco <ruben.nunez at tang-it.com>, 2002
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Ruben Nunez Francisco <ruben.nunez at tang-it.com>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/et_EE.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/et_EE.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Arthur Konovalov <kasjas at hot.ee>, 2004
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Arthur Konovalov <kasjas at hot.ee>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-13\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/fi_FI.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/fi_FI.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,41 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Hannu Savolainen <hannu at opensound.com>, 2002
++# Jaakko Hyvätti <jaakko at hyvatti.iki.fi>, 2002
++# Niko Tarnanen <niko.tarnanen at hut.fi>, 2003
++# Rolf Ahrenberg <rahrenbe at cc.hut.fi>, 2003
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Rolf Ahrenberg <rahrenbe at cc.hut.fi>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr "Piilota valinta päävalikosta"
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/fr_FR.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/fr_FR.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,41 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Jean-Claude Repetto <jc at repetto.org>, 2001
++# Olivier Jacques <jacquesolivier at hotmail.com>, 2003
++# Gregoire Favre <greg at magma.unil.ch>, 2003
++# Nicolas Huillard <nhuillard at e-dition.fr>, 2005
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Nicolas Huillard <nhuillard at e-dition.fr>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr "Invisible dans le menu principal"
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/hr_HR.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/hr_HR.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Drazen Dupor <drazen.dupor at dupor.com>, 2004
++# Dino Ravnic <dino.ravnic at fer.hr>, 2004
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Drazen Dupor <drazen.dupor at dupor.com>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/hu_HU.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/hu_HU.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Istvan Koenigsberger <istvnko at hotmail.com>, 2002
++# Guido Josten <guido.josten at t-online.de>, 2002
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Istvan Koenigsberger <istvnko at hotmail.com>, Guido Josten <guido.josten at t-online.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/it_IT.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/it_IT.po	2012-06-02 20:43:24.000000000 +0200
+@@ -0,0 +1,40 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Alberto Carraro <bertocar at tin.it>, 2001
++# Antonio Ospite <ospite at studenti.unina.it>, 2003
++# Sean Carlos <seanc at libero.it>, 2005
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Sean Carlos <seanc at libero.it>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr "Nascondi voce nel menù principale"
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/nl_NL.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/nl_NL.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,40 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Arnold Niessen <niessen at iae.nl> <arnold.niessen at philips.com>, 2001
++# Hans Dingemans <hans.dingemans at tacticalops.nl>, 2003
++# Maarten Wisse <Maarten.Wisse at urz.uni-hd.de>, 2005
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Maarten Wisse <Maarten.Wisse at urz.uni-hd.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-15\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/nn_NO.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/nn_NO.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Jørgen Tvedt <pjtvedt at online.no>, 2001
++# Truls Slevigen <truls at slevigen.no>, 2002
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Truls Slevigen <truls at slevigen.no>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/pl_PL.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/pl_PL.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Michael Rakowski <mrak at gmx.de>, 2002
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Michael Rakowski <mrak at gmx.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/pt_PT.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/pt_PT.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Paulo Lopes <pmml at netvita.pt>, 2001
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Paulo Lopes <pmml at netvita.pt>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/ro_RO.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/ro_RO.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Paul Lacatus <paul at campina.iiruc.ro>, 2002
++# Lucian Muresan <lucianm at users.sourceforge.net>, 2004
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Lucian Muresan <lucianm at users.sourceforge.net>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/ru_RU.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/ru_RU.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Vyacheslav Dikonov <sdiconov at mail.ru>, 2004
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Vyacheslav Dikonov <sdiconov at mail.ru>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-5\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/sl_SI.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/sl_SI.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Miha Setina <mihasetina at softhome.net>, 2000
++# Matjaz Thaler <matjaz.thaler at guest.arnes.si>, 2003
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Matjaz Thaler <matjaz.thaler at guest.arnes.si>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-2\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/sv_SE.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/sv_SE.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,39 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Tomas Prybil <tomas at prybil.se>, 2002
++# Jan Ekholm <chakie at infa.abo.fi>, 2003
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Tomas Prybil <tomas at prybil.se>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-1\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
+Index: vdr-plugin-director/po/tr_TR.po
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ vdr-plugin-director/po/tr_TR.po	2012-06-02 20:43:25.000000000 +0200
+@@ -0,0 +1,38 @@
++# VDR plugin language source file.
++# Copyright (C) 2007 Klaus Schmidinger <kls at tvdr.de>
++# This file is distributed under the same license as the VDR package.
++# Oktay Yolgeçen <oktay_73 at yahoo.de>, 2007
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: VDR 1.5.7\n"
++"Report-Msgid-Bugs-To: <tobias.grimm at e-tobi.net>\n"
++"POT-Creation-Date: 2012-06-02 20:43+0200\n"
++"PO-Revision-Date: 2012-06-02 20:35+0200\n"
++"Last-Translator: Oktay Yolgeçen <oktay_73 at yahoo.de>\n"
++"Language-Team: <vdr at linuxtv.org>\n"
++"Language: \n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=ISO-8859-9\n"
++"Content-Transfer-Encoding: 8bit\n"
++
++msgid "Hide main menu entry"
++msgstr ""
++
++msgid "no"
++msgstr ""
++
++msgid "yes"
++msgstr ""
++
++msgid "Swap up and down"
++msgstr ""
++
++msgid "Portal Mode"
++msgstr ""
++
++msgid "Display info on channel change"
++msgstr ""
++
++msgid "Start the plugin automatically"
++msgstr ""
diff --git a/debian/rules b/debian/rules
index b81598f..9f487b6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,19 +1,20 @@
 #!/usr/bin/make -f
 
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/dpatch.mk
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
 
-DEB_INSTALL_CHANGELOGS_ALL = HISTORY
+MAKE_OPTIONS = VDRDIR=/usr/include/vdr LIBDIR=. LOCALEDIR=locale
 
-MAKE_OPTIONS = DVBDIR=/usr VDRDIR=/usr/include/vdr LIBDIR=. \
-               LOCALEDIR=debian/tmp/usr/share/locale
+%:
+	dh $@
 
-common-build-arch::
-	$(MAKE) all $(MAKE_OPTIONS)
+override_dh_auto_build:
+	dh_auto_build -- all $(MAKE_OPTIONS)
 
-cleanbuilddir::
+override_dh_auto_clean:
 	$(MAKE) -o .dependencies clean $(MAKE_OPTIONS)
-	rm -f libvdr-*.so.*
+	rm -rf locale libvdr-*.so.*
 
-common-binary-predeb-arch::
+override_dh_gencontrol:
 	sh /usr/share/vdr-dev/dependencies.sh
+	dh_gencontrol
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

-- 
vdr-plugin-director packaging repository



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