Bug#962858: tickr version 0.7.0-3 *is* linked with libm

2020-06-15 Thread Emmanuel Thomas-Maurin
Source: tickr
Version: 0.7.0-3

tickr version 0.7.0-3 *is* linked with libm

-- 
Emmanuel Thomas-Maurin



Bug#962858: Fixed in version 0.7.0-3

2020-06-15 Thread Emmanuel Thomas-Maurin
Fixed in version 0.7.0-3.

-- 
Emmanuel Thomas-Maurin



Bug#904590: Fix applied in new version

2020-06-02 Thread Emmanuel Thomas-Maurin
Hi,

Tickr last version (0.7.0-1) implements full HTTPS support. I'm waiting
for my Debian mentor to check it and (if everything is OK) upload it to
unstable.

-- 
Emmanuel Thomas-Maurin


pEpkey.asc
Description: application/pgp-keys


Bug#688099: RSS URL length limited to 128 chars

2012-10-26 Thread Emmanuel Thomas-Maurin
New requested feature: RDF format support.

-- 
Emmanuel Thomas-Maurin  manutm...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#688099: (no subject)

2012-09-19 Thread Emmanuel Thomas-Maurin
Thanks for reporting that.

-- 
Emmanuel Thomas-Maurin  manutm...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#688099: (no subject)

2012-09-19 Thread Emmanuel Thomas-Maurin
After checking the code, I've just found that max length for strings in
error/warning text was 128. Now, I've set it up to FILE_NAME_MAXLEN
which is (2 * 1024 - 1) and applies to both FULL FILE NAMES and URLs.

When trying with the URL you provided, I got the warning: RSS 2.0 / Atom
format error. Actually, the feed format is RDF (RSS 1.0) which is not
currently supported as it's older and less used, hence the error.

So, URLs are truncated to 128 only in error/warning messages. I've also
checked with a quite long URL (155 characters):
http://www.nasdaq.com/aspxcontent/NasdaqRSS.aspx?data=quotessymbol=IBMsymbol=GOOGsymbol=YHOOsymbol=NOKsymbol=AAPLsymbol=MSFTsymbol=ORCLsymbol=SSNLF

 --
Emmanuel Thomas-Maurin  manutm...@gmail.com


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#647311: Tickr-0.5.4 in Debian ubstable

2011-11-10 Thread Emmanuel Thomas-Maurin
Hi Ilya,

Tickr version 0.5.4 is now in Debian unstable. It should close

bug #879880.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#647311: patch for tickr: ftbs with ld --as-needed

2011-11-01 Thread Emmanuel Thomas-Maurin
Hi Julian,

I have just used your patch (with a little modification:
PKG_CHECK_MODULES(XML2, libxml-2.0, ,)instead of
PKG_CHECK_MODULES(XML2, xml-2.0, ,) which was not working)
and regenerated the package files. It seems now to build fine.
So, here is the new patch.

If I have missed something, please just let me know.
Thanks.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com

Description: correct the determination of buildflags
 libraries must go into the LDADD variable to build correctly
 with ld --as-needed.
 To do this the flags must be determined in configure.ac via
 the pkg-config macros
Author: Julian Taylor jtaylor.deb...@googlemail.com
--- tickr-0.5.3.orig/configure.ac
+++ tickr-0.5.3/configure.ac
@@ -28,6 +28,9 @@ AC_FUNC_MALLOC
 AC_FUNC_REALLOC
 AC_CHECK_FUNCS([memset select socket strerror strncasecmp strtoul])
 
