--- nrss-0.3.9.orig/debian/docs +++ nrss-0.3.9/debian/docs @@ -0,0 +1 @@ +TODO --- nrss-0.3.9.orig/debian/control +++ nrss-0.3.9/debian/control @@ -0,0 +1,17 @@ +Source: nrss +Section: net +Priority: extra +Maintainer: Michael Casadevall +Build-Depends: debhelper (>= 5), libexpat1-dev, libncursesw5-dev, wget +Standards-Version: 3.7.3 +Homepage: http://www.codezen.org/nrss/ + +Package: nrss +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, wget +Description: A ncurses-based RSS reader + NRSS is a console based RSS reader allowing + uses to read and manage RSS feeds with a simple + to use interface. Like most graphical RSS readers + it provides a three pane interface for ease of use + in managing multiple feeds. --- nrss-0.3.9.orig/debian/rules +++ nrss-0.3.9/debian/rules @@ -0,0 +1,59 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +get-orig-source: + cd ..; wget http://ncurses-rss.googlecode.com/files/nrss-0.3.9.tar.gz + ln -s ../nrss-0.3.9.tar.gz ../${DEB_SOURCE_PACKAGE}_0.3.9.orig.tar.gz + +build: build-stamp + +build-stamp: + dh_testdir + CFLAGS="$(CFLAGS)" $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) PREFIX=/usr DESTDIR=$(CURDIR)/debian/nrss install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- nrss-0.3.9.orig/debian/copyright +++ nrss-0.3.9/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Michael Casadevall on +Wed, 29 Aug 2007 08:14:36 +0000. + +It was downloaded from + +Upstream Author: Jack Miller + +Copyright (C) 2007-2008 Jack Miller + +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. +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 with +the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; +if not, write to the Free Software Foundation, Inc., 51 Franklin St, +Fifth Floor, Boston, MA 02110-1301, USA. + +The Debian packaging is (C) 2007, Michael Casadevall and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- nrss-0.3.9.orig/debian/compat +++ nrss-0.3.9/debian/compat @@ -0,0 +1 @@ +5 --- nrss-0.3.9.orig/debian/changelog +++ nrss-0.3.9/debian/changelog @@ -0,0 +1,31 @@ +nrss (0.3.9-1) unstable; urgency=high + + * Update from 0.3.8 to 0.3.9 (Closes: #468146) + * Corrects dependency on wget (Closes: #470740) + * Lintian changes merged upstream + * Added -std=gnu99 C to avoid strict errors + + -- Michael Casadevall Wed, 12 Mar 2008 16:24:05 -0400 + +nrss (0.3.8-1) unstable; urgency=low + + [ Michael Casadevall ] + * Update from 0.3.1 to 0.3.8 + * Corrects issues RSS feeds without titles + * S930 architecture fix (Closes: #443749) + * Adds Unicode support + * Corrects bug with newer wgets (Closes: #441553) + + [ Paul Wise ] + * Move Homepage to the new dpkg field + * Add ${misc:Depends} to the dependencies + * Bump Standards-Version (no changes needed) + * Pass CFLAGS to make to honour noopt + + -- Michael Casadevall Fri, 15 Feb 2008 21:47:42 -0500 + +nrss (0.3.1-1) unstable; urgency=low + + * Initial release (Closes: #439865) + + -- Michael Casadevall Wed, 29 Aug 2007 08:14:36 +0000