Port details |
- p5-Email-LocalDelivery Deliver a piece of email - simply
- 1.201 mail =3 1.201Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: 2003-09-01 20:26:18
- Last Update: 2022-09-07 21:58:51
- Commit Hash: fb16dfe
- People watching this port, also watch:: p5-ExtUtils-CBuilder, p5-libwww, libast, p5-MIME-Tools, unreal
- Also Listed In: perl5
- License: ART10 GPLv1+
- WWW:
- https://metacpan.org/release/Email-LocalDelivery
- Description:
- This is the second module produced by the "Perl Email Project", a
reaction against the complexity and increasing bugginess of the Mail::*
modules. It delivers an email to a list of mailboxes.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-Email-LocalDelivery>0:mail/p5-Email-LocalDelivery
- To install the port:
- cd /usr/ports/mail/p5-Email-LocalDelivery/ && make install clean
- To add the package, run one of these commands:
- pkg install mail/p5-Email-LocalDelivery
- pkg install p5-Email-LocalDelivery
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-Email-LocalDelivery
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1653926144
SHA256 (Email-LocalDelivery-1.201.tar.gz) = 9590b41c39ded9490a09fc6627c4c9ee8e239d73174b1ccb4966815afeb838af
SIZE (Email-LocalDelivery-1.201.tar.gz) = 19179
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- p5-Email-FolderType>=0.700 : mail/p5-Email-FolderType
- p5-Email-Simple>=1.998 : mail/p5-Email-Simple
- p5-File-Path-Expand>=1.01 : devel/p5-File-Path-Expand
- perl5>=5.32.r0<5.33 : lang/perl5.32
- perl5>=5.32.r0<5.33 : lang/perl5.32
- Runtime dependencies:
-
- p5-Email-FolderType>=0.700 : mail/p5-Email-FolderType
- p5-Email-Simple>=1.998 : mail/p5-Email-Simple
- p5-File-Path-Expand>=1.01 : devel/p5-File-Path-Expand
- perl5>=5.32.r0<5.33 : lang/perl5.32
- This port is required by:
- for Build
-
- mail/p5-Email-Delete
- mail/p5-Email-Filter
- mail/p5-Email-LocalDelivery-Ezmlm
- www/p5-Jifty
- for Run
-
- mail/p5-Email-Delete
- mail/p5-Email-Filter
- mail/p5-Email-LocalDelivery-Ezmlm
- www/p5-Jifty
Configuration Options:
- No options to configure
- Options name:
- mail_p5-Email-LocalDelivery
- USES:
- perl5
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.201 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.201 20 Jul 2022 14:22:19 |
Tobias C. Berner (tcberner) |
mail: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ashish@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam David <adam@FreeBSD.org>
* Adam McDougall <mcdouga9@egr.msu.edu>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Akinori MUSHA aka knu <knu@idaemons.org>
* Alex Deiter <tiamat@komi.mts.ru>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com>
* Alex Perel <veers@disturbed.net> (Only the first 15 lines of the commit message are shown above ) |
1.201 03 Jun 2022 09:00:58 |
Po-Chuan Hsieh (sunpoet) |
mail/p5-Email-LocalDelivery: Update to 1.201
- Add LICENSE
- Sort *_DEPENDS
- Add NO_ARCH
- Sort PLIST
Changes: https://metacpan.org/dist/Email-LocalDelivery/changes |
1.200_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.200_1 09 Jul 2018 08:40:18 |
mat |
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight |
1.200_1 27 May 2018 20:15:20 |
sunpoet |
Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.
With hat: perl |
1.200_1 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
1.200_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have:
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the (Only the first 15 lines of the commit message are shown above ) |
1.200 05 Nov 2013 02:54:54 |
vanilla |
Support STAGEDIR. |
1.200 20 Sep 2013 19:59:14 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
mail) |
1.200 22 Aug 2013 09:46:47 |
mat |
Update to 1.200 |
0.21.7 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
0.21.7 10 Jun 2012 18:42:48 |
swills |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi) |
0.21.7 03 Jun 2012 19:44:26 |
az |
- Remove SITE_PERL from *_DEPENDS |
0.21.7 17 May 2011 11:09:12 |
jadawin |
- Cleaning MD5 in perl@'s ports
Approved by: erwin@ (portmgr) |
0.21.7 17 Apr 2008 14:30:31 |
araujo |
- Take advantage of CPAN macro from bsd.sites.mk, change
${MASTER_SITE_PERL_CPAN} to CPAN.
PR: ports/122674
Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com>
Reworked by: araujo (myself)
Approved by: portmgr (pav) |
0.21.7 23 Jun 2007 20:30:39 |
mat |
Update to 0.21.7 |
0.21.5 16 Apr 2007 14:17:33 |
leeym |
- update to 0.21.5 |
0.21.4 23 Feb 2007 10:55:31 |
lth |
Update to 0.21.4 (distversion 0.214) |
0.21.3 16 Feb 2007 01:30:14 |
leeym |
- update to 0.21.3 |
0.21 26 Jul 2006 11:29:56 |
lth |
- Update to 0.21
- Assign maintainership to perl@ |
0.09 22 Jan 2006 12:50:54 |
edwin |
SHA256ify
Approved by: krion@ |
0.09 22 Jan 2006 02:20:05 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
0.09 21 Sep 2005 19:31:43 |
fenner |
search.cpan.org redirect reduction canonicalization project, pass 1:
URLs automatically rewritten from /search?dist=Foo or /dist/Foo
to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization,
this is the preferred way to refer to modules on search.cpan.org.
This pass brought to you by http://people.freebsd.org/~fenner/fix-search |
0.09 19 Dec 2004 00:25:16 |
lth |
- Update to 0.09
- Moved simple patches into Makefile
- Removed maintainer-only target |
0.08 01 Jun 2004 21:47:54 |
lth |
Fix filehandle passing
Approved by: erwin (mentor) |
0.08 01 Jun 2004 20:22:15 |
lth |
- Update to 0.08
- Fix for perl 5.005_03
Approved by: erwin (mentor) |
0.07 01 Jun 2004 12:32:33 |
lth |
Change of email address.
Approved by: erwin (mentor) |
0.07 19 Mar 2004 01:51:15 |
trevor |
Add size data, approved by maintainers. |
0.07 16 Nov 2003 21:49:29 |
krion |
- Update to version 0.07
PR: 59346
Submitted by: Lars Thegler <lars@thegler.dk> (maintainer) |
0.06 02 Nov 2003 10:13:30 |
krion |
- Update to 0.06
- Now works with perl 5.005_03
PR: 58817
Submitted by: maintainer |
0.05 01 Sep 2003 20:25:41 |
krion |
- New port mail/p5-Email-LocalDelivery
This is the second module produced by the "Perl Email Project",
a reaction against the complexity and increasing bugginess of
the Mail::* modules. It delivers an email to a list of
mailboxes.
PR: 56267
Submitted by: Lars Thegler <lars@thegler.dk> |