Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.83 04 Aug 2024 17:14:27 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Update to 3.83
Changes: https://metacpan.org/dist/HTML-Parser/changes |
3.82 23 Mar 2024 14:50:11 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Update to 3.82
- Add LICENSE_FILE
Changes: https://metacpan.org/dist/HTML-Parser/changes |
3.81 05 Mar 2023 03:25:40 |
Wen Heping (wen) |
www/p5-HTML-Parser: Update to 3.81 |
3.80 30 Dec 2022 09:06:05 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Update to 3.80
Changes: https://metacpan.org/dist/HTML-Parser/changes |
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) |
3.78 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 ) |
3.78 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 ) |
3.78 17 Apr 2022 23:59:09 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Update to 3.78
Changes: https://metacpan.org/dist/HTML-Parser/changes |
3.77 25 Mar 2022 08:57:53 |
Wen Heping (wen) |
www/p5-HTML-Parser: Update to 3.77 |
3.76_1 19 Sep 2021 06:00:51 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Strip shared library
- Bump PORTREVISION for package change |
3.76 30 May 2021 19:58:27 |
Po-Chuan Hsieh (sunpoet) |
www/p5-HTML-Parser: Update to 3.76
Changes: https://metacpan.org/changes/distribution/HTML-Parser |
3.75 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
3.75 10 Oct 2020 07:47:24 |
sunpoet |
Update to 3.75
Changes: https://metacpan.org/changes/distribution/HTML-Parser |
3.72 05 Oct 2020 17:45:32 |
rene |
Return jadawin@'s ports to the pool after taking in his commit bit.
With hat: portmgr-secretary |
3.72 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 |
3.72 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 |
3.72 15 Sep 2017 08:58:50 |
mat |
Fix license information for portgs that use "the same license as Perl".
Sponsored by: Absolight |
3.72 31 May 2017 17:30:23 |
sunpoet |
Add LICENSE
Approved by: portmgr (blanket) |
3.72 01 Apr 2016 14:33:58 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.
With hat: portmgr
Sponsored by: Absolight |
3.72 20 Jan 2016 10:39:09 |
jadawin |
- Update to 3.72 |
3.71_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 ) |
3.71 10 Jun 2014 12:14:14 |
mat |
Remove all the bootstrap files (.bs) from the plists.
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.
PR: 190681
Submitted by: mat
Exp-Run by: antoine
Sponsored by: Absolight |
3.71 07 Nov 2013 15:56:49 |
jadawin |
- Support STAGE
Sponsored by: OBS |
3.71 20 Sep 2013 23:36:54 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
www) |
3.71 02 Sep 2013 09:44:14 |
az |
- convert to the new perl5 framework
Approved by: portmgr (bapt@, blanket) |
3.71 17 May 2013 08:09:58 |
jadawin |
- Update to 3.71
- Changelog: http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.71/Changes |
3.70 30 Apr 2013 09:12:38 |
jadawin |
- Update to 3.70
- Changelog: http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.70/Changes |
3.69 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) |
3.69 24 Oct 2011 04:17:38 |
dougb |
Remove more tags from pkg-descr files fo the form:
- Name
em@i.l
or variations thereof. While I'm here also fix some whitespace and other
formatting errors, including moving WWW: to the last line in the file. |
3.69 18 Oct 2011 08:19:36 |
jadawin |
- Update to 3.69
- Changelog: http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.69/Changes |
3.68 19 Mar 2011 12:38:54 |
miwi |
- Get Rid MD5 support |
3.68 02 Sep 2010 12:34:30 |
jadawin |
- Update to 3.68
- Changelog: http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.68/Changes |
3.67 23 Aug 2010 19:45:23 |
jadawin |
- Update to 3.67
- Changelog: <http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.67/Changes> |
3.66 15 Jul 2010 11:49:46 |
jadawin |
- Update to 3.66
- Changelog: <http://search.cpan.org/src/GAAS/HTML-Parser-3.66/Changes> |
3.65 05 May 2010 15:12:34 |
jadawin |
- Update to 3.65
- Changelog: http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.65/Changes |
3.64 26 Oct 2009 09:29:45 |
jadawin |
- Update to 3.64
- Changelog <http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.64/Changes> |
3.63 23 Oct 2009 08:31:04 |
jadawin |
- Update to 3.63
PR: ports/139860
Submitted by: leeym@ |
3.62 15 Aug 2009 07:35:59 |
jadawin |
- Update to 3.62 |
3.61 22 Jun 2009 07:50:00 |
jadawin |
- Update 3.61 |
3.60 10 Feb 2009 12:26:57 |
jadawin |
- Update to 3.60
- Take maintainership |
3.59 26 Nov 2008 19:32:44 |
jadawin |
- Update to 3.59 |
3.58 19 Nov 2008 19:27:44 |
jadawin |
- Update to 3.58 |
3.56_1 29 Feb 2008 07:49:20 |
leeym |
- use CPAN macro
- simplify dependency
- bump PORTREVISION |
3.56 08 Sep 2007 01:11:48 |
linimon |
Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.
Drop support for antique perl.
Work done by: gabor
Sponsored by: Google Summer of Code 2007
Hat: portmgr |
3.56 15 Jan 2007 02:54:39 |
clsung |
- Update to 3.56 |
3.55 13 Jul 2006 13:11:00 |
mat |
Update to 3.55 |
3.54 29 Apr 2006 05:49:00 |
leeym |
- update to 3.54 |
3.53 28 Apr 2006 08:16:33 |
tobez |
Update to 3.53. |
3.52 27 Apr 2006 08:58:51 |
leeym |
- update to 3.52 |
3.51 23 Mar 2006 00:44:29 |
leeym |
- update to 3.51 |
3.50 16 Feb 2006 12:29:32 |
lth |
Update to 3.50. Patch now included in distribution. |
3.49_2 10 Feb 2006 08:35:32 |
tobez |
Make it build with older gcc (4.X). |
3.49_1 09 Feb 2006 09:41:22 |
tobez |
It does not build with old Perl, so require Perl from ports. |
3.49 09 Feb 2006 09:38:35 |
tobez |
Update to 3.49; assign maintainer to perl@. |
3.48 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) |
3.48 06 Jan 2006 10:28:10 |
demon |
Release to ports@ |
3.48 06 Jan 2006 02:17:44 |
leeym |
- add missing optional dependency URI in BUILD_DEPENDS |
3.48 06 Jan 2006 02:04:31 |
leeym |
- remove IGNORE on old perl
PR: 90747
Submitted by: leeym
Approved by: maintainer timeout |
3.48 08 Dec 2005 11:12:08 |
demon |
Update to 3.48.
PR: 90083
Submitted by: leeym |
3.47 30 Nov 2005 13:14:35 |
demon |
Update to 3.47. |
3.46 17 Nov 2005 07:28:12 |
demon |
Require perl version 5.6 or above. |
3.46 14 Nov 2005 10:54:08 |
demon |
Update to 3.46. |
3.45 11 Feb 2005 07:38:29 |
demon |
Upgrade to version 3.45.
Submitted by: Vyacheslav I. Ivanchenko <ivi@dhs.net.ru> |
3.38 14 Nov 2004 10:41:11 |
demon |
Update to version 3.38;
Correct COMMENT.
Submitted by: Alex Kapranoff <kappa@rambler-co.ru> |
3.36 28 May 2004 07:59:10 |
foxfair |
Approved by: maintainer (demon@)
Upgrade p5-HTML-Parser to 3.36 |
3.35 24 Feb 2004 11:08:06 |
mat |
Update to 3.35
Approved by: maintainer |
3.34 29 Oct 2003 08:59:10 |
demon |
Update to version 3.34.
PR: 58641
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
3.32 11 Oct 2003 11:19:37 |
demon |
Update to version 3.32.
PR: 57848
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
3.31 27 Aug 2003 13:41:44 |
mat |
Update to 3.31
Add WWW
Use SITE_PERL |
3.28 25 Jun 2003 13:58:27 |
demon |
Update to version 3.28.
PR: 53716
Submitted by: Rob Evers <rob@debank.tv> |
3.27 07 Mar 2003 06:12:57 |
ade |
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti. |
3.27 23 Feb 2003 19:32:14 |
sobomax |
Update to 3.27. |
3.26 19 May 2002 16:21:49 |
demon |
Upgrade to version 3.26.
PR: 38192
Submitted by: David Lay <dave@staff.netc.net.au> |
21 Jun 2001 08:32:37 |
demon |
Update to 3.25. |
10 May 2001 10:34:25 |
vanilla |
Upgrade to latest version: p5-Apache-MP3 => 2.16
p5-Convert-UUlib => 0.111 p5-Email-Find => 0.03 p5-GD => 1.33
p5-HTML-Parser => 3.24 p5-I18N-Charset => 1.08 p5-I18N-LangTags => 0.20
p5-MIME-Lite => 2.111 p5-Set-Scalar => 1.09 p5-Sort-ArbBiLex => 3.4
p5-URI => 1.12 p5-Unix-Syslog => 0.95 |
07 May 2001 08:37:07 |
demon |
Upgrade to 3.23. |
19 Apr 2001 06:21:42 |
vanilla |
Upgrade to 3.22. |
05 Apr 2001 03:19:28 |
vanilla |
Upgrade to 3.20, Add RUN_DEPENDS to HTML::Tagset now. |
13 Mar 2001 10:46:31 |
demon |
Update to version 3.19. |
01 Mar 2001 09:32:09 |
vanilla |
Upgrade p5-Compress-Zlib => 1.11 p5-HTML-Parser => 3.18
p5-MIME-Base64 => 2.12 p5-URI => 1.11 |
01 Mar 2001 06:39:18 |
vanilla |
Remove do-configure section, use PERL_CONFIGURE now. |
05 Feb 2001 15:33:58 |
olgeni |
Some spaces -> tabs for ports/www. |
08 Jan 2001 22:23:27 |
vanilla |
Upgrade p5-HTML-Parser => 3.15 p5-Net-Daemon => 0.34 p5-Storable =>
1.0.7 |
15 Dec 2000 03:05:50 |
vanilla |
Upgrade to 3.14. |
13 Nov 2000 12:45:41 |
demon |
Change MAINTAINER field. I am now at FreeBSD dot org |
13 Oct 2000 03:38:44 |
vanilla |
Upgrade to 3.13, and add DEPENDS to p5-HTML-Tagset. |
08 Oct 2000 08:11:25 |
asami |
Convert category www to new layout. |
02 Aug 2000 01:15:08 |
jedgar |
- Update port to 3.10 - Change maintainer (ports@FreeBSD.org -> dima@Chg.RU)
|
17 Jun 2000 03:37:15 |
will |
Lots and lots of cleanups. Teach p5-* in general about PKGNAMEPREFIX. Add
some missing/wrong dependencies. Show how to respect CC/CFLAGS. Many
miscellaneous modifications. I used more excessive hacks to force p5-Jcode
and p5-WWW-Search to respect CC/CFLAGS. |
09 Jun 2000 23:52:32 |
will |
Update to 3.08. |