Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
09 Jul 2018 08:40:18
0.03_2

|
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 |
04 Jun 2018 18:02:38
0.03_2

|
sunpoet  |
Add LICENSE
- Sort PLIST
- Fix and update WWW |
01 Apr 2016 14:00:57
0.03_2

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
11 May 2015 12:04:19
0.03_2

|
mat  |
Move p5- ports from ports@ to perl@.
With hat: perl@
Sponsored by: Absolight |
26 Nov 2014 13:08:38
0.03_2

|
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 ) |
27 Oct 2014 10:55:59
0.03_1

|
bapt  |
Cleanup plist |
28 Oct 2013 13:46:26
0.03_1

|
vanilla  |
support STAGEDIR. |
20 Sep 2013 17:13:47
0.03_1

|
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
02 Aug 2013 18:21:06
0.03_1

|
az  |
- Convert to new perl framework |
18 Jun 2013 13:49:02
0.03_1

|
az  |
- Cleanup outdated checks. (PERL_LEVEL < 5.12)
- Assign some p5- ports under perl@ maintainership.
Approved by: portmgr@ (bapt@) |
10 Jun 2012 18:42:48
0.03_1
|
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) |
13 Mar 2012 16:15:36
0.03_1
|
pgollucci  |
- Revert ports/165605 as requested by portmgr@
Note: devel/p5-B-Size and devel/p5-Devel-Arena
where intentionally not restored.
PR: ports/165605
Approved by: portmgr (bapt)
Feature safe: yes (I sure hope so) |
08 Mar 2012 18:45:38
0.03_1
|
pgollucci  |
- Remove ports that only work with < perl 5.12 (devel/p5-B-Size,
devel/p5-Devel-Arena)
- Remove conditionals for PERL_LEVEL < 501200
- Remove regression-test targets b/c this will be centralized in Mk/bsd.perl.mk
- Other minor cleanups
RUN_DEPENDS = ${BUILD_DEPENDS} -> RUN_DEPENDS:= ${BUILD_DEPENDS}
PR: ports/165605
Submitted by: pgollucci (myself)
Approved by: portmgr (linimon)
Exp Run by: linimon
Tested by: make index |
03 Jul 2011 14:59:23
0.03_1
|
ohauer  |
-remove MD5 |
15 Nov 2008 06:40:06
0.03_1
|
leeym  |
- update dependency
- drop MAINTAINERship
- bump PORTREVISION |
21 Feb 2008 09:19:37
0.03
|
leeym  |
- utilize CPAN macro |
01 Feb 2007 07:02:03
0.03
|
leeym  |
- remove legacy support code for Perl 5.005_03 |
22 Jan 2006 08:30:12
0.03
|
edwin  |
SHA256ify
Approved by: krion@ |
22 Jan 2006 01:48:34
0.03
|
edwin  |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
04 Mar 2005 20:19:03
0.03
|
leeym  |
- add p5-CPAN-YACSmoke-0.03
This module uses the backend of CPANPLUS to run tests on modules recently
uploaded to CPAN and post results to the CPAN Testers list.
It will create a database file in the .cpanplus directory, which it uses
to track tested distributions. This information will be used to keep from
posting multiple reports for the same module, and to keep from testing
modules that use non-passing modules as prerequisites.
If it is given multiple versions of the same distribution to test, it will
test the most recent version only. If that version fails, then it will test
a previous version.
By default it uses CPANPLUS configuration settings. |