+PKG_CHECK_MODULES(GTK2, gtk+-2.0, ,)
+PKG_CHECK_MODULES(XML2, xml-2.0, ,)
+
 AC_CONFIG_FILES([Makefile
  src/Makefile
  src/tickr/Makefile
--- tickr-0.5.3.orig/src/tickr/Makefile.am
+++ tickr-0.5.3/src/tickr/Makefile.am
@@ -24,11 +24,11 @@ tickr_SOURCES = news_main.c\
 	news_connectwin.c
 
 tickr_CFLAGS = -O2 -Wall -Wextra -Wunused-parameter -Wshadow -Wpointer-arith -ffast-math\
-	-pedantic `pkg-config --cflags gtk+-2.0` `xml2-config --cflags`
+	-pedantic $(GTK2_CFLAGS) $(XML2_CFLAGS)
 
-tickr_LDFLAGS = ../libetm-0.4/libetm.a `pkg-config --libs gtk+-2.0` `xml2-config --libs`
+tickr_LDFLAGS = ../libetm-0.4/libetm.a
 
-tickr_LDADD = ../libetm-0.4/libetm.a
+tickr_LDADD = ../libetm-0.4/libetm.a $(GTK2_LIBS) $(XML2_LIBS)
 
 tickr_DATA = ../../images/tickr-icon.png ../../images/tickr-logo.png\
 	../../images/tickr-rss-icon.png ../../images/tickr-icon.xpm


Bug#647311: patch for tickr: ftbs with ld --as-needed

2011-11-01 Thread Emmanuel Thomas-Maurin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


- -- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iF4EAREIAAYFAk6w1+8ACgkQfoRXS/2D0+7LAAEAopgeX2zBlcmdWr43im8xJ8AZ
ocNzWG3uqbsuJRQhAVsA/AgryxkeYuxTIZwmvS7TwgxSjCAGR1D2EkWPnI/53Dm3
=FcgA
-END PGP SIGNATURE-
diff -ur tickr_0.5.3.orig/aclocal.m4 tickr-0.5.3//aclocal.m4
--- tickr_0.5.3.orig/aclocal.m4	2011-08-27 16:11:54.0 +0200
+++ tickr-0.5.3//aclocal.m4	2011-11-02 04:42:00.82801 +0100
@@ -19,6 +19,164 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically `autoreconf'.])])
 
+# pkg.m4 - Macros to locate and utilise pkg-config.-*- Autoconf -*-
+# serial 1 (pkg-config-0.24)
+# 
+# Copyright © 2004 Scott James Remnant sc...@netsplit.com.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
+# --
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
+AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
+AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
+
+if test x$ac_cv_env_PKG_CONFIG_set != xset; then
+	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n $PKG_CONFIG; then
+	_pkg_min_version=m4_default([$1], [0.9.0])
+	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		AC_MSG_RESULT([yes])
+	else
+		AC_MSG_RESULT([no])
+		PKG_CONFIG=
+	fi
+fi[]dnl
+])# PKG_PROG_PKG_CONFIG
+
+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+#
+# Check to see whether a particular set of modules exists.  Similar
+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
+#
+# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+# only at the first occurence in configure.ac, so if the first place
+# it's called might be skipped (such as if it is within an if, you
+# have to call PKG_CHECK_EXISTS manually
+# --
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n $PKG_CONFIG  \
+AC_RUN_LOG([$PKG_CONFIG --exists --print-errors $1]); then
+  m4_default([$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+# -
+m4_define([_PKG_CONFIG],
+[if test -n $$1; then
+pkg_cv_[]$1=$$1
+ elif test -n $PKG_CONFIG; then
+PKG_CHECK_EXISTS([$3],
+ [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 $3 2/dev/null`],
+		 [pkg_failed=yes])
+ else
+pkg_failed=untried
+fi[]dnl
+])# _PKG_CONFIG
+
+# _PKG_SHORT_ERRORS_SUPPORTED
+# -
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+_pkg_short_errors_supported=yes
+else
+_pkg_short_errors_supported=no
+fi[]dnl
+])# _PKG_SHORT_ERRORS_SUPPORTED
+
+
+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+# [ACTION-IF-NOT-FOUND])
+#
+#
+# Note that if there is a possibility the first call to
+# PKG_CHECK_MODULES might not happen, you should be sure to include an
+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+#
+#
+# --
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $1])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT

Bug#639498: ITP: tickr -- GTK-based highly graphically-customizable RSS Feed Ticker

2011-08-31 Thread Emmanuel Thomas-Maurin
There is a package named 'ticker' which provide a text scroller
inside a terminal, without rss parsing ability or graphical options.

