summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-27 09:31:21 +0000
committerlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-27 09:31:21 +0000
commitc7c51f06eaa292bfbb5b4336325e06d346d63b84 (patch)
treeeeae3246100879b7a5c17942b8e99392f9aa9056 /debian
parent5575066316ddc4f576c7305476e26ab79f992a39 (diff)
downloadfeed2imap-c7c51f06eaa292bfbb5b4336325e06d346d63b84.tar.gz
feed2imap-c7c51f06eaa292bfbb5b4336325e06d346d63b84.tar.bz2
feed2imap-c7c51f06eaa292bfbb5b4336325e06d346d63b84.zip
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@49 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog13
-rw-r--r--debian/compat1
-rw-r--r--debian/control5
-rwxr-xr-xdebian/rules14
4 files changed, 24 insertions, 9 deletions
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 <lucas@lucas-nussbaum.net> 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 <lucas@lucas-nussbaum.net>
-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