debian/0000755000000000000000000000000012142756505007175 5ustar debian/source/0000755000000000000000000000000012142756505010475 5ustar debian/source/format0000644000000000000000000000001412142756505011703 0ustar 3.0 (quilt) debian/control0000644000000000000000000000106312142756505010600 0ustar Source: postnews Section: net Priority: extra Maintainer: Robert James Clay Build-Depends: debhelper (>= 8.0.0) Standards-Version: 3.9.4 Vcs-Git: git://git.code.sf.net/p/postnews/code -b debian Vcs-Browser: http://sourceforge.net/p/postnews/code/ Homepage: http://sourceforge.net/p/postnews/wiki/Home/ Package: postnews Architecture: all Depends: ${misc:Depends}, python Description: Post Usenet articles via NNTP from the command line Postnews is a small command line utility written in Python that posts Usenet articles onto remote servers. debian/compat0000644000000000000000000000000212142756505010373 0ustar 8 debian/rules0000755000000000000000000000146712142756505010265 0ustar #!/usr/bin/make -f # GNU copyright 1997 to 1999 by Joey Hess. # Copyright 2001-2007 Peter Karlsson # Copyright 2013 Robert James Clay # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: clean: dh_testdir dh_testroot dh_clean install: dh_testdir dh_testroot dh_prep dh_installdirs /usr/bin install postnews debian/postnews/usr/bin binary-indep: build-indep install dh_testdir dh_testroot dh_installdocs dh_installman debian/postnews.1 dh_installchangelogs ChangeLog dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary-arch: binary: binary-indep .PHONY: build-indep build-arch build clean binary-indep binary-arch binary install debian/patches/0000755000000000000000000000000012142756505010624 5ustar debian/patches/Correct_shabang_line.patch0000644000000000000000000000070612142756505015743 0ustar Description: Correct shabang line in postnews script. The postnews script uses '#!/usr/bin/env python' but Debian Python Policy advises to use the standard '#!/usr/bin/python path. Correct shabang line. Author: Robert James Clay Origin: vendor Last-Update: 2013-04-13 --- postnews-0.5.3.orig/postnews +++ postnews-0.5.3/postnews @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # postnews 0.5.3 - post a usenet article # debian/patches/series0000644000000000000000000000003312142756505012035 0ustar Correct_shabang_line.patch debian/watch0000644000000000000000000000050512142756505010226 0ustar # postnews watch control file for uscan # You can run the "uscan" command to check for upstream updates and more. # See uscan(1) for format # Compulsory line, this is a version 3 file version=3 # Uncomment to find new files on sourceforge, for devscripts >= 2.9 http://sf.net/postnews/postnews-(.+)\.(?:tar\.gz|tar\.bz2) debian/docs0000644000000000000000000000000712142756505010045 0ustar README debian/copyright0000644000000000000000000000241712142756505011134 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Postnews Source: http://sourceforge.net/p/postnews/ Files: * Copyright: 2001-2002, Michael Waschbüsch License: GPL-2+ Files: debian/* Comment: Copyright and License for debian directory files. Copyright: 2001-2007, Peter Karlsson 2013, Robert James Clay License: GPL-2+ License: GPL-2+ This package 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 package 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. debian/postnews.10000644000000000000000000000230312142756505011137 0ustar .TH POSTNEWS 1 "2002-06-28" .SH NAME postnews \- Post a Usenet article to a server .SH SYNOPSIS .B postnews .RI [ OPTIONS ] .I SERVER .SH DESCRIPTION This manual page documents briefly the .B postnews command. This manual page was written for the Debian distribution because the original program does not have a manual page. .PP .B Postnews is used to post Usenet articles (including headers) from stdin to a server. The article must at least contain the headers .IR From: ", " Newsgroups: ", " Subject: , a newline and a body. .SH OPTIONS These programs follow the usual GNU command line syntax, with long options starting with two dashes ("-"). A summary of options is included below. .TP .BR \-h ", " \-\-help Show summary of options. .TP .BR \-v ", " \-\-verbose Be verbose. .TP .BR \-f ", " \-\-file= FILE Read file instead of stdin. .TP .BR \-p ", " \-\-port Port number. .TP .BR \-\-user User name. .TP .BR \-\-pass Password. .TP .BR \-r ", " \-\-readermode Send MODE READER before authentication. .SH AUTHOR Postnews is written by Michael Waschb\[:u]sch . This manual page was written by Peter Karlsson , for the Debian project (but may be used by others). debian/changelog0000644000000000000000000000342212142756505011050 0ustar postnews (0.5.3-4) unstable; urgency=low * New Maintainer. (Closes: #693232) * Rewrite debian/copyright according to DEP-5. * Add a debian/watch file to the packaging. * Changes to debian/control: - Update Standards-Version to 3.9.4. - Add a Homepage entry for Postnews. - Add '${misc:Depends}' to the package Depends. - Set Robert James Clay as package Maintainer. - Update debhelper Build-Depends to be '>= 8.0.0'. * Changes to debian/rules: - Correct 'dh_clean -k' to 'dh_prep' in install target. - Add the missing build-arch and build-indep targets. * Update debhelper compatibility in debian/compat to '8'. * Explicitly set Debian source format as 3.0 (quilt). * Add the file debian/patches/Correct_shabang_line.patch. -- Robert James Clay Thu, 09 May 2013 13:24:18 -0400 postnews (0.5.3-3) unstable; urgency=low * Added missing binary-arch target. (Closes: Bug#187067) * Clarified license. -- Peter Karlsson Sun, 02 Sep 2007 21:00:00 +0100 postnews (0.5.3-2) unstable; urgency=low * Removed mention of non-existant info files from manual page. (Closes: Bug#187066) -- Peter Karlsson Fri, 13 Jul 2003 14:00:00 +0100 postnews (0.5.3-1) unstable; urgency=low * New upstream release: - Added support for issuing "MODE READER" command (Closes: Bug#154146) -- Peter Karlsson Fri, 02 Aug 2002 21:30:00 +0100 postnews (0.5.2-1) unstable; urgency=low * New upstream release: - Changed the help message. -- Peter Karlsson Fri, 28 Jun 2002 07:00:00 +0100 postnews (0.5.1-1) unstable; urgency=low * Initial Release (ITP #117320). -- peter karlsson Sun, 28 Oct 2001 16:30:00 +0100