r4874 - in /vdr/vdr-plugin-rssreader/trunk/debian: changelog control patches/ patches/00list patches/90_rssreader-1.0.1-1.5.3.dpatch rules

tom-guest at users.alioth.debian.org tom-guest at users.alioth.debian.org
Wed Jun 27 23:47:04 UTC 2007


Author: tom-guest
Date: Wed Jun 27 23:47:03 2007
New Revision: 4874

URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=4874
Log:
Release for vdrdevel 1.5.5

Added:
    vdr/vdr-plugin-rssreader/trunk/debian/patches/
    vdr/vdr-plugin-rssreader/trunk/debian/patches/00list
    vdr/vdr-plugin-rssreader/trunk/debian/patches/90_rssreader-1.0.1-1.5.3.dpatch
Modified:
    vdr/vdr-plugin-rssreader/trunk/debian/changelog
    vdr/vdr-plugin-rssreader/trunk/debian/control
    vdr/vdr-plugin-rssreader/trunk/debian/rules

Modified: vdr/vdr-plugin-rssreader/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/debian/changelog?rev=4874&op=diff
==============================================================================
--- vdr/vdr-plugin-rssreader/trunk/debian/changelog (original)
+++ vdr/vdr-plugin-rssreader/trunk/debian/changelog Wed Jun 27 23:47:03 2007
@@ -1,8 +1,13 @@
-vdr-plugin-rssreader (1.0.1-7) UNRELEASED; urgency=low
+vdr-plugin-rssreader (1.0.1-7) experimental; urgency=low
 
+  [ Thomas Schmidt ]
   * Added XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control
 
- -- Thomas Schmidt <tschmidt at debian.org>  Wed, 16 May 2007 23:22:33 +0200
+  [ Thomas Günther ]
+  * Release for vdrdevel 1.5.5
+  * Added 90_rssreader-1.0.1-1.5.3.dpatch
+
+ -- Thomas Günther <tom at toms-cafe.de>  Thu, 28 Jun 2007 00:17:34 +0200
 
 vdr-plugin-rssreader (1.0.1-6) experimental; urgency=low
 

Modified: vdr/vdr-plugin-rssreader/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/debian/control?rev=4874&op=diff
==============================================================================
--- vdr/vdr-plugin-rssreader/trunk/debian/control (original)
+++ vdr/vdr-plugin-rssreader/trunk/debian/control Wed Jun 27 23:47:03 2007
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org>
 Uploaders: Thomas Günther <tom at toms-cafe.de>, Tobias Grimm <tg at e-tobi.net>, Thomas Schmidt <tschmidt at debian.org>
-Build-Depends: debhelper (>> 4.1.16), vdr-dev (>= 1.4.5-1), libexpat1-dev, libcurl-dev
+Build-Depends: debhelper (>> 4.1.16), vdr-dev (>= 1.4.5-1), libexpat1-dev, libcurl-dev, dpatch
 Standards-Version: 3.7.2
 XS-Vcs-Svn: svn://svn.debian.org/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/
 XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/

Added: vdr/vdr-plugin-rssreader/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/debian/patches/00list?rev=4874&op=file
==============================================================================
--- vdr/vdr-plugin-rssreader/trunk/debian/patches/00list (added)
+++ vdr/vdr-plugin-rssreader/trunk/debian/patches/00list Wed Jun 27 23:47:03 2007
@@ -1,0 +1,1 @@
+90_rssreader-1.0.1-1.5.3

Added: vdr/vdr-plugin-rssreader/trunk/debian/patches/90_rssreader-1.0.1-1.5.3.dpatch
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/debian/patches/90_rssreader-1.0.1-1.5.3.dpatch?rev=4874&op=file
==============================================================================
--- vdr/vdr-plugin-rssreader/trunk/debian/patches/90_rssreader-1.0.1-1.5.3.dpatch (added)
+++ vdr/vdr-plugin-rssreader/trunk/debian/patches/90_rssreader-1.0.1-1.5.3.dpatch Wed Jun 27 23:47:03 2007
@@ -1,0 +1,58 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 90_rssreader-1.0.1-1.5.3.dpatch by Thomas Günther <tom at toms-cafe.de>
+## http://toms-cafe.de/vdr/download/rssreader-1.0.1-1.5.3.diff
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Changes for VDR >= 1.5.3.
+
+ at DPATCH@
+--- rssreader-1.0.1/parser.c
++++ rssreader-1.0.1/parser.c
+@@ -51,7 +51,11 @@ void cItem::SetDate(const char *str)
+   char tmp[SHORT_TEXT_LEN];
+   memset(tmp, 0, sizeof(tmp));
+ 
++#if APIVERSNUM >= 10503
++  charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", cCharSetConv::SystemCharacterTable());
++#else
+   charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", I18nCharSets()[Setup.OSDLanguage]);
++#endif
+   compactspace(tmp);
+   debug("cItem::SetDate(): Date: '%s'", tmp);
+   strn0cpy(date, tmp, sizeof(tmp));
+@@ -62,7 +66,11 @@ void cItem::SetTitle(const char *str)
+   char tmp[SHORT_TEXT_LEN];
+   memset(tmp, 0, sizeof(tmp));
+ 
++#if APIVERSNUM >= 10503
++  charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", cCharSetConv::SystemCharacterTable());
++#else
+   charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", I18nCharSets()[Setup.OSDLanguage]);
++#endif
+   compactspace(tmp);
+   striphtml(tmp);
+   htmlcharconv(tmp);
+@@ -75,7 +83,11 @@ void cItem::SetLink(const char *str)
+   char tmp[SHORT_TEXT_LEN];
+   memset(tmp, 0, sizeof(tmp));
+ 
++#if APIVERSNUM >= 10503
++  charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", cCharSetConv::SystemCharacterTable());
++#else
+   charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", I18nCharSets()[Setup.OSDLanguage]);
++#endif
+   compactspace(tmp);
+   debug("cItem::SetLink(): '%s'", tmp);
+   strn0cpy(link, tmp, sizeof(tmp));
+@@ -86,7 +98,11 @@ void cItem::SetDescription(const char *s
+   char tmp[LONG_TEXT_LEN];
+   memset(tmp, 0, sizeof(tmp));
+ 
++#if APIVERSNUM >= 10503
++  charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", cCharSetConv::SystemCharacterTable());
++#else
+   charsetconv(tmp, sizeof(tmp), str, strlen(str), "UTF8", I18nCharSets()[Setup.OSDLanguage]);
++#endif
+   compactspace(tmp);
+   striphtml(tmp);
+   htmlcharconv(tmp);

Modified: vdr/vdr-plugin-rssreader/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-rssreader/trunk/debian/rules?rev=4874&op=diff
==============================================================================
--- vdr/vdr-plugin-rssreader/trunk/debian/rules (original)
+++ vdr/vdr-plugin-rssreader/trunk/debian/rules Wed Jun 27 23:47:03 2007
@@ -13,7 +13,7 @@
 endif
 
 # To use dpatch uncomment the following line and set Build-Depends to dpatch
-# DPATCH=yes
+DPATCH=yes
 
 ifdef DPATCH
 include /usr/share/dpatch/dpatch.make




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