Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Feb 2014 16:49:18 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r343653 - in head/mail/getlive: . files
Message-ID:  <201402101649.s1AGnIq5012424@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Mon Feb 10 16:49:17 2014
New Revision: 343653
URL: http://svnweb.freebsd.org/changeset/ports/343653
QAT: https://qat.redports.org/buildarchive/r343653/

Log:
  - update to version 3_0_3. This should fix runtime.
  - add stage support, while here
  
  PR:		178245
  Submitted by:	Lawrence Chen <beastie@tardisi.com>
  Approved by:	maintainer timeout (9 months)

Modified:
  head/mail/getlive/Makefile
  head/mail/getlive/distinfo
  head/mail/getlive/files/getlive.conf.sample

Modified: head/mail/getlive/Makefile
==============================================================================
--- head/mail/getlive/Makefile	Mon Feb 10 16:42:40 2014	(r343652)
+++ head/mail/getlive/Makefile	Mon Feb 10 16:49:17 2014	(r343653)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	getlive
-DISTVERSION=	2_7
+DISTVERSION=	3_0_3
 CATEGORIES=	mail
 MASTER_SITES=	http://tardisi.com/distfiles/ \
 		http://lawrencechen.net/distfiles/
@@ -14,7 +14,8 @@ COMMENT=	Get mail from Hotmail (Live) ma
 
 RUN_DEPENDS=	curl:${PORTSDIR}/ftp/curl \
 		procmail:${PORTSDIR}/mail/procmail \
-		p5-URI>=0:${PORTSDIR}/net/p5-URI
+		p5-URI>=0:${PORTSDIR}/net/p5-URI \
+		p5-WWW-Mechanize-GZip>=0:${PORTSDIR}/www/p5-WWW-Mechanize-GZip
 
 NO_BUILD=	yes
 USES=		perl5
@@ -23,15 +24,10 @@ USE_PERL5=	run
 PLIST_FILES=	bin/getlive etc/getlive.conf.sample
 PORTDOCS=	ChangeLog License Manual
 
-NO_STAGE=	yes
 do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/GetLive.pl ${PREFIX}/bin/getlive
-	${INSTALL_DATA} ${FILESDIR}/getlive.conf.sample ${PREFIX}/etc
-.if !defined(NOPORTDOCS)
-	@${MKDIR} ${DOCSDIR}
-.for file in ${PORTDOCS}
-	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
-.endfor
-.endif
+	${INSTALL_SCRIPT} ${WRKSRC}/GetLive.pl ${STAGEDIR}${PREFIX}/bin/getlive
+	${INSTALL_DATA} ${FILESDIR}/getlive.conf.sample ${STAGEDIR}${PREFIX}/etc
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>

Modified: head/mail/getlive/distinfo
==============================================================================
--- head/mail/getlive/distinfo	Mon Feb 10 16:42:40 2014	(r343652)
+++ head/mail/getlive/distinfo	Mon Feb 10 16:49:17 2014	(r343653)
@@ -1,2 +1,2 @@
-SHA256 (GetLive_2_7.tgz) = 166395e43ae65388845fd2cf511984b4a8ce793e94f7f91ba279a37dc49501d9
-SIZE (GetLive_2_7.tgz) = 29818
+SHA256 (GetLive_3_0_3.tgz) = bf2ae8c464b4c36ca65751be1b9698b1b4471348ae894cf46b57b255fa62f9c0
+SIZE (GetLive_3_0_3.tgz) = 27078

Modified: head/mail/getlive/files/getlive.conf.sample
==============================================================================
--- head/mail/getlive/files/getlive.conf.sample	Mon Feb 10 16:42:40 2014	(r343652)
+++ head/mail/getlive/files/getlive.conf.sample	Mon Feb 10 16:49:17 2014	(r343653)
@@ -1,68 +1,98 @@
 # UserName - YourHotmailUserName (without @something)
+#
 UserName=
 
-# Password - YourHotmailPassword (so restrict the access rights to this configuration file.)
+# Password - YourHotmailPassword (so restrict the access rights to this
+#                                 configuration file.)
+#
 Password=
 
-# Domain - YourHotmailDomain (default 'hotmail.com', basically what's after the @ in your address)
+# Domain - YourHotmailDomain (default 'hotmail.com', basically what's after
+#                             the @ in your address)
+#
 #Domain=hotmail.com
 
 # Proxy - ProxyServer if you're behind one.
