summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-22 13:38:10 +0000
committerlnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972>2005-07-22 13:38:10 +0000
commit8653cec7dccc5974a72c0ffec9cd722ba55bc922 (patch)
treebbfd8d72b89c075f882db7229f60e889ddae4079
parent146beb0d171a4158abd4e8f7f39c69013aeea99e (diff)
downloadfeed2imap-8653cec7dccc5974a72c0ffec9cd722ba55bc922.tar.gz
feed2imap-8653cec7dccc5974a72c0ffec9cd722ba55bc922.tar.bz2
feed2imap-8653cec7dccc5974a72c0ffec9cd722ba55bc922.zip
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@40 f70e237a-67f3-0310-a06c-d2b8a7116972
-rw-r--r--debian/changelog6
-rw-r--r--debian/control16
-rw-r--r--debian/copyright16
-rw-r--r--debian/dirs2
-rwxr-xr-xdebian/rules40
5 files changed, 80 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6552637
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+feed2imap (0.4-1) unstable; urgency=low
+
+ * First Debian Package.
+
+ -- Lucas Nussbaum <lucas@lucas-nussbaum.net> Fri, 22 Jul 2005 14:00:00 +0100
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c8b09be
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,16 @@
+Source: feed2imap
+Section: net
+Priority: optional
+Maintainer: Lucas Nussbaum <lucas@lucas-nussbaum.net>
+Build-Depends: debhelper (>> 4.0.0)
+Standards-Version: 3.6.2.1
+
+Package: feed2imap
+Architecture: all
+Depends: ruby
+Suggests: imap-client, imap-server
+Description: RSS/Atom feed aggregator that uploads items to an IMAP mail server
+ Feed2Imap is an RSS/Atom feed aggregator. After Downloading feeds
+ (over HTTP or HTTPS), it uploads them to a specified 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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1dc77f4
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,16 @@
+This package was debianized by Lucas Nussbaum <lucas@lucas-nussbaum.net> on
+Fri, 22 Jul 2005 14:00:00 +0100.
+
+It was downloaded from http://home.gna.org/feed2imap/
+
+
+Upstream Author: Lucas Nussbaum <lucas@lucas-nussbaum.net>
+
+Copyright:
+
+Feed2Imap is copyright (c) 2005 by Lucas Nussbaum
+
+You are free to distribute this software under the terms of
+the GNU General Public License.
+On Debian systems, the complete text of the GNU General Public
+License can be found in the file `/usr/share/common-licenses/GPL'.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..7a589a1
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/lib/ruby/1.8
+usr/bin
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ddd3e7f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,40 @@
+#!/usr/bin/make -f
+# debian/rules that uses debhelper.
+
+# Uncomment this to turn on verbose mode.
+export DH_VERBOSE=1
+
+build:
+
+clean:
+ dh_testdir
+ dh_testroot
+ dh_clean
+
+install: build
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+ dh_installchangelogs ChangeLog
+ dh_installdocs README
+ dh_installexamples feed2imaprc-example
+ cp -r lib/* debian/tmp/usr/lib/ruby/1.8/
+ chmod --recursive 0644 debian/tmp/usr/lib/ruby/1.8/*
+ chmod 755 `find debian/tmp/usr/lib/ruby/1.8/ -type d`
+ install -m 655 bin/feed2imap debian/tmp/usr/bin
+ dh_compress
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+
+binary-arch: build install
+# Nothing here, not a binary package
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install