From c7c51f06eaa292bfbb5b4336325e06d346d63b84 Mon Sep 17 00:00:00 2001 From: lnu Date: Wed, 27 Jul 2005 09:31:21 +0000 Subject: git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@49 f70e237a-67f3-0310-a06c-d2b8a7116972 --- build_debian.bash | 19 +++++++++++++++++++ debian/changelog | 13 +++++++++++++ debian/compat | 1 + debian/control | 5 ++++- debian/rules | 14 ++++++-------- 5 files changed, 43 insertions(+), 9 deletions(-) create mode 100755 build_debian.bash create mode 100644 debian/compat diff --git a/build_debian.bash b/build_debian.bash new file mode 100755 index 0000000..79dfc17 --- /dev/null +++ b/build_debian.bash @@ -0,0 +1,19 @@ +#!/bin/bash + +VERSION=0.4 + +rm -rf pkg +rake package +cd pkg +mv feed2imap-$VERSION.tgz feed2imap_$VERSION.orig.tar.gz +cd feed2imap-$VERSION +cp -r ../../debian . +rm -rf debian/.svn +dpkg-buildpackage -rfakeroot +cd .. + +dpkg-scanpackages . /dev/null >Packages +dpkg-scansources . /dev/null >Sources +gzip Packages +gzip Sources +rm -rf feed2imap-$VERSION diff --git a/debian/changelog b/debian/changelog index 6552637..681ef87 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +feed2imap (0.4-2) unstable; urgency=low + + * changed to a non-native Debian package. + * Changed Build-Depends to Build-Depends-Indep + * Now installs to /usr/lib/ruby/1.8 instead of /usr/lib/site_ruby/1.8. + * DH_VERBOSE turned off. + * Set debhelper compatibility level to 4. + * Improved Description. + * Now uses dh_fixperms to fix permissions. + * Removed unused install target in debian/rules. + + -- Lucas Nussbaum Wed, 27 Jul 2005 11:26:25 +0200 + feed2imap (0.4-1) unstable; urgency=low * First Debian Package. diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +4 diff --git a/debian/control b/debian/control index 65d1ac3..8f419bb 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: feed2imap Section: net Priority: optional Maintainer: Lucas Nussbaum -Build-Depends: debhelper (>= 4.2.28), ruby +Build-Depends-Indep: debhelper (>= 4), ruby Standards-Version: 3.6.2.1 Package: feed2imap @@ -16,3 +16,6 @@ Description: feed aggregator (RSS/Atom) which puts items on a IMAP mail server folder of an IMAP mail server. The user can then access the feeds using a mail reader like Mutt, Evolution, Mozilla Thunderbird or even a webmail. + The main advantage over rss2email is that feed2imap uploads + emails itself to a specified folder. You don't have to play + with procmail or your MUA's filtering rules to classify mails. diff --git a/debian/rules b/debian/rules index 945cdad..3fc7d83 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,7 @@ # debian/rules that uses debhelper. # Uncomment this to turn on verbose mode. -export DH_VERBOSE=1 +#export DH_VERBOSE=1 build: @@ -11,17 +11,15 @@ clean: dh_testroot dh_clean -install: build - -binary-indep: build install +binary-indep: build dh_testdir dh_testroot dh_installdirs dh_installchangelogs ChangeLog dh_installdocs README - ruby setup.rb config --prefix=debian/tmp/usr --siteruby=debian/tmp/usr/lib/site_ruby + ruby setup.rb config --prefix=debian/tmp/usr --siteruby=debian/tmp/usr/lib/ruby ruby setup.rb install - chmod --recursive a+rX debian/tmp/* + dh_fixperms dh_compress dh_installdeb dh_gencontrol @@ -29,9 +27,9 @@ binary-indep: build install dh_builddeb -binary-arch: build install +binary-arch: build # Nothing here, not a binary package binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install +.PHONY: build clean binary-indep binary-arch binary -- cgit v1.2.3-54-g00ecf