notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: www/mod_perl2/pkg-plist

Number of commits found: 41

Friday, 1 Feb 2019
13:52 brnrd search for other commits by this committer
www/mod_perl2: Remove Apache 2.2 support

PR:		235263
Submitted by:	sunpoet
With hat:	apache
Original commitRevision:491809 
Sunday, 14 Jun 2015
12:49 ohauer search for other commits by this committer
- update to rc3
- move ITHREAD check to pre-configure (dependencies are already installed) [1]
- use @sample macro for apache module file [2]

[1] If this is not working as expected, detection will be replaced with an
OPTION

PR:	200799 [2]
Original commitRevision:389628 
Monday, 8 Jun 2015
21:44 ohauer search for other commits by this committer
- add patch from upstream trunk
- mark broken with perl5.22.x
- fix pkg-plist if build against apache22 and perl with THREADS=off

PR:		15750
Submitted by:	nick(_at_)foobar.org
Original commitRevision:388885 
Sunday, 31 May 2015
13:21 ohauer search for other commits by this committer
- update to 2.0.9-rc2
- install modules file instead activating the module with apxs

RC2 has really gone a long way, and is a real candidate to
become the next official release.

Tested against apache22/24 MPM prefork/event/worker.

Changes:
========
Remove PerlInterpScope. This has not been working properly with threaded
MPMs with httpd-2.4.x and the use-case of this directive was questionable.
[Jan Kaluza]

Allow running the test suite with httpd-2.4.x when mod_access_compat is not
loaded. [Steve Hay]

Add support for Apache httpd-2.4.x. [Torsten Foertsch, Jan Kaluza,
Steve Hay, Gozer]

Don't call modperl_threaded_mpm() et al. from XS code. Fixes Debian Bug
#765174. [Niko Tyni <ntyni@debian.org>]

Make sure modperl_interp_select uses r->server rather than the passed s
parameter to find the interpreter pool to pull an interpreter from. This
fixes an issue with vhosts with a separate interpreter pool and runtime
dir-config merges that used to pull the interpreter from the wrong pool.
[Torsten Foertsch]

PerlInterpScope is now more advisory. Using $(c|r)->pnotes will bind
the current interpreter to that object for it's lifetime.
$(c|r)->pnotes_kill() can be used to prematurely drop pnotes and
remove this binding. [Torsten Foertsch]

Now correctly invokes PerlCleanupHandlers, even if they are the only
handler type configured for that request [Torsten Foertsch]

For threaded MPMs, change interpreter managment to a new, reference-counted
allocation model. [Torsten Foertsch]

Expose modperl_interp_pool_t via ModPerl::InterpPool, modperl_tipool_t
via ModPerl::TiPool and modperl_tipool_config_t via ModPerl::TiPoolConfig
[Torsten Foertsch]

Expose modperl_interp_t via ModPerl::Interpreter [Torsten Foertsch]

Fix t/compat/apache_file.t on Windows. Apache::File->tmpfile() wants TMPDIR
or TEMP from the environment, or else defaults to /tmp. The latter is no
good on Windows, so make sure the environment variables are passed through.
(TEMP should be set to something suitable on Windows.) [Steve Hay]

Fix t/api/err_headers_out.t with HTTP::Headers > 6.00. [Rolando
<rolosworld@gmail.com>]

with haed apache@
Original commitRevision:388078 
Sunday, 7 Dec 2014
19:19 ohauer search for other commits by this committer
- update apache24 patch to upstream r1638352
- sort pkg-plist to match new makeplist output
- cleanup dirrm in pkg-plist

Changes:
- Don't call modperl_threaded_mpm() et al. from XS code #765174.
Original commitRevision:374222 
Wednesday, 26 Nov 2014
13:08 mat search for other commits by this committer
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
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
Original commitRevision:373448 
Sunday, 7 Sep 2014
14:15 ohauer search for other commits by this committer
- apply patches for apache24 shaped from upstream r1602105 (2.0.9-dev)

The patches are automatically applied if build against apache24.

Interested apache22 users can change the follwing line in the Makefile
 from: .if ${APACHE_VERSION} > 22
 to:   .if ${APACHE_VERSION} >= 22

Changelog (*NIX related):
=item 2.0.9-dev

Make sure modperl_interp_select uses r->server rather than the passed s
parameter to find the interpreter pool to pull an interpreter from. This
fixes an issue with vhosts with a separate interpreter pool and runtime
dir-config merges that used to pull the interpreter from the wrong pool.
[Torsten Foertsch]

PerlInterpScope is now more advisory. Using $(c|r)->pnotes will bind
the current interpreter to that object for it's lifetime.
$(c|r)->pnotes_kill() can be used to prematurely drop pnotes and
remove this binding. [Torsten Foertsch]

