[imap-upload/f15/master] Initial import (#675426).

Jean-Francois Saucier jfsaucier at fedoraproject.org
Wed Apr 6 15:19:56 UTC 2011


commit 96e5b4936b2d21dc107e7bcdd4376837594df77c
Author: Jean-Francois Saucier <jsaucier at gmail.com>
Date:   Wed Apr 6 11:21:32 2011 -0400

    Initial import (#675426).

 .gitignore       |    1 +
 imap-upload.spec |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 sources          |    1 +
 3 files changed, 49 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..90e4d24 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/imap-upload-1.2.zip
diff --git a/imap-upload.spec b/imap-upload.spec
new file mode 100644
index 0000000..d0bc8c4
--- /dev/null
+++ b/imap-upload.spec
@@ -0,0 +1,47 @@
+Name:           imap-upload
+Version:        1.2
+Release:        3%{?dist}
+Summary:        A tool for uploading a local mbox file to IMAP4 server
+BuildArch:      noarch 
+Group:          Applications/Internet
+License:        MIT
+URL:            http://imap-upload.sourceforge.net
+Source0:        http://downloads.sourceforge.net/%{name}/%{name}-%{version}.zip
+BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+Requires:       python
+
+%description
+IMAP Upload is a tool for uploading a local mbox file to IMAP4 server. The
+most stable way to migrate to Google Mail. The features include support for
+the mbox format, preserving the delivery time of the messages, automatic
+retry when the connection is aborted, keep a log of failed messages in mbox
+format, etc.
+
+%prep
+%setup -q
+sed -i -e '1i#!/usr/bin/python' imap_upload.py
+
+%build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT%{_bindir}
+install -p -m 755 imap_upload.py $RPM_BUILD_ROOT%{_bindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc License.txt
+%{_bindir}/imap_upload.py
+
+%changelog
+* Wed Apr  6 2011 Jean-Francois Saucier <jsaucier at gmail.com> - 1.2-3
+- Fix as per the suggestion on bug #675426
+
+* Sat Feb  5 2011 Jean-Francois Saucier <jsaucier at gmail.com> - 1.2-2
+- Change Gmail for Google Mail to be less ambiguous with the Gmail trademark
+
+* Fri Feb  4 2011 Jean-Francois Saucier <jsaucier at gmail.com> - 1.2-1
+- Initial build for Fedora
diff --git a/sources b/sources
index e69de29..0f2e9e0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+bd1a0ea13e0e77707c6ac87ea5240ff2  imap-upload-1.2.zip


More information about the scm-commits mailing list