diff mbox

[2/2] fetchmail: New package

Message ID BLU0-SMTP1875387C9CEE20843356896D9700@phx.gbl
State Accepted
Commit c8528884479a210618b1cd2b99b79358a474904d
Headers show

Commit Message

Bernd Kuhls March 14, 2014, 10:21 p.m. UTC
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
 package/Config.in              |    1 +
 package/fetchmail/Config.in    |   12 ++++++++++++
 package/fetchmail/fetchmail.mk |   23 +++++++++++++++++++++++
 3 files changed, 36 insertions(+)
 create mode 100644 package/fetchmail/Config.in
 create mode 100644 package/fetchmail/fetchmail.mk

Comments

Yann E. MORIN March 14, 2014, 11 p.m. UTC | #1
Bernd, All,

On 2014-03-14 23:21 +0100, Bernd Kuhls spake thusly:
[--SNIP--]
> diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk
> new file mode 100644
> index 0000000..61e86a9
> --- /dev/null
> +++ b/package/fetchmail/fetchmail.mk
> @@ -0,0 +1,23 @@
> +################################################################################
> +#
> +# fetchmail
> +#
> +################################################################################
> +
> +FETCHMAIL_VERSION_MAJOR = 6.3
> +FETCHMAIL_VERSION_MINOR = 26
> +FETCHMAIL_VERSION = $(FETCHMAIL_VERSION_MAJOR).$(FETCHMAIL_VERSION_MINOR)
> +FETCHMAIL_SOURCE = fetchmail-$(FETCHMAIL_VERSION).tar.xz
> +FETCHMAIL_SITE = http://downloads.sourceforge.net/project/fetchmail/branch_$(FETCHMAIL_VERSION_MAJOR)/

The official site for fetchmail is:
    http://www.fetchmail.info/

and following the "download" link points to:
    http://developer.berlios.de/project/showfiles.php?group_id=1824

which then has a download link for the tarball:
    http://prdownload.berlios.de/fetchmail/fetchmail-6.3.26.tar.xz

(The .tar.bz2 also exists there.)

Also, the official development tree is on gitorious, not sourceforge:
    https://gitorious.org/fetchmail/fetchmail/

I'd prefer we use the download locations from the official distribution
medium, rather than from a mirror.

> +FETCHMAIL_LICENSE = GPLv2; some exceptions are mentioned in COPYING
> +FETCHMAIL_LICENSE_FILES = COPYING
> +
> +FETCHMAIL_CONF_OPT = \
> +	--with-ssl=$(STAGING_DIR)/usr
> +
> +FETCHMAIL_DEPENDENCIES = \
> +	ca-certificates \
> +	openssl \
> +	$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
> +
> +$(eval $(autotools-package))
> -- 
> 1.7.10.4
> 
> _______________________________________________
> buildroot mailing list
> buildroot@busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
Bernd Kuhls March 15, 2014, 7:38 a.m. UTC | #2
"Yann E. MORIN" <yann.morin.1998@free.fr> wrote in
news:20140314230014.GC16649@free.fr: 

> and following the "download" link points to:
>     http://developer.berlios.de/project/showfiles.php?group_id=1824
> 
> which then has a download link for the tarball:
>     http://prdownload.berlios.de/fetchmail/fetchmail-6.3.26.tar.xz

Hi,

I decided deliberately not to use berlios.de as download location because 
they will close their project hosting next month:

http://developer.berlios.de/forum/forum.php?forum_id=39220

"The reorientation and associated closure of the highly frequented 
development platform for April, 30th 2014 makes it necessary to migrate the 
on berliOS hosted projects to other platforms."

Btw: There are two packages in buildroot currently using berlios.de as _SITE: 
perlcross & ngircd, and some more packages mention berlios.de in Config.in.

Regards, Bernd
Yann E. MORIN March 15, 2014, 11:23 a.m. UTC | #3
Bernd, All,

On 2014-03-15 08:38 +0100, Bernd Kuhls spake thusly:
> "Yann E. MORIN" <yann.morin.1998@free.fr> wrote in
> news:20140314230014.GC16649@free.fr: 
> 
> > and following the "download" link points to:
> >     http://developer.berlios.de/project/showfiles.php?group_id=1824
> > 
> > which then has a download link for the tarball:
> >     http://prdownload.berlios.de/fetchmail/fetchmail-6.3.26.tar.xz
> 
> Hi,
> 
> I decided deliberately not to use berlios.de as download location because 
> they will close their project hosting next month:

Oh, I had totally forgotten about the fate of Berlios... :-(

Of course, we don't want to point to a soon-to-close upstream.

Regards,
Yann E. MORIN.
Peter Korsgaard March 15, 2014, 8:26 p.m. UTC | #4
>>>>> "Bernd" == Bernd Kuhls <berndkuhls@hotmail.com> writes:

 > Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/Config.in b/package/Config.in
index 70d7023..51d1e24 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -841,6 +841,7 @@  source "package/sound-theme-freedesktop/Config.in"
 endmenu
 
 menu "Mail"
+source "package/fetchmail/Config.in"
 source "package/heirloom-mailx/Config.in"
 source "package/libesmtp/Config.in"
 source "package/msmtp/Config.in"
diff --git a/package/fetchmail/Config.in b/package/fetchmail/Config.in
new file mode 100644
index 0000000..3419821
--- /dev/null
+++ b/package/fetchmail/Config.in
@@ -0,0 +1,12 @@ 
+config BR2_PACKAGE_FETCHMAIL
+	bool "fetchmail"
+	select BR2_PACKAGE_CA_CERTIFICATES
+	select BR2_PACKAGE_OPENSSL
+	select BR2_PACKAGE_ZLIB
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+	depends on BR2_USE_MMU # fork()
+	help
+	  Fetchmail - the mail-retrieval daemon
+	  Client daemon to move mail from POP and IMAP to your local computer
+
+	  http://sourceforge.net/projects/fetchmail/
diff --git a/package/fetchmail/fetchmail.mk b/package/fetchmail/fetchmail.mk
new file mode 100644
index 0000000..61e86a9
--- /dev/null
+++ b/package/fetchmail/fetchmail.mk
@@ -0,0 +1,23 @@ 
+################################################################################
+#
+# fetchmail
+#
+################################################################################
+
+FETCHMAIL_VERSION_MAJOR = 6.3
+FETCHMAIL_VERSION_MINOR = 26
+FETCHMAIL_VERSION = $(FETCHMAIL_VERSION_MAJOR).$(FETCHMAIL_VERSION_MINOR)
+FETCHMAIL_SOURCE = fetchmail-$(FETCHMAIL_VERSION).tar.xz
+FETCHMAIL_SITE = http://downloads.sourceforge.net/project/fetchmail/branch_$(FETCHMAIL_VERSION_MAJOR)/
+FETCHMAIL_LICENSE = GPLv2; some exceptions are mentioned in COPYING
+FETCHMAIL_LICENSE_FILES = COPYING
+
+FETCHMAIL_CONF_OPT = \
+	--with-ssl=$(STAGING_DIR)/usr
+
+FETCHMAIL_DEPENDENCIES = \
+	ca-certificates \
+	openssl \
+	$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
+
+$(eval $(autotools-package))