Now correctly invokes PerlCleanupHandlers, even if they are the only
handler type configured for that request [Torsten Foertsch]

For threaded MPMs, change interpreter managment to a new, reference-counted
allocation model. [Torsten Foertsch]

Expose modperl_interp_pool_t via ModPerl::InterpPool, modperl_tipool_t
via ModPerl::TiPool and modperl_tipool_config_t via ModPerl::TiPoolConfig
[Torsten Foertsch]

Expose modperl_interp_t via ModPerl::Interpreter [Torsten Foertsch]

Fix t/compat/apache_file.t on Windows. Apache::File->tmpfile() wants TMPDIR
or TEMP from the environment, or else defaults to /tmp. The latter is no
good on Windows, so make sure the environment variables are passed through.
(TEMP should be set to something suitable on Windows.) [Steve Hay]

Fix t/api/err_headers_out.t with HTTP::Headers > 6.00. [Rolando
<rolosworld@gmail.com>]

PR:		191471
Original commitRevision:367548 
Tuesday, 15 Jul 2014
22:14 ohauer search for other commits by this committer
- strip .so files
- sort pkg-plist
- bump PORTREVISION
Original commitRevision:362013 
Tuesday, 10 Jun 2014
12:14 mat search for other commits by this committer
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
Original commitRevision:357300 
Sunday, 10 Nov 2013
23:11 ohauer search for other commits by this committer
- add stage support
Original commitRevision:333454 
Thursday, 5 Jul 2012
19:12 ohauer search for other commits by this committer
- allow build a correct library with clang/gcc47+ by disabling
  APR_INLINE because FreeBSD default port settings not uses
  bundled apr from apache tarball.
- force compiler to use gnu89 C standard.
- bump PORTREVISION

with hat apache@

PR:             ports/168514
Submitted by:   Dima Panov <fluffy@freebsd.org>
Original commit
Sunday, 22 May 2011
22:05 ohauer search for other commits by this committer
- update to mod_perl-2.0.5

committed with hat apache@

PR:             ports/155026 ports/155586 ports/157246
Original commit
Thursday, 3 Jul 2008
01:48 araujo search for other commits by this committer
- With apr 1.x and THREADS, ThreadRWLock is also now XS Wrapped and installed
conditionally.

PR:             ports/125151
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com> (maintainer)
Original commit
Saturday, 7 Jun 2008
15:31 araujo search for other commits by this committer
- Update to 2.0.4.

Changes: http://perl.apache.org/dist/mod_perl-2.0-current/Changes

PR:             ports/123535
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com> (maintainer)
Reworked by:    araujo (myself)
Original commit
Saturday, 19 Jan 2008
19:30 pav search for other commits by this committer
- Make the threadedness depend on the actual build of apr-util/apr, instead on
  an Apache version

PR:             ports/118307 (adapted from)
Submitted by:   Philip M. Gollucci <pgollucci@p6m7g8.com> (maintainer)
Original commit
Saturday, 2 Dec 2006
00:33 miwi search for other commits by this committer
- Update to 2.0.3

PR:             ports/106051
Submitted by:   Philip M. Gollucci <pgollucci@apache.org>
Approved by:    maintainer
Original commit
Monday, 27 Feb 2006
15:12 vd search for other commits by this committer
Fix plist in apache 2.1+ case

PR:             ports/92590 (based on)
Submitted by:   Lars Eggert <lars.eggert@gmx.net> (maintainer)
Reworked by:    vd
Approved by:    portmgr (erwin), Lars Eggert <lars.eggert@gmx.net> (maintainer)
Original commit
Sunday, 22 Jan 2006
02:58 edwin search for other commits by this committer
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry

Approved by:    krion@
PR:             ports/88711 (related)
Original commit
Friday, 23 Dec 2005
03:07 leeym search for other commits by this committer
- plist fix by sime@logos.hr

