* [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages
[not found] <1394835693-32232-1-git-send-email-berndkuhls@hotmail.com>
@ 2014-03-14 22:21 ` Bernd Kuhls
2014-03-14 22:56 ` Yann E. MORIN
2014-03-15 20:15 ` Peter Korsgaard
2014-03-14 22:21 ` [Buildroot] [PATCH 2/2] fetchmail: New package Bernd Kuhls
1 sibling, 2 replies; 8+ messages in thread
From: Bernd Kuhls @ 2014-03-14 22:21 UTC (permalink / raw)
To: buildroot
Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
---
package/Config.in | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 70e5a7f..70d7023 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -230,7 +230,6 @@ source "package/leafpad/Config.in"
source "package/midori/Config.in"
source "package/pcmanfm/Config.in"
source "package/rdesktop/Config.in"
-source "package/sylpheed/Config.in"
source "package/synergy/Config.in"
source "package/torsmo/Config.in"
source "package/wmctrl/Config.in"
@@ -696,7 +695,6 @@ source "package/libcgi/Config.in"
source "package/libcgicc/Config.in"
source "package/libcurl/Config.in"
source "package/libdnet/Config.in"
-source "package/libesmtp/Config.in"
source "package/libeXosip2/Config.in"
source "package/libfcgi/Config.in"
source "package/libgsasl/Config.in"
@@ -842,6 +840,14 @@ source "package/sound-theme-borealis/Config.in"
source "package/sound-theme-freedesktop/Config.in"
endmenu
+menu "Mail"
+source "package/heirloom-mailx/Config.in"
+source "package/libesmtp/Config.in"
+source "package/msmtp/Config.in"
+source "package/mutt/Config.in"
+source "package/sylpheed/Config.in"
+endmenu
+
menu "Networking applications"
source "package/aiccu/Config.in"
source "package/aircrack-ng/Config.in"
@@ -878,7 +884,6 @@ source "package/foomatic-filters/Config.in"
source "package/fping/Config.in"
source "package/gesftpserver/Config.in"
source "package/gutenprint/Config.in"
-source "package/heirloom-mailx/Config.in"
source "package/hiawatha/Config.in"
source "package/hostapd/Config.in"
source "package/hplip/Config.in"
@@ -912,9 +917,7 @@ source "package/modem-manager/Config.in"
source "package/mongoose/Config.in"
source "package/mongrel2/Config.in"
source "package/mrouted/Config.in"
-source "package/msmtp/Config.in"
source "package/mtr/Config.in"
-source "package/mutt/Config.in"
source "package/nbd/Config.in"
source "package/ncftp/Config.in"
source "package/ndisc6/Config.in"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] fetchmail: New package
[not found] <1394835693-32232-1-git-send-email-berndkuhls@hotmail.com>
2014-03-14 22:21 ` [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages Bernd Kuhls
@ 2014-03-14 22:21 ` Bernd Kuhls
2014-03-14 23:00 ` Yann E. MORIN
2014-03-15 20:26 ` Peter Korsgaard
1 sibling, 2 replies; 8+ messages in thread
From: Bernd Kuhls @ 2014-03-14 22:21 UTC (permalink / raw)
To: buildroot
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
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))
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages
2014-03-14 22:21 ` [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages Bernd Kuhls
@ 2014-03-14 22:56 ` Yann E. MORIN
2014-03-15 20:15 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2014-03-14 22:56 UTC (permalink / raw)
To: buildroot
Bernd, All,
On 2014-03-14 23:21 +0100, Bernd Kuhls spake thusly:
> Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/Config.in | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/package/Config.in b/package/Config.in
> index 70e5a7f..70d7023 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -230,7 +230,6 @@ source "package/leafpad/Config.in"
> source "package/midori/Config.in"
> source "package/pcmanfm/Config.in"
> source "package/rdesktop/Config.in"
> -source "package/sylpheed/Config.in"
> source "package/synergy/Config.in"
> source "package/torsmo/Config.in"
> source "package/wmctrl/Config.in"
> @@ -696,7 +695,6 @@ source "package/libcgi/Config.in"
> source "package/libcgicc/Config.in"
> source "package/libcurl/Config.in"
> source "package/libdnet/Config.in"
> -source "package/libesmtp/Config.in"
> source "package/libeXosip2/Config.in"
> source "package/libfcgi/Config.in"
> source "package/libgsasl/Config.in"
> @@ -842,6 +840,14 @@ source "package/sound-theme-borealis/Config.in"
> source "package/sound-theme-freedesktop/Config.in"
> endmenu
>
> +menu "Mail"
> +source "package/heirloom-mailx/Config.in"
> +source "package/libesmtp/Config.in"
> +source "package/msmtp/Config.in"
> +source "package/mutt/Config.in"
> +source "package/sylpheed/Config.in"
> +endmenu
> +
> menu "Networking applications"
> source "package/aiccu/Config.in"
> source "package/aircrack-ng/Config.in"
> @@ -878,7 +884,6 @@ source "package/foomatic-filters/Config.in"
> source "package/fping/Config.in"
> source "package/gesftpserver/Config.in"
> source "package/gutenprint/Config.in"
> -source "package/heirloom-mailx/Config.in"
> source "package/hiawatha/Config.in"
> source "package/hostapd/Config.in"
> source "package/hplip/Config.in"
> @@ -912,9 +917,7 @@ source "package/modem-manager/Config.in"
> source "package/mongoose/Config.in"
> source "package/mongrel2/Config.in"
> source "package/mrouted/Config.in"
> -source "package/msmtp/Config.in"
> source "package/mtr/Config.in"
> -source "package/mutt/Config.in"
> source "package/nbd/Config.in"
> source "package/ncftp/Config.in"
> source "package/ndisc6/Config.in"
> --
> 1.7.10.4
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] fetchmail: New package
2014-03-14 22:21 ` [Buildroot] [PATCH 2/2] fetchmail: New package Bernd Kuhls
@ 2014-03-14 23:00 ` Yann E. MORIN
2014-03-15 7:38 ` Bernd Kuhls
2014-03-15 20:26 ` Peter Korsgaard
1 sibling, 1 reply; 8+ messages in thread
From: Yann E. MORIN @ 2014-03-14 23:00 UTC (permalink / raw)
To: buildroot
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 at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] fetchmail: New package
2014-03-14 23:00 ` Yann E. MORIN
@ 2014-03-15 7:38 ` Bernd Kuhls
2014-03-15 11:23 ` Yann E. MORIN
0 siblings, 1 reply; 8+ messages in thread
From: Bernd Kuhls @ 2014-03-15 7:38 UTC (permalink / raw)
To: buildroot
"Yann E. MORIN" <yann.morin.1998@free.fr> wrote in
news:20140314230014.GC16649 at 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
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] fetchmail: New package
2014-03-15 7:38 ` Bernd Kuhls
@ 2014-03-15 11:23 ` Yann E. MORIN
0 siblings, 0 replies; 8+ messages in thread
From: Yann E. MORIN @ 2014-03-15 11:23 UTC (permalink / raw)
To: buildroot
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 at 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.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages
2014-03-14 22:21 ` [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages Bernd Kuhls
2014-03-14 22:56 ` Yann E. MORIN
@ 2014-03-15 20:15 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2014-03-15 20:15 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <berndkuhls@hotmail.com> writes:
> Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] fetchmail: New package
2014-03-14 22:21 ` [Buildroot] [PATCH 2/2] fetchmail: New package Bernd Kuhls
2014-03-14 23:00 ` Yann E. MORIN
@ 2014-03-15 20:26 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2014-03-15 20:26 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <berndkuhls@hotmail.com> writes:
> Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-03-15 20:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1394835693-32232-1-git-send-email-berndkuhls@hotmail.com>
2014-03-14 22:21 ` [Buildroot] [PATCH 1/2] Create new section "Mail" in menuconfig and collect mail packages Bernd Kuhls
2014-03-14 22:56 ` Yann E. MORIN
2014-03-15 20:15 ` Peter Korsgaard
2014-03-14 22:21 ` [Buildroot] [PATCH 2/2] fetchmail: New package Bernd Kuhls
2014-03-14 23:00 ` Yann E. MORIN
2014-03-15 7:38 ` Bernd Kuhls
2014-03-15 11:23 ` Yann E. MORIN
2014-03-15 20:26 ` Peter Korsgaard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.