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) |
0.36_2 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 ) |
0.36_2 20 Jul 2022 14:23:26
    |
Tobias C. Berner (tcberner)  |
www: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
*
* <hvo.pm@xs4all.nl>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Dalton <aaron@daltons.ca>
* Aaron LI <aly@aaronly.me>
* Aaron Zauner <az_mail@gmx.at>
* Abel Chow <achow@transoft.net>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Adrian Steinmann <ast@marabu.ch>
* Akinori MUSHA aka knu <knu@idaemons.org> (Only the first 15 lines of the commit message are shown above ) |
0.36_2 06 Apr 2021 14:31:07
    |
Mathieu Arnold (mat)  |
Remove # $FreeBSD$ from Makefiles. |
0.36_2 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 |
0.36_2 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 |
0.36_2 15 Sep 2017 08:58:50
  |
mat  |
Fix license information for portgs that use "the same license as Perl".
Sponsored by: Absolight |
0.36_2 01 Apr 2016 14:33:58
  |
mat  |
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.
With hat: portmgr
Sponsored by: Absolight |
0.36_2 31 Mar 2016 15:23:13
  |
mat  |
Cleanup dependencies on lang/p5-Scalar-List-Utils.
The different cases are:
- Only bring it if the one bundled with Perl is outdated.
- The version bundled with all our Perl is sufficient.
- Scalar-List-Util is not really needed by the port.
(looking for /(Sub|Scalar|List)::Util/ returns nothing.)
While there, do some minor cleanup that caught my eye.
PR: 208378
With hat: perl@
Sponsored by: Absolight |
0.36_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 ) |
0.36 03 Nov 2013 15:16:25
  |
az  |
- support STAGEDIR
- add LICENSE (where it possible) |
0.36 20 Sep 2013 23:36:54
  |
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
www) |
0.36 29 Aug 2013 17:16:53
  |
sunpoet  |
- Add WWW
- Use single space after WWW:
- Remove Author line |
0.36 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.36 29 Mar 2013 00:44:54
  |
eadler  |
For perl@ owned ports:
- Fix COMMENT
- Trim header |
0.36 30 Jul 2012 19:47:54
 |
sunpoet  |
- Update to 0.36
Changes: http://search.cpan.org/dist/HTTP-MobileAgent/Changes |
0.35 11 Jan 2012 13:24:34
 |
swills  |
- Update to 0.35
- Fix DEPENDS |
0.33 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 |
0.33 07 Oct 2011 11:22:46
 |
culot  |
- Fix LICENSE (Artistic 1 instead of Artistic 2)
- Pet portlint(1)
PR: ports/161336
Submitted by: Simon Olofsson <simon@olofsson.de> |
0.33 28 Apr 2011 06:57:42
 |
bapt  |
- update to 0.33
- changes: http://cpansearch.perl.org/src/KURIHARA/HTTP-MobileAgent-0.33/Changes |
0.32 28 Mar 2011 06:27:54
 |
bapt  |
- update to 0.32
- add licenses
- changes: http://cpansearch.perl.org/src/KURIHARA/HTTP-MobileAgent-0.32/Changes |
0.29 19 Mar 2011 12:38:54
 |
miwi  |
- Get Rid MD5 support |
0.29 09 Sep 2010 02:13:52
 |
wen  |
- Update to 0.29 |
0.28 09 Jul 2009 00:27:53
 |
pgollucci  |
- Update to 0.28 |
0.27 14 Apr 2008 12:38:23
 |
mat  |
Update to 0.27 |
0.26 22 Aug 2006 06:20:21
 |
clsung  |
- Update to 0.26
- Use BUILD_DEPENDS=${RUN_DEPENDS}
PR: ports/102346
Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org> |
0.25 09 Feb 2006 09:07:04
 |
tobez  |
Update to 0.25. |
0.24 22 Jan 2006 02:58:25
 |
edwin  |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
0.24 12 Nov 2005 13:41:00
 |
tobez  |
Update to 0.24. Assign maintainer to perl@. |
0.22 11 Nov 2005 01:18:01
 |
linimon  |
With portmgr hat on, reset maintainership of knu's ports since he has
been inactive more than 6 months. We hope to see him back sometime. |
0.22 10 Mar 2005 09:20:13
 |
leeym  |
- Update to 0.22
- add WWW in pkg-descr
- fix PLIST
- add some minor fixes which make portlint happier
PR: 78123
Submitted by: leeym |
0.21 28 Feb 2005 01:18:50
 |
kris  |
BROKEN: Incomplete pkg-plist |
0.21 11 Jun 2004 04:36:42
 |
knu  |
Update to 0.21. |
0.18 22 Mar 2004 15:05:32
 |
knu  |
Add SIZE data.
Submitted by: trevor |
0.18 24 Oct 2003 14:15:32
 |
erwin  |
Remove the recursive assignment of SITE_PERL to ${SITE_PERL} introduced
in the last commit. |
0.18 24 Oct 2003 12:05:09
 |
ijliao  |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
0.18 29 Sep 2003 09:54:37
 |
knu  |
Update to 0.18. |
0.12 20 Jun 2003 11:02:40
 |
knu  |
Update to 0.12. |
0.09 02 Apr 2003 11:46:43
 |
knu  |
Update to 0.09. |
0.08 27 Feb 2003 05:37:23
 |
knu  |
Add p5-HTTP-MobileAgent, an HTTP mobile user agent string parser for
Perl. |