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) combination for a given watch list. This is what FreshPorts will look for.

non port: devel/p5-SVN-Web/Makefile

Number of commits found: 46

Wednesday, 28 Feb 2024
15:53 Michael Osipov (michaelo) search for other commits by this committer
*/*: Properly depend on Subversion LTS or latest with WITH_SUBVERSION_VER

When LTS version of Subversion is set in make.conf (WITH_SUBVERSION_VER)
depending ports will still depend on latest version (devel/subversion)
instead of LTS one (devel/subversion-lts). This will cause dependency
conflicts when packages are distributed with Poudriere, namely pkg(8)
will report them and fail to install.
Make all affected ports properly depend on the right port based on the
value set in WITH_SUBVERSION_VER.

Approved by:	jrm (mentor), otis (mentor), lev (maintainer timeout)
Differential Revision:	https://reviews.freebsd.org/D43864
commit hash: e83f0a9c84eabcc1307440925cc8d2d6b3dc4566 commit hash: e83f0a9c84eabcc1307440925cc8d2d6b3dc4566 commit hash: e83f0a9c84eabcc1307440925cc8d2d6b3dc4566 commit hash: e83f0a9c84eabcc1307440925cc8d2d6b3dc4566 e83f0a9
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
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.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 7 Apr 2021
08:09 Mathieu Arnold (mat) search for other commits by this committer
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c commit hash: cf118ccf875508b9a1c570044c93cfcc82bd455c cf118cc
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Saturday, 19 Dec 2020
20:19 sunpoet search for other commits by this committer
Add LICENSE

- Fix *_DEPENDS: p5-Locale-Maketext-Simple is not required
- Sort *_DEPENDS
- Remove DISTNAME
- Add NO_ARCH
- Sort PLIST
- Bump PORTREVISION for dependency change
Original commitRevision:558615 
Monday, 9 Jul 2018
08:40 mat search for other commits by this committer
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
Original commitRevision:474242 
Thursday, 9 Nov 2017
14:48 danfe search for other commits by this committer
Remove two BROKEN_powerpc statements that do not reflect current reality.

Tested on:	Mac mini G4
Original commitRevision:453819 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Wednesday, 19 Aug 2015
17:24 pgollucci search for other commits by this committer
p5-* use BROKEN_* helpers

Wit Hat: perl@
Original commitRevision:394803 
Sunday, 3 May 2015
20:45 amdmi3 search for other commits by this committer
- Fix shebangs

Approved by:	portmgr blanket
MFH:		2015Q2
Original commitRevision:385350 
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 
Thursday, 31 Oct 2013
07:36 vanilla search for other commits by this committer
Support STAGEDIR.
Original commitRevision:332205 
Tuesday, 22 Oct 2013
16:57 mat search for other commits by this committer
Try and be consistent with what commands are silent and not in *install.

- MKDIR is silent
- ECHO is silent
- INSTALL_* are not silent
- CP/FIND/... are not silent

I fixed a few PORTDOCS misusage, I'll do a second pass.

With Hat:	perl@
Original commitRevision:331301 
Friday, 20 Sep 2013
17:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
Original commitRevision:327724 
Friday, 2 Aug 2013
18:52 mat search for other commits by this committer
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
Original commitRevision:324174 
Sunday, 11 Nov 2012
15:24 swills search for other commits by this committer
- Update to 0.63
- Add missing p5-Plack dependency
- Install the templates, CSS and psgi file(s) that are needed to make it work

PR:		ports/173344
Feature safe:	yes
Original commitRevision:307320 
Monday, 24 Sep 2012
18:27 swills search for other commits by this committer
- Fix plist damage caused in last commit

Pointed out by:	rafan
Pointy hat to:	swills
Approved by:	rafan (maintainer)
Original commitRevision:304793 
Saturday, 22 Sep 2012
19:46 swills search for other commits by this committer
- Update to 0.61

PR:		ports/171128
Approved by:	maintainer timeout (rafan, >3 weeks)
Original commitRevision:304718 
Friday, 29 Jun 2012
18:26 az search for other commits by this committer
- Remove SITE_PERL from *_DEPENDS

Approved by: portmgr@ (bapt@)
Original commit
Sunday, 10 Jun 2012
18:42 swills search for other commits by this committer
- 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)
Original commit
Thursday, 10 Nov 2011
21:46 linimon search for other commits by this committer
Mark as broken on powerpc: fails to configure.

Hat:            portmgr
Feature safe:   yes
Original commit
Tuesday, 18 May 2010
04:08 pgollucci search for other commits by this committer
- Chase devel/apr -> devel/apr1 shuffling

PR:             ports/146553
Submitted by:   myself (pgollucci@)
With Hat:       apache@
Original commit
Wednesday, 5 May 2010
21:52 pgollucci search for other commits by this committer
4/5: Chase devel/apr shlib bump

PR:             ports/146130
Approved by:    portmgr (pav)
Tested by:      -exp run (pav)
With Hat:       apache@
Original commit
Sunday, 20 Dec 2009
12:48 rafan search for other commits by this committer
- Fix assertion failed (*path != '/') for SVN 1.5 and above

PR:             ports/141778
Submitted by:   Bernhard Froehlich <decke at bluelife.at>
Obtained from:  CPAN RT Bug# 37388 [1]

[1] http://rt.cpan.org/Public/Bug/Display.html?id=37388#txn-543810
Original commit
Wednesday, 22 Jul 2009
16:27 pgollucci search for other commits by this committer
- 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)
Original commit
Tuesday, 21 Apr 2009
13:53 rafan search for other commits by this committer
- Fix HTML/Text diff with Subversion 1.5
- Bump PORTREVISION

PR:             ports/133877
Submitted by:   Will Bond <will at imarc.net>
Original commit
Sunday, 20 Jul 2008
10:33 rafan search for other commits by this committer
- Fix for using with subversion 1.5 (the patches work with subversion 1.4)
- Bump PORTREVISION
- Move post-install under bsd.port.pre.mk

PR:             ports/125701
Submitted by:   mitsuru at riken.jp
Original commit
Saturday, 5 Jul 2008
03:54 rafan search for other commits by this committer
- Bump PORTREVISION for devel/apr update

PR:             ports/125276
Submitted by:   rodrigc
Original commit
Monday, 30 Jun 2008
12:36 lev search for other commits by this committer
  Bump PORTREVISION due to subversion upgrade.
Original commit
10:00 lev search for other commits by this committer
  (1) Upgrade subversion to version 1.5.0.
  (2) Make binding ports to be real ports, which installs only bindings and
      depend on subversion.
  (3) Rename bindings ports to reflect perl5/python/ruby modules naming scheme.
  (4) Re-base subversion-freebsd to `devel/subversion'.
  (5) Fix all ports, which depends on subversion bindings.
Original commit
Friday, 6 Jun 2008
13:21 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Thursday, 17 Apr 2008
14:30 araujo search for other commits by this committer
- 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)
Original commit
Wednesday, 2 May 2007
15:34 rafan search for other commits by this committer
- Update to 0.53
- Remove perl < 5.6 support
- Remove now useless TARGETDIR
Original commit
Wednesday, 24 Jan 2007
06:31 rafan search for other commits by this committer
- Update to 0.52
Original commit
Wednesday, 17 Jan 2007
07:58 rafan search for other commits by this committer
- Update to 0.51
Original commit
Tuesday, 16 Jan 2007
10:18 rafan search for other commits by this committer
- Update to 0.50
Original commit
Thursday, 14 Sep 2006
14:28 rafan search for other commits by this committer
- Update to 0.49
Original commit
Sunday, 13 Aug 2006
12:32 rafan search for other commits by this committer
- Respect DESTDIR
- Remove unnecessary dependencies pulled by PERL_MODBUILD
  Bump PORTREVISION for this.

PR:             ports/101886
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Original commit
Tuesday, 27 Jun 2006
03:58 rafan search for other commits by this committer
Change to my FreeBSD.org email.

Approved by:    delphij (mentor)
Original commit
Monday, 8 May 2006
02:55 clsung search for other commits by this committer
- Update to 0.47

PR:             ports/96963
Submitted by:   maintainer (Rong-En Fan)
Original commit
Thursday, 16 Mar 2006
12:25 novel search for other commits by this committer
- Update to 0.46
- Tell users what to do after installation in pkg-message.
- Add WWW entry in pkg-descr

PR:             94513
Submitted by:   Rong-En Fan (maintainer)
Original commit
Monday, 30 Jan 2006
14:27 lth search for other commits by this committer
Update to 0.43. Now requires perl from ports.

PR:             ports/92419
Submitted by:   lth
Approved by:    maintainer
Original commit
Monday, 13 Dec 2004
10:14 vanilla search for other commits by this committer
Upgrade to 0.38.

PR:             ports/74980
Original commit
Wednesday, 11 Aug 2004
16:47 vanilla search for other commits by this committer
- Update to 0.37, unbreak it
- Take maintainership

PR:             ports/70302
Submitted by:   Rong-En Fan <rafan@infor.org>
Approved by:    maintainer.
Original commit
Sunday, 11 Jul 2004
01:06 kris search for other commits by this committer
BROKEN: Missing dependency
Original commit
Tuesday, 16 Mar 2004
16:55 vanilla search for other commits by this committer
Add p5-SVN-Web 0.36, subversion repository web frontend.

PR:             ports/64292
Submitted by:   Autrijus Tang <autrijus@autrijus.org>
Original commit

Number of commits found: 46