--- yahoo2mbox-0.24.orig/debian/yahoo2mbox.1 +++ yahoo2mbox-0.24/debian/yahoo2mbox.1 @@ -0,0 +1,72 @@ +.TH YAHOO2MBOX "1" "January 2004" "yahoo2mbox" "User Commands" +.SH NAME +yahoo2mbox \- Retrieve and store Yahoo! Groups messages +.SH DESCRIPTION +\fByahoo2mbox\fP Retrieves all messages in the archive of the given group +from Yahoo and stores them in the specified local MBOX file. If the file +exists, the messages not already in the file are appended to it. +.SH OPTIONS +yahoo2mbox [options] [-o ] +.TP +.B \-\-help +give the usage message showing the program options +.TP +.B \-\-version +show the program version and exit +.TP +.B \-\-verbose +give verbose informational messages (default) +.TP +.B \-\-quiet +be silent, only error messages are given +.TP +.B \-o mbox +save the message to mbox instead of file named groupname +.TP +.B \-\-start=\fIn\fR +start retrieving messages at index n instead of 1 +.TP +.B \-\-end=\fIn\fR +stop retrieving messages at index n instead of the last one +.TP +.B \-\-last=\fIn\fR +retrieve last n messages from the list +.TP +.B \-\-resume +resumes previously interrupted downloading, needed if \-\-start +is used, otherwise is automatic if mailbox already exists +.TP +.B \-\-noresume +don't resume, \fBoverwrites\fR the existing output file if any +.TP +.B \-\-user=\fIname\fR +login to eGroups using this username (default: guest login) +.TP +.B \-\-pass=\fIpass\fR +the password to use for login (default: none) +.TP +.B \-\-cookies=\fIxxx\fR +file to use to store cookies (default: none, 'netscape' uses +netscape cookies file). +.TP +.B \-\-proxy=\fIurl\fR +use the given proxy, if 'no' don't use proxy at all (even not +the environment variable http_proxy which is used by default), +may use http://username:password@full.host.name/ notation +.TP +.B \-\-country=\fIxx\fR +use the given country code in order to access localized yahoo +groups (default: none; supported: ar,br,de,dk,es,fr,it,mx) +.TP +.B \-\-x\-yahoo +add X-Yahoo-Message-Num header to the downloaded messages +.TP +.B \-\-x\-delay=\fIn\fR +sleep for n seconds between each message request (may be used +allow the script to run continuously without hitting the +Yahoo bytes/hour download limit) + +.SH AUTHOR +yahoo2mbox was written by Vadim Zeitlin . This +man page was written for Debian by Ganesan R +with the help of the help2man. --- yahoo2mbox-0.24.orig/debian/changelog +++ yahoo2mbox-0.24/debian/changelog @@ -0,0 +1,64 @@ +yahoo2mbox (0.24-1) unstable; urgency=low + + * New upstream release. + * Add watch file (Closes: #435434). + * Updated standards version. + + -- Ganesan Rajagopal Sun, 27 Jul 2008 20:05:21 +0530 + +yahoo2mbox (0.22-1) unstable; urgency=low + + * New upstream release (Closes: #372553). + + -- Ganesan Rajagopal Thu, 15 Jun 2006 17:55:26 +0530 + +yahoo2mbox (0.20-2) unstable; urgency=low + + * Fixed changelog. + + -- Ganesan Rajagopal Wed, 12 Apr 2006 19:20:58 +0530 + +yahoo2mbox (0.20-1) unstable; urgency=low + + * New upstream release. + * Update standards version. + + -- Ganesan Rajagopal Wed, 12 Apr 2006 19:10:13 +0530 + +yahoo2mbox (0.19-1) unstable; urgency=low + + * New upsteam release (Closes: #351534). + * Avoid updating rules file by removing version number from source. + * Updated standards version. + + -- Ganesan Rajagopal Mon, 20 Feb 2006 10:10:26 +0530 + +yahoo2mbox (0.17-1) unstable; urgency=low + + * New upstream release. + * Changed source format to include version number. + * Updated man page for new options. + * Updated download location in copyright file. + * Added Recommends for libterm-readkey-perl to avoid echoing password. + + -- Ganesan Rajagopal Mon, 20 Jun 2005 16:08:31 +0530 + +yahoo2mbox (0.15-3) unstable; urgency=low + + * Fix dependencies (Closes: Bug#253579). + + -- Ganesan Rajagopal Wed, 07 Jul 2004 11:04:19 +0530 + +yahoo2mbox (0.15-2) unstable; urgency=low + + * Fixed upstream URL location in copyright file. + * Fix Maintainer name and really close ITP (Closes: Bug#224232). + + -- Ganesan Rajagopal Thu, 15 Jan 2004 23:00:19 +0530 + +yahoo2mbox (0.15-1) unstable; urgency=low + + * Initial Release (Closes: Bug#224232). + + -- Ganesan Rajagopal Thu, 8 Jan 2004 15:09:08 +0530 + --- yahoo2mbox-0.24.orig/debian/control +++ yahoo2mbox-0.24/debian/control @@ -0,0 +1,15 @@ +Source: yahoo2mbox +Section: utils +Priority: optional +Maintainer: Ganesan Rajagopal +Build-Depends-Indep: debhelper (>= 4.0.0) +Standards-Version: 3.8.0 + +Package: yahoo2mbox +Architecture: all +Depends: ${perl:Depends}, libwww-perl, libhtml-parser-perl +Recommends: libterm-readkey-perl +Description: Retrieve and store Yahoo! Groups messages + yahoo2mbox is a small Perl script which retrieves all messages from a mailing + list archive at Yahoo! Groups and stores them into a local file in MBOX + format. --- yahoo2mbox-0.24.orig/debian/compat +++ yahoo2mbox-0.24/debian/compat @@ -0,0 +1 @@ +4 --- yahoo2mbox-0.24.orig/debian/rules +++ yahoo2mbox-0.24/debian/rules @@ -0,0 +1,46 @@ +#!/usr/bin/make -f + +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +clean: + dh_testdir + dh_testroot + dh_clean + +build: +# Nothing to be built + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cp yahoo2mbox-0.24.pl debian/yahoo2mbox/usr/bin/yahoo2mbox + +# Build architecture-independent files here. +binary-indep: install + dh_testdir -i + dh_testroot -i + dh_installchangelogs -i + dh_installdocs -i + dh_install -i + dh_installman -i debian/yahoo2mbox.1 + dh_link -i + dh_strip -i + dh_compress -i + dh_fixperms -i + dh_perl -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +# Build architecture-dependent files here. +binary-arch: +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- yahoo2mbox-0.24.orig/debian/copyright +++ yahoo2mbox-0.24/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Ganesan R on +Thu, 8 Jan 2004 15:09:08 +0530. + +It was downloaded from http://www.tt-solutions.com/products/yahoo2mbox/#download + +Upstream Author: Vadim Zeitlin + +Copyright: + +The author has put yahoo2mbox in the public domain. --- yahoo2mbox-0.24.orig/debian/dirs +++ yahoo2mbox-0.24/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man --- yahoo2mbox-0.24.orig/debian/watch +++ yahoo2mbox-0.24/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www.tt-solutions.com/products/yahoo2mbox /downloads/yahoo2mbox-(.*).pl.gz \ No newline at end of file