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) |
2.214 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 ) |
2.214 20 Jul 2022 14:21:35 |
Tobias C. Berner (tcberner) |
devel: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* "Waitman Gobble" <uzimac@da3m0n8t3r.com>
* <jkoshy@FreeBSD.org>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron H. K. Diep <ahkdiep@gmail.com>
* Aaron Hurt <ahurt@anbcs.com>
* Abel Chow <abel_chow@yahoo.com>
* Adam McLaurin
* Adam Saponara <as@php.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
2.214 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
2.214 01 Feb 2021 19:45:32 |
sunpoet |
Update to 2.214
- Use TEST_DEPENDS
- Add NO_ARCH
- Sort PLIST
Changes: https://metacpan.org/changes/distribution/Test-Inline |
2.213_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 |
2.213_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 |
2.213_1 15 Sep 2017 08:58:50 |
mat |
Fix license information for portgs that use "the same license as Perl".
Sponsored by: Absolight |
2.213_1 19 May 2016 10:21:25 |
amdmi3 |
- Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by: portmgr blanket |
2.213_1 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
2.213_1 14 Sep 2015 12:19:50 |
mat |
Make it so that the default Perl is always called perl5.
- Move Perl's man1 files along with its man3 files.
- Move where Perl installs its modules man1 pages.
- Convert the ports installing man1 pages.
- Make different Perl versions installable at the same time.
Though you should note that only the default version can be used to
install Perl modules, and the non default Perl versions cannot use the
modules installed via ports if they contain .so as they are installed
in a version specific directory.
Reviewed by: bapt (the Mk bits)
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3542 |
2.213_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 ) |
2.213 27 Oct 2014 10:55:59 |
bapt |
Cleanup plist |
2.213 31 Oct 2013 14:31:31 |
vanilla |
Support STAGEDIR. |
2.213 20 Sep 2013 17:13:47 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3) |
2.213 29 Aug 2013 17:16:53 |
sunpoet |
- Add WWW
- Use single space after WWW:
- Remove Author line |
2.213 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
2.213 16 May 2013 08:53:54 |
culot |
- Update to 2.213
- Trim Makefile's header
- Add LICENSE (Artistic 1 & GPL 1)
- Remove port name from COMMENT
Changes: http://search.cpan.org/dist/Test-Inline/Changes |
2.212 17 Dec 2012 14:58:24 |
az |
Cleanup supporting perl version 5.8 and 5.10,
lang/perl5.8 and lang/5.10 will be removed from ports tree soon. |
2.212 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) |
2.212 13 Mar 2012 16:15:36 |
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) |
2.212 08 Mar 2012 18:45:38 |
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 |
2.212 24 Oct 2011 09:11:38 |
dougb |
The vast majority of pkg-descr files had the following format when they
had both lines:
Author: ...
WWW: ....
So standardize on that, and move them to the end of the file when necessary.
Also fix some more whitespace, and remove more "signature tags" of varying
forms, like -- name, etc.
s/AUTHOR/Author/
A few other various formatting issues |
2.212 22 Nov 2010 13:04:40 |
wen |
- Update to 2.212
Changelog: http://cpansearch.perl.org/src/ADAMK/Test-Inline-2.212/Changes |
2.211 16 Jan 2010 14:45:49 |
kuriyama |
- Remove unneeded dependencies which is in perl-5.8.9 dist from ports
maintained by (perl|ports|kuriyama)@FreeBSD.org.
- Targets are: Test::Simple, Digest::MD5, Locale-Maketext,
ExtUtils::MakeMaker, ExtUtils::ParseXS, File::Temp, Getopt::Long,
Encode, Digest, Pod::Parser, File::Spec. |
2.211 22 Jul 2009 16:27:08 |
pgollucci |
- lang/perl5.6 is dead, remove PERL_LEVEL/PERL_VERSION < 500801 checks
PR: ports/135398
Tested by: 2 -exp runs by pav
Approved by: portmgr (pav) |
2.211 15 Jul 2009 11:58:41 |
tobez |
Update to 2.211.
Changes: http://search.cpan.org/dist/Test-Inline/Changes |
2.210 30 May 2009 21:54:39 |
miwi |
- Update to 2.210 |
2.209 26 Apr 2009 09:27:01 |
leeym |
- update to 2.209 |
2.208_1 29 Jan 2009 17:41:17 |
erwin |
Reassign my p5-* ports to perl@ so more than one person
can look at them. |
2.208_1 30 Nov 2008 18:28:09 |
pav |
- Catch up with Params::Util which now lives under ${PERL_ARCH}
Reported by: pointyhat |
2.208_1 31 Jul 2008 18:28:40 |
erwin |
Add missing dependencies
Submitted by: Fred Cox <sailorfred@yahoo.com> |
2.208 23 May 2008 21:18:39 |
olgeni |
Hunt for typos in devel/p5-*. |
2.208 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) |
2.208 22 Dec 2007 11:00:44 |
erwin |
Update to 2.208 |
2.207 18 Aug 2007 08:35:54 |
erwin |
Update to 2.207 |
2.205 25 Jul 2007 09:44:49 |
erwin |
Update to 2.205 |
2.204 16 Jul 2007 16:53:22 |
erwin |
- Update to 2.204
- Remove 4.x workaround |
2.202 11 Jul 2007 22:03:41 |
erwin |
Update to 2.202 |
2.201 25 Jan 2007 17:23:25 |
erwin |
Update to 2.201 |
2.105 06 Oct 2006 22:21:36 |
erwin |
Update to 2.105 |
2.103 07 Jun 2006 14:01:47 |
edwin |
Remove obsolete SIZE |
2.103 18 Feb 2006 17:33:46 |
erwin |
Update to 2.103
PR: 93506
Submitted by: aaron |
0.16_1 22 Jan 2006 01:48:34 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
0.16_1 26 Nov 2005 17:00:48 |
pav |
- Add SHA256
Approved by: maintainer |
0.16_1 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.16_1 11 Jun 2005 16:13:12 |
skv |
* reflect renaming on CPAN File-Spec to PathTools
+ add devel/p5-PathTools, remove devel/p5-File-Spec
+ update dependencies for all affected ports (make them unconditional),
bump PORTREVISION for these ports
module was renamed
* reflect renaming on CPAN PodParser to Pod-Parser
+ add textproc/p5-Pod-Parser, remove textproc/p5-PodParser
+ update dependencies for all affected ports (make them unconditional),
bump PORTREVISION for these ports
* for all changed ports make dependencies on File::Temp, Digest::MD5,
Storable unconditional
* remove 'CONFIGURE_ARGS= INSTALLDIRS=site' from Makefile's
(this variable is forced by bsd.port.mk now)
* update Class-Autouse to 1.17
* update POE-API-Hooks to 1.05
* make portlint happy (clean IGNORE, convert spaces to tabs and so on) |
0.16 11 Feb 2004 14:33:08 |
erwin |
Update to 0.16 |
0.15 24 Oct 2003 12:05:09 |
ijliao |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
0.15 12 Jun 2003 16:41:16 |
erwin |
Change to my FreeBSD.org address |
0.15 13 Apr 2003 12:28:23 |
edwin |
Conditionalize dependencies for moudules included in perl 5.8
Make dependencies on modules included in the perl 5.8
distribution conditional on the perl version installed.
While I'm here, remove SITE_PERL and MAN(3)PREFIX.
17 + 29 + 234 = 280 PRs. It's about time he starts doing the work himself!
PR: ports/50588
Submitted by: Erwin Lansing <erwin@lansing.dk> |
0.15 13 Apr 2003 11:37:25 |
edwin |
maintainer-update WWW for cpan from /search?dist=module to /dist/module
portsurvey seems to time out on the old style
http://search.cpan.org/search?dist=module, so this is a
good time to convert all my ports to the new
http://search.cpan.org/dist/module format.
PR: ports/50686
Submitted by: Erwin Lansing <erwin@lansing.dk> |
0.15 21 Feb 2003 11:23:04 |
knu |
De-pkg-comment. |
0.15 12 Feb 2003 10:07:53 |
edwin |
Use PERL_LEVEL < 500601 instead of PERL_VERSION and 5.8.x |
0.15 30 Oct 2002 02:01:48 |
alane |
Use File::Spec port only for perl < 5.8.
Approved by: maintainer |
0.15 12 Sep 2002 11:03:09 |
tobez |
Add p5-Test-Inline 0.15, Test::Inline - inlining your tests next to the
code being tested.
PR: 42687
Submitted by: Erwin Lansing <erwin@lansing.dk> |