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: databases/p5-Class-DBI-Loader/Makefile

Number of commits found: 43

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
Monday, 20 May 2019
13:04 mat search for other commits by this committer
Remove Created by lines where I am the one.
Original commitRevision:502104 
Saturday, 5 Jan 2019
09:00 amdmi3 search for other commits by this committer
- Add LICENSE
- Add NO_ARCH
- Switch to options helpers

Approved by:	portmgr blanket
Original commitRevision:489308 
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 
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 
Thursday, 12 Mar 2015
23:00 adamw search for other commits by this committer
Some OCD cleanups on some of the perl@ ports.

- Remove dependencies in core
- Put testing depends in TEST_DEPENDS
- Remove unnecessary bsd.port.options.mk inclusions
- Remove checks for Perl versions that no longer exist in the ports tree
- Sort plists, some of which were so jumbled that I have to assume
  the plist was randomized before committing

A lot of the plist changes in this commit are moving PERL5_MAN3 after
SITE_PERL. It's repo churn now, but it makes updating the ports later
far easier.
Original commitRevision:381151 
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, 3 Nov 2013
06:53 vanilla search for other commits by this committer
Support STAGEDIR.
Original commitRevision:332592 
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
16:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Original commitRevision:327717 
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, 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, 31 May 2012
11:19 bapt search for other commits by this committer
Convert to new options framework
Original commit
Monday, 20 Jun 2011
08:34 az search for other commits by this committer
- Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.
  See http://wiki.freebsd.org/Perl for details.
- Change maintainership from ports@ to perl@ for ports in this changeset.
- Remove MD5 checksum
Original commit
Wednesday, 2 Dec 2009
22:53 leeym search for other commits by this committer
- remove Text::Balanced dependency
- bump PORTREVISION
Original commit
Sunday, 16 Aug 2009
09:22 linimon search for other commits by this committer
Reset lbr@FreeBSD.org due to maintainer-timeouts and no response to email.

Hat:            portmgr
Original commit
Saturday, 8 Sep 2007
00:54 linimon search for other commits by this committer
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
Original commit
Wednesday, 25 Apr 2007
20:03 lbr search for other commits by this committer
Update to 0.34

PR:             112110
Submitted by:   Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
Original commit
Friday, 2 Jun 2006
13:50 lbr search for other commits by this committer
- Update from v0.32 to v0.33
- Clean up Makefile and portlint errors
- Update pkg-plist to respect NOPORTDOCS

0.33
       - Implement the 'require' parameter. Suggested by esh at exile.ru

PR:             98181
Submitted by:   aaron
Approved by:    erwin (mentor, implicit, seeing spots)
Original commit
Friday, 19 May 2006
07:36 lbr search for other commits by this committer
Make dependencies added in 1.18 optional.

Submitted by:   kuriyama
Approved by:    erwin (mentor)
Original commit
Monday, 1 May 2006
13:52 lbr search for other commits by this committer
Changing email-address on my 80 ports.

Approved by:    erwin (mental)
Original commit
Sunday, 30 Apr 2006
14:43 lbr search for other commits by this committer
Fix breakage.  Third time's the charm.

Approved by:    erwin (mentor)
Original commit
13:04 lbr search for other commits by this committer
Whitespace snuck in after \..

Approved by:    erwin (mentor)
Original commit
12:59 lbr search for other commits by this committer
add missing dependencies

PR:             ports/96423
Submitted by:   Fernan Aguero <fernan@iib.unsam.edu.ar>
Approved by:    erwin (mentor)
Original commit
Tuesday, 28 Mar 2006
14:25 lth search for other commits by this committer
- Update to 0.32
- Assign maintainership to submitter

PR:             ports/92865
Submitted by:   Lars Balker Rasmussen <lars@balker.dk>
Approved by:    mat
Original commit
Tuesday, 31 Jan 2006
17:12 erwin search for other commits by this committer
- Update to 0.29
- Mark for perl 5.6.0 or higher.

PR:             92621
Submitted by:   Lars Balker Rasmussen <lars@balker.dk>
Approved by:    mat
Original commit
Monday, 20 Jun 2005
14:15 mat search for other commits by this committer
Update to 0.22
Submitted by: Lars Balker Rasmussen <lars balker dk>
Original commit
Wednesday, 4 May 2005
10:40 lth search for other commits by this committer
Update to 0.20

Approved by:    mat (blanket)
Original commit
Wednesday, 20 Apr 2005
13:29 mat search for other commits by this committer
Update to 0.19
Original commit
Monday, 14 Mar 2005
12:43 mat search for other commits by this committer
Update to 0.17
Original commit
Monday, 21 Feb 2005
17:07 mat search for other commits by this committer
Update to 0.16
Original commit
Tuesday, 8 Feb 2005
12:51 mat search for other commits by this committer
Update to 0.14
Original commit
Friday, 28 Jan 2005
12:41 mat search for other commits by this committer
Update to 1.12
Original commit
Thursday, 13 Jan 2005
20:46 mat search for other commits by this committer
Add a missing dependency

Submitted by:   Matt Adams <matt.adams@morcor.com>
Original commit
Wednesday, 22 Dec 2004
13:36 mat search for other commits by this committer
Update to 0.11
Original commit
Monday, 20 Dec 2004
13:05 mat search for other commits by this committer
Update to 0.10
Original commit
Tuesday, 16 Nov 2004
16:50 mat search for other commits by this committer
Update to 0.05
Original commit
Tuesday, 13 Jul 2004
11:57 mat search for other commits by this committer
Update to 0.03
Original commit
Tuesday, 24 Feb 2004
12:31 mat search for other commits by this committer
Update to 0.02
Original commit
Tuesday, 16 Sep 2003
05:43 erwin search for other commits by this committer
Conditionalise dependencies on databases/p5-DBI: for perl
5.005_03 use databases/p5-DBI-137 as newer versions do not
support the old perl.

Note that for some port, I merely removed the explicit
dependency as they already have implicit dependencies
via other ports.

Approved by:    portmgr (marcus)
Original commit
Wednesday, 20 Aug 2003
08:47 mat search for other commits by this committer
Add p5-Class-DBI-Loader 0.01

Dynamic definition of Class::DBI sub classes.

PR:             54719
Submitted by:   me
Approved by:    demon (mentor)
Original commit

Number of commits found: 43