My package 'tickr' is more similar to 'knewsticker' which, if I'm
right, is no more available with KDE4, or 'gnews' which(again,
if I'm right)is not maintained anymore.

So there is now a lack of this kind of application.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#639498: ITP: tickr -- GTK-based highly graphically-customizable RSS Feed Ticker

2011-08-27 Thread Emmanuel Thomas-Maurin
Package: wnpp
Severity: wishlist
Owner: Emmanuel Thomas-Maurin manutm...@gmail.com


* Package name: tickr
  Version : 0.5.3
  Upstream Author : Emmanuel Thomas-Maurin manutm...@gmail.com
* URL : http://newsrssticker.com/unstable-debian/
* License : GPLC
* Programming Language: C
  Description : Tickr is a GTK-based  RSS  Reader  that  displays  feeds
as  a  smooth scrolling  line  on  your Desktop, as known from TV stations.
Open feed links in your favourite Browser. Graphics are highly customizable.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#639498: ITP: tickr -- GTK-based highly graphically-customizable RSS Feed Ticker

2011-08-27 Thread Emmanuel Thomas-Maurin
On 08/27/2011 10:11 PM, martin f krafft wrote:
 also sprach Emmanuel Thomas-Maurin manutm...@gmail.com [2011.08.27.1718 
 +0200]:
 * Package name: tickr
 
 There's an 'e' missing in the name.
 

It's intended.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638999: ITP: i-news (2nd request) -- GTK-based highly graphically-configurable RSS Ticker - Bug#638999

2011-08-25 Thread Emmanuel Thomas-Maurin
Dear mentors,

Sorry if this is a silly question. I previously mentionned the name
choice was not definitive but must I pick *first* a fully suitable one
in order to get a chance of getting sponsorded?

Thank you and best regards.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638999: ITP: i-news (2nd request) -- GTK-based highly graphically-configurable RSS Ticker - Bug#638999

2011-08-25 Thread Emmanuel Thomas-Maurin
On 08/25/2011 09:58 PM, Lucas Nussbaum wrote:
 On 25/08/11 at 21:32 +0200, Emmanuel Thomas-Maurin wrote:
 Dear mentors,

 Sorry if this is a silly question. I previously mentionned the name
 choice was not definitive but must I pick *first* a fully suitable one
 in order to get a chance of getting sponsorded?
 
 Packages renames are possible but a bit painful, so yes, it's better to
 make sure you won't change the name before getting sponsored.
 
 Lucas

Thanks. As I have to decide now, please let me know if I must change the
package name or not? Sorry, I know this is redundant but I need a final
answer.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-24 Thread Emmanuel Thomas-Maurin
The more recent package named 'i-news' v0.5.3 relates to bug #638999.

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638999

Sorry if this is making a mess. Is there something I should do for
clarification?

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638999: ITP: i-news (2nd request) -- GTK-based highly graphically-configurable RSS Ticker

2011-08-24 Thread Emmanuel Thomas-Maurin
The previous package named 'news' v0.5.3 was related to bug #638554

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638554

I hope this isn't making a mess. If there is something I should do,
please just let me know.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638999: ITP: i-news -- GTK-based highly graphically-configurable RSS Ticker

2011-08-23 Thread Emmanuel Thomas-Maurin
Package: wnpp
Severity: wishlist
Owner: Emmanuel Thomas-Maurin manutm...@gmail.com


* Package name: i-news
  Version : 0.5.3
  Upstream Author : Emmanuel Thomas-Maurin manutm...@gmail.com
* URL : http://mentors.debian.net/package/i-news
* License : GPL
  Programming Lang: C
  Description : i-News is a GTK-based RSS Ticker that displays feeds as a
smooth scrolling line on your Desktop, as known from TV stations. Open feed
links in your favourite Browser. Graphics are highly customizable.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638999: ITP: i-news (2nd request) -- GTK-based highly graphically-configurable RSS Ticker

2011-08-23 Thread Emmanuel Thomas-Maurin
Dear mentors,

I am looking for a sponsor for my package i-news (2nd request).

It's now fully lintian clean.

As I already mentioned, the package name choice is not definitive and
I'm open to any better name (but a not too long one) that could come
up... ;)