PR:             90817
Submitted by:   Lars Eggert <lars.eggert@gmx.net>
Original commit
Tuesday, 20 Dec 2005
11:45 edwin search for other commits by this committer
[MAINTAINER] www/mod_perl2: fix for apache21 and higher

        - variant of the fix in ports/90312 (can be closed, too)

        - warn if an apache newer than apache20 is used
          (maintainer can't test)

        - remove warning about API change, it's been a year

PR:             ports/90655
Submitted by:   Lars Eggert <lars.eggert@gmx.net>
Original commit
Friday, 21 Oct 2005
18:04 ehaupt search for other commits by this committer
Update to 2.0.2

PR:             87776
Submitted by:   Lars Eggert <lars.eggert@gmx.net> (maintainer)
Original commit
Friday, 20 May 2005
15:13 jylefort search for other commits by this committer
Update to 2.0.0

PR:             ports/81302
Submitted by:   maintainer
Original commit
Thursday, 19 May 2005
15:50 pav search for other commits by this committer
- Update to 2.0.0r6

PR:             ports/81192
Submitted by:   Lars Eggert <lars.eggert@gmx.net> (maintainer)
Original commit
Tuesday, 17 May 2005
17:13 sem search for other commits by this committer
- Update to 2.0.0-R5
  This release has significant change in API.
  All old code *will* broken.
  Read how to fix it here: http://perl.apache.org/docs/2.0/rename.html

PR:             ports/79962
Submitted by:   maintainer
Original commit
Tuesday, 19 Apr 2005
06:09 sem search for other commits by this committer
- Roll back the last commit as since API has changed
  and it can break all mod_per2 ports.

Reported by:    Daniel Gerzo <danger@rulez.sk>
Original commit
Friday, 15 Apr 2005
17:10 sem search for other commits by this committer
- Update to 2.0.0r5

PR:             ports/79962
Submitted by:   maintainer
Original commit
Tuesday, 11 Jan 2005
17:32 mat search for other commits by this committer
Update to 2.0.0r3

PR:             76044
Submitted by:   maintainer
Original commit
Sunday, 19 Dec 2004
02:06 clement search for other commits by this committer
- Fix plist

Reported by:    pointyhat via kris
PR:             ports/75237
Submitted by:   Lars Eggert <lars.eggert@gmx.net> (maintainer)
Original commit
Tuesday, 14 Dec 2004
02:32 sem search for other commits by this committer
- Update to 1.99r18 (aka 2.0RC1)

PR:             ports/75016
Submitted by:   maintainer
Original commit
Wednesday, 1 Dec 2004
10:22 clement search for other commits by this committer
- update to 1.99r17

PR:             ports/74444
Submitted by:   Lars Eggert <lars.eggert@gmx.net> (maintainer)
Original commit
Thursday, 2 Sep 2004
07:13 sem search for other commits by this committer
Update to 1.99r16.

PR:             ports/71266
Submitted by:   maintainer
Original commit
Wednesday, 2 Jun 2004
10:50 mat search for other commits by this committer
Update to 1.99r14

PR:             67443
Submitted by:   Lars Eggert <lars dot eggert at gmx dot net>
Original commit
Friday, 14 May 2004
16:14 mat search for other commits by this committer
Update to 1.99r13

PR:             66604
Submitted by:   maintainer
Original commit
Saturday, 14 Feb 2004
16:35 pav search for other commits by this committer
- Fix up pkg-plist

PR:             ports/62603 (based on)
Submitted by:   Christopher Nehren <apeiron@comcast.net>
Approved by:    maintainer
Original commit
Monday, 5 Jan 2004
13:22 kuriyama search for other commits by this committer
o Upgrade to 1.99r12.
o Fix plist.

Approved by:    maintainer
Original commit
Sunday, 2 Nov 2003
23:29 naddy search for other commits by this committer
* Fix install with perl < 5.8.

PR:             58490
Submitted by:   Lars Eggert <larse@isi.edu>
Reported by:    Peter McGarvey <xaphod@packet.org.uk>

* Use PERL_CONFIGURE.
* Fix packing list.

Approved by:    maintainer
Original commit
Tuesday, 21 Oct 2003
07:31 foxfair search for other commits by this committer
PR:             58288
Submitted by:   maintainer
Upgrade www/mod_perl2 to 1.99r10, this is a security release for
Perl 5.8.1. For detail please refer:

http://aspn.activestate.com/ASPN/Mail/Message/modperl/1836735
Original commit
Tuesday, 20 May 2003
08:48 nork search for other commits by this committer
Update to 1.99r09.

PR:             ports/52450
Submitted by:   Lars Eggert <larse@isi.edu> (maintainer)
Original commit
Wednesday, 19 Feb 2003
02:52 nork search for other commits by this committer
Correct MAN3 and pkg-plist.

Pointed out by: bento via kris
Submitted by:   Lars Eggert <larse@ISI.EDU> (maintainer)
Original commit
Friday, 14 Feb 2003
10:26 nork search for other commits by this committer
[recommit]

Update to mod_perl2 1.99r08 for Apache2.

Pointed out by: vanilla
Repo copied by: joe (cvs hat)
Original commit
08:44 nork search for other commits by this committer
Add mod_perl2 1.99r08, embeds a Perl interpreter in the
Apache2 server.

PR:             ports/48268
Submitted by:   Lars Eggert <larse@isi.edu>
Original commit

Number of commits found: 41