aboutsummaryrefslogtreecommitdiff
path: root/mail/p5-Email-Abstract
Commit message (Collapse)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add NO_ARCHSunpoet Po-Chuan Hsieh2020-01-081-0/+2
| | | | Notes: svn path=/head/; revision=522425
* Remove all := from BUILD_DEPENDS, here are never needed.Mathieu Arnold2018-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=474242
* Update WWWSunpoet Po-Chuan Hsieh2018-05-271-1/+1
| | | | | | | | | | search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl Notes: svn path=/head/; revision=470993
* Fix license information for portgs that use "the same license as Perl".Mathieu Arnold2017-09-151-1/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=449893
* Moving maintainership burden onto broader shouldersLars Thegler2017-04-071-1/+1
| | | | Notes: svn path=/head/; revision=437950
* Purge checks for perl < 5.20. For p5-Net, remove the IPV6 knob which onlyAdam Weinberger2016-12-311-9/+3
| | | | | | | affected 5.18 and lower. Notes: svn path=/head/; revision=430155
* - Fix trailing whitespace in MakefilesDmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415501
* - fix missing dependency [1]Lars Thegler2016-05-071-1/+12
| | | | | | | | | | - add LICENSE - bump PORTREVISION Noticed by: John Hein <john.hein@microsemi.com> [1] Notes: svn path=/head/; revision=414775
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-1/+0
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* - Update to 3.008Lars Thegler2015-01-052-4/+3
| | | | Notes: svn path=/head/; revision=376344
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Update to 3.007Lars Thegler2014-04-292-3/+3
| | | | Notes: svn path=/head/; revision=352637
* - stage supportAndrej Zverev2014-01-052-9/+7
| | | | | | | Approved by: portmgr (blanket infrastructure) Notes: svn path=/head/; revision=338791
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | mail) Notes: svn path=/head/; revision=327742
* - Update to 3.006Lars Thegler2013-09-072-4/+4
| | | | | | | | | | Changes: 3.006 2013-09-01 08:41:48 America/New_York require Email::Simple 1.998 to allow ->new(\$string) Notes: svn path=/head/; revision=326641
* - Convert to new perl frameworkAndrej Zverev2013-08-071-1/+2
| | | | | | | | | | | per port extra changes: devel/p5-Perl-Version remove outage PERL_LEVEL check devel/p5-Devel-LeakTrace-Fast remove perl version requiment 5.12.0- (no need in current version) Approved by: lth@ (maintainer) Notes: svn path=/head/; revision=324352
* - update to 3.005Lars Thegler2013-08-072-9/+3
| | | | | | | - trim Makefile header Notes: svn path=/head/; revision=324348
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orSteve Wills2012-06-101-1/+1
| | | | | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi) Notes: svn path=/head/; revision=298970
* - Fix *_DEPENDS: p5-Module-Pluggable is already in all supported Perl releasesLars Thegler2012-05-021-1/+1
| | | | | | | | | | - Bump PORTREVISION for dependency change PR: ports/167148 Submitted by: sunpoet Notes: svn path=/head/; revision=295877
* Update to 3.004Lars Thegler2011-03-162-3/+3
| | | | Notes: svn path=/head/; revision=271033
* Update to 3.003Lars Thegler2010-12-132-7/+6
| | | | | | | | PR: ports/153078 Submitted by: "Philip M. Gollucci" <pgollucci@p6m7g8.com> Notes: svn path=/head/; revision=266203
* Update to 3.002Lars Thegler2010-07-122-4/+4
| | | | Notes: svn path=/head/; revision=257685
* Update to 3.001Lars Thegler2008-12-282-4/+4
| | | | Notes: svn path=/head/; revision=224876
* Update to 2.134Lars Thegler2007-12-173-5/+7
| | | | Notes: svn path=/head/; revision=203936
* Update to 2.132. Remove 4.x cruft.Lars Thegler2007-03-252-10/+6
| | | | Notes: svn path=/head/; revision=188247
* Update to 2.131Lars Thegler2006-09-062-6/+6
| | | | Notes: svn path=/head/; revision=172394
* Update to 2.13Lars Thegler2006-07-262-4/+4
| | | | Notes: svn path=/head/; revision=168791
* Update to 2.11. Now require Perl from ports.Lars Thegler2006-07-242-13/+9
| | | | | | | | PR: ports/100695 Submitted by: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> Notes: svn path=/head/; revision=168671
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154158
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-2/+2
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154113
* - Update to 2.01Lars Thegler2004-11-214-28/+8
| | | | | | | - Moved simple patches into Makefile Notes: svn path=/head/; revision=122083
* Update to 2.0Lars Thegler2004-08-293-5/+5
| | | | Notes: svn path=/head/; revision=117557
* Add p5-Email-Abstract 1.0, unified interface to mail representations.Lars Thegler2004-07-266-0/+82
Notes: svn path=/head/; revision=114811