From a60ade573538c1b09098283ce1055f2fa72034f7 Mon Sep 17 00:00:00 2001 From: Nishant Limbachia Date: Sat, 17 Dec 2011 10:38:15 -0600 Subject: network/offlineimap: Updated for version 6.4.0 Signed-off-by: Erik Hanson --- network/offlineimap/doinst.sh | 1 - network/offlineimap/offlineimap.SlackBuild | 17 +++++++++-------- network/offlineimap/offlineimap.info | 6 +++--- network/offlineimap/patches/Makefile.doc.patch | 10 ++++++++++ network/offlineimap/patches/doc_generation_fix.patch | 10 ---------- network/offlineimap/patches/manual.rst.patch | 20 -------------------- network/offlineimap/slack-desc | 4 ++-- 7 files changed, 24 insertions(+), 44 deletions(-) create mode 100644 network/offlineimap/patches/Makefile.doc.patch delete mode 100644 network/offlineimap/patches/doc_generation_fix.patch delete mode 100644 network/offlineimap/patches/manual.rst.patch (limited to 'network/offlineimap') diff --git a/network/offlineimap/doinst.sh b/network/offlineimap/doinst.sh index 26d94b2302..7697c74085 100644 --- a/network/offlineimap/doinst.sh +++ b/network/offlineimap/doinst.sh @@ -11,5 +11,4 @@ config() { fi # Otherwise, we leave the .new copy for the admin to consider... } - config etc/offlineimap.conf.new diff --git a/network/offlineimap/offlineimap.SlackBuild b/network/offlineimap/offlineimap.SlackBuild index e018b31e64..7acacb47f9 100644 --- a/network/offlineimap/offlineimap.SlackBuild +++ b/network/offlineimap/offlineimap.SlackBuild @@ -3,7 +3,8 @@ # Slackware build script for OfflineIMAP # Home Page https://github.com/nicolas33/offlineimap -# Copyright (c) 2008-2011, Nishant Limbachia, Hoffman Estates, IL, USA +# Copyright (c) 2008-2011, Nishant Limbachia, Hoffman Estates, IL, USA +# # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,9 +25,9 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -SRCNAM="nicolas33-offlineimap-v6.3.4-0-g61e50b3" +SRCNAM="nicolas33-offlineimap-v6.4.0-0-gc1120c9" PRGNAM="offlineimap" -VERSION=${VERSION:-6.3.4} +VERSION=${VERSION:-6.4.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -45,11 +46,14 @@ OUTPUT=${OUTPUT:-/tmp} set -e # Exit on most errors +# In case the source was fetched with wget or some other downloader: +[ -e v${VERSION} ] && mv v${VERSION} $SRCNAM.tar.gz + rm -fr $TMP/$PRGNAM-$VERSION $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP tar xvf $CWD/$SRCNAM.tar.gz -mv nicolas33-offlineimap-94450e9 $PRGNAM-$VERSION +mv nicolas33-offlineimap-b1bff15 $PRGNAM-$VERSION cd $PRGNAM-$VERSION chown -R root.root . @@ -59,11 +63,8 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -### fix the manual file to build correctly -patch -p0 < $CWD/patches/manual.rst.patch - ### Patch makefile to disable building dev docs -patch -p0 < $CWD/patches/doc_generation_fix.patch +patch -p0 < $CWD/patches/Makefile.doc.patch ### build and install python setup.py install --root=$PKG diff --git a/network/offlineimap/offlineimap.info b/network/offlineimap/offlineimap.info index 4678f5b54e..e2718a544c 100644 --- a/network/offlineimap/offlineimap.info +++ b/network/offlineimap/offlineimap.info @@ -1,8 +1,8 @@ PRGNAM="offlineimap" -VERSION="6.3.4" +VERSION="6.4.0" HOMEPAGE="https://github.com/nicolas33/offlineimap" -DOWNLOAD="https://github.com/nicolas33/offlineimap/tarball/v6.3.4" -MD5SUM="84c42088ffcc7092473fef76e17c082b" +DOWNLOAD="https://github.com/nicolas33/offlineimap/tarball/v6.4.0" +MD5SUM="b7596598ca61347b8c96f8412cfd7dc0" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="Nishant Limbachia" diff --git a/network/offlineimap/patches/Makefile.doc.patch b/network/offlineimap/patches/Makefile.doc.patch new file mode 100644 index 0000000000..3540a7aed1 --- /dev/null +++ b/network/offlineimap/patches/Makefile.doc.patch @@ -0,0 +1,10 @@ +--- Makefile.orig 2011-12-03 12:09:16.547477510 -0600 ++++ Makefile 2011-12-03 12:09:45.284443743 -0600 +@@ -44,7 +44,6 @@ + @$(MAKE) -C docs man + + doc: +- @$(MAKE) -C docs + $(RST2HTML) README.rst readme.html + $(RST2HTML) SubmittingPatches.rst SubmittingPatches.html + $(RST2HTML) Changelog.rst Changelog.html diff --git a/network/offlineimap/patches/doc_generation_fix.patch b/network/offlineimap/patches/doc_generation_fix.patch deleted file mode 100644 index 1b69ffdca3..0000000000 --- a/network/offlineimap/patches/doc_generation_fix.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.orig 2011-09-09 16:00:42.784605863 -0500 -+++ Makefile 2011-09-09 16:00:50.423804120 -0500 -@@ -44,7 +44,6 @@ - @$(MAKE) -C docs man - - doc: -- @$(MAKE) -C docs - $(RST2HTML) README.rst readme.html - $(RST2HTML) SubmittingPatches.rst SubmittingPatches.html - $(RST2HTML) Changelog.rst Changelog.html diff --git a/network/offlineimap/patches/manual.rst.patch b/network/offlineimap/patches/manual.rst.patch deleted file mode 100644 index 9b40e4bd38..0000000000 --- a/network/offlineimap/patches/manual.rst.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- docs/MANUAL.rst.orig 2011-08-10 14:44:58.000000000 -0500 -+++ docs/MANUAL.rst 2011-09-09 15:43:23.813649765 -0500 -@@ -380,7 +380,7 @@ - default. - - Certificate checking --^^^^^^^^^^^^^^^^^^^^ -+==================== - - Unfortunately, by default we will not verify the certificate of an IMAP - TLS/SSL server we connect to, so connecting by SSL is no guarantee -@@ -397,7 +397,7 @@ - certificate and CA certificate. - - StartTLS --^^^^^^^^ -+======== - - If you have not configured your account to connect via SSL anyway, - OfflineImap will still attempt to set up an SSL connection via the diff --git a/network/offlineimap/slack-desc b/network/offlineimap/slack-desc index 0ebedae2db..81b7ffb77b 100644 --- a/network/offlineimap/slack-desc +++ b/network/offlineimap/slack-desc @@ -5,15 +5,15 @@ # make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':' except on otherwise blank lines. - |-----handy-ruler------------------------------------------------------| + |-----handy-ruler-----------------------------------------------| offlineimap: offlineimap (IMAP sync tool) offlineimap: offlineimap: OfflineIMAP allows you to sync imap mailboxes between remote offlineimap: and local machines. It is most useful in syncing user offlineimap: mailboxes between imap servers. offlineimap: -offlineimap: Homepage: https://github.com/nicolas33/offlineimap offlineimap: offlineimap: +offlineimap: Homepage: https://github.com/nicolas33/offlineimap offlineimap: offlineimap: -- cgit v1.2.3