This app has been previously selected by the Ubuntu Application Review
Board (under the name 'News RSS Ticker) and was in extras.ubuntu.com
for maverick. I got very positive feedback from users.

Details:

 * Package name: i-news
   Version : 0.5.3-1
   Upstream Author : Emmanuel Thomas-Maurin
 * URL : http://newsrssticker.com/unstable-debian/
 * License : GPL
   Section : net

To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/i-news

It's also referenced at:

  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638999

Alternatively, one can download the package with dget using this command:

  dget -x
http://mentors.debian.net/debian/pool/main/i/i-news/i-news_0.5.3-1.dsc

I would be glad if someone uploaded this package for me.

Thank you and best regards,

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-21 Thread Emmanuel Thomas-Maurin
I just uploaded package i-news and deleted package news.

It was 100% lintian clean when building source and binary, but I found
lintian warning reported at http://mentors.debian.net/package/i-news
after uploading.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-20 Thread Emmanuel Thomas-Maurin
On 08/20/2011 11:25 AM, Colin Watson wrote:
 On Fri, Aug 19, 2011 at 07:59:49PM +0200, Emmanuel Thomas-Maurin wrote:
 * Package name: news
   Version : 0.5.3
   Upstream Author : Emmanuel Thomas-Maurin manutm...@gmail.com
 * URL : http://revu.ubuntuwire.com/p/news
 * License : GPL
   Programming Lang: C
   Description : News is a GTK-based RSS Ticker that displays feeds as a
 smooth scrolling line on your Desktop, as known from TV stations. Open feed
 links in your favourite Browser. Graphics are highly customizable.
 
 This is an awfully generic name for a Debian package.  How about calling
 it 'newsrssticker' or 'news-rss-ticker' instead?
 

Thanks for everybody feedback. I was wondering whether 'i-news' could be
suitable? Otherwise, I will go for 'news-rss-ticker' for package name
although I'd like to find a shorter name for binary/command (and am
running out of ideas...)

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-20 Thread Emmanuel Thomas-Maurin
On 08/20/2011 01:25 PM, Neil Williams wrote:
 It's GTK, so presumably it's going to have a .desktop file and won't be
 launched from the command line, typically. The length of the name of
 the executable does not, therefore, need to be short. Use the source
 package name as the binary package name and the command.

Yes, few users will launch it from command line although all parameters
can be set from cli as well.

So, thanks, I will use the same name for source/binary package and
command. I still have to decide between 'news-rss-ticker' and 'i-news'
and your opinions are welcome...  :)

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-20 Thread Emmanuel Thomas-Maurin
I will go for 'i-news' and fix lintian issues. Meanwhile, if someboby
thinks of a better name, please just let me know. ;)
Thanks.

-- 
Emmanuel Thomas-Maurin manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-19 Thread Emmanuel Thomas-Maurin
Package: wnpp
Severity: wishlist
Owner: Emmanuel Thomas-Maurin manutm...@gmail.com


* Package name: news
  Version : 0.5.3
  Upstream Author : Emmanuel Thomas-Maurin manutm...@gmail.com
* URL : http://revu.ubuntuwire.com/p/news
* License : GPL
  Programming Lang: C
  Description : News is a GTK-based RSS Ticker that displays feeds as a
smooth scrolling line on your Desktop, as known from TV stations. Open feed
links in your favourite Browser. Graphics are highly customizable.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-19 Thread Emmanuel Thomas-Maurin
On 08/19/2011 08:13 PM, Gergely Nagy wrote:
 Emmanuel Thomas-Maurin manutm...@gmail.com writes:
 
 Package: wnpp
 Severity: wishlist
 Owner: Emmanuel Thomas-Maurin manutm...@gmail.com


 * Package name: news
 
 I do hope that the final package name will be something... far less
 generic.
 

I agree and am open to suggestions if any.

-- 
Emmanuel Thomas-Maurin  manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#638554: ITP: news -- GTK-based highly configurable RSS Ticker

2011-08-19 Thread Emmanuel Thomas-Maurin
I just uploaded news-rss-ticker source package at:
http://mentors.debian.net/package/news

-- 
Emmanuel Thomas-Maurin  manutm...@gmail.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org