+#
 #Proxy=
 
 # ProxyAuth - ProxyPassword if you're behind one with password. 
+#
 #ProxyAuth=
 
 # Downloaded - SomeFileName (it keeps track of all id's of messages
-#                        that were fetched already) 
+#                            that were fetched already) 
+#
 Downloaded=
 
 # FetchOnlyUnread - Yes or No (default)
-# If Yes only messages that are marked unread are fetched.
-# Downloaded and FetchOnlyUnread are mutual exclusive.
+#
+#                   If Yes only messages that are marked unread are fetched.
+#                   Downloaded and FetchOnlyUnread are mutual exclusive.
+#
 #FetchOnlyUnread=No
 
-# RetryLimit - N (default 2) : how many times to retry fetching a
-# web page via curl (the webpage fetcher behind the scenes)
-#RetryLimit=2
-
-# CurlBin - CommandForCurl ('curl -k' by default).
-CurlBin=/usr/local/bin/curl -k
-
 # Processor - FilterCommand ('/usr/bin/procmail' by default).
-# Any filtercommand taking the message in mbox format on its stdin and doing something with it.
+#
+#             Any filtercommand taking the message in mbox format on its stdin
+#             and doing something with it.
 #                        
-#   *) '/bin/cat - >> FetchedMail' might be another interesting one to drop directly in a mbox file.
+#   *) '/bin/cat - >> FetchedMail' might be another interesting one to drop
+#                                  directly in a mbox file.
 #
 #   *) The distribution contains also SmtpForward.pl and SmtpAuthForward.pl.
 #      Those can be used as 'Processor' to forward the mails to an SMTP server.
+#
 Processor=/usr/local/bin/procmail
 
-# Folder - FolderName. Folders that need to be fetched. 
+# Folder - FolderName : Folders that need to be fetched. 
+#
 # This option must be repeated for each folder you want to fetch.
 # If this option is not present then all folders will be fetched.
+#
 #Folder=
 
-# MarkRead - Yes or No (default) : whether the message will be 
-# marked read after being downloaded. By the way : 
-# it never gets marked in any way when not downloaded due to it being already in the 
-# Downloaded = SomeFileName (see higer) file.
+# MarkRead - Yes or No (default) : whether the message will be marked read
+#                                  after being downloaded. By the way, it never
+#                                  gets marked in any way when not downloaded
+#                                  due to it being already in the 
+#                                  Downloaded = SomeFileName (see higher) file.
+#
 #MarkRead=No
 
-# Delete - Yes or No (default) : whether the message will be 
-# deleted after being downloaded. By the way : 
-# it never gets deleted in any way when not downloaded due to it being already in the 
-# Downloaded = SomeFileName (see higer) file.
+# Delete - Yes or No (default) : whether the message will be deleted after
+#                                being downloaded. By the way, it never gets
+#                                deleted in any way when not downloaded due to
+#                                it being already in the 
+#                                Downloaded = SomeFileName (see higher) file.
+#
 #Delete=No
 
 # MoveToFolder - FolderName or @FileName
-# FolderName is the folder to which the message must be moved after being downloaded.
-# By the way : it never gets moved in any way when not downloaded due to it 
-# being already in the Downloaded = SomeFileName (see higer) file.
+#
+# FolderName is the folder to which the message must be moved after being
+# downloaded. By the way, it never gets moved in any way when not downloaded
+# due to it being already in the Downloaded = SomeFileName (see higher) file.
+#
 # If this argument takes the form @FileName then the FolderName is taken from
 # the contents of the file FileName.
+#
 # The idea is that f.i. a spamfilter can decide to what folder it must be moved.
-# That spamfilter would be part of Processor    = FilterCommand (see higher) and
-# write a FolderName (for instance Junk if considered junk) to the file FileName.
-#MoveToFolter=
+# That spamfilter would be part of Processor = FilterCommand (see higher) and
+# write a FolderName (for instance Junk if considered junk) to the file
+# FileName.
+#
+#MoveToFolder=
+
+# SkipTrash - Yes or No (default) : whether the message Trash folder will be
+# handled (default) or not.
+#
+#SkipTrash=No
 
+# BreakOnAlreadyDownloaded = Number
+#
+# Stop scanning a folder when detecting a seqeunce of Number messages that
+# is already downloaded. 0 means disabling this feature and is default.
+# Meant to reduce folder scanning.
+#
+#BreakOnAlreadyDownloaded=0



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402101649.s1AGnIq5012424>