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-ExtUtils-CBuilder/Makefile

Number of commits found: 60

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
Wednesday, 17 Feb 2021
18:02 sunpoet search for other commits by this committer
Update to 0.280236

Changes:	https://metacpan.org/changes/distribution/ExtUtils-CBuilder
Original commitRevision:565562 
Sunday, 8 Nov 2020
17:12 sunpoet search for other commits by this committer
Update to 0.280235

Changes:	https://metacpan.org/changes/distribution/ExtUtils-CBuilder
Original commitRevision:554501 
Saturday, 25 Jan 2020
18:25 sunpoet search for other commits by this committer
Update to 0.280234

Changes:	https://metacpan.org/changes/distribution/ExtUtils-CBuilder
Original commitRevision:524069 
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 
Wednesday, 3 Apr 2019
00:03 sunpoet search for other commits by this committer
Update to 0.280231

- Add LICENSE_FILE
- Take maintainership

Changes:	https://metacpan.org/changes/distribution/ExtUtils-CBuilder
Original commitRevision:497599 
Thursday, 23 Nov 2017
19:09 sunpoet search for other commits by this committer
Update to 0.280230

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:454787 
Friday, 15 Sep 2017
08:58 mat search for other commits by this committer
Fix license information for portgs that use "the same license as Perl".

Sponsored by:	Absolight
Original commitRevision:449893 
Saturday, 15 Jul 2017
17:23 sunpoet search for other commits by this committer
Update to 0.280226

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:445906 
Saturday, 10 Oct 2015
07:05 sunpoet search for other commits by this committer
- Update to 0.280224

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:398976 
Wednesday, 3 Jun 2015
20:05 sunpoet search for other commits by this committer
- Update to 0.280223
- Remove DOCS option
- Add NO_ARCH

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:388487 
Thursday, 1 Jan 2015
16:09 sunpoet search for other commits by this committer
- Update to 0.280220
- Use real PORTVERSION
- Add LICENSE
- Sort PLIST

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:375938 
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 
Saturday, 1 Mar 2014
13:57 sunpoet search for other commits by this committer
- Convert to new options framework
- Remove outdated PERL_LEVEL check
Original commitRevision:346621 
Tuesday, 29 Oct 2013
09:01 vanilla search for other commits by this committer
Support STAGEDIR.
Original commitRevision:331936 
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 
Sunday, 22 Sep 2013
18:05 bapt search for other commits by this committer
Fix NO_STAGE attribution
Original commitRevision:327888 
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 
Sunday, 8 Sep 2013
21:07 tobez search for other commits by this committer
Update to 0.2802.12.

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:326771 
Friday, 6 Sep 2013
18:18 tobez search for other commits by this committer
Update to 0.2802(.)10.

Changes:	http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commitRevision:326534 
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 
Monday, 17 Dec 2012
14:58 az search for other commits by this committer
Cleanup supporting perl version 5.8 and 5.10,
lang/perl5.8 and lang/5.10 will be removed from ports tree soon.
Original commitRevision:309098 
Tuesday, 13 Mar 2012
16:15 pgollucci search for other commits by this committer
- Revert ports/165605 as requested by portmgr@

Note: devel/p5-B-Size and devel/p5-Devel-Arena
where intentionally not restored.

PR:             ports/165605
Approved by:    portmgr (bapt)
Feature safe:   yes (I sure hope so)
Original commit
Thursday, 8 Mar 2012
18:45 pgollucci search for other commits by this committer
- Remove ports that only work with < perl 5.12 (devel/p5-B-Size,
devel/p5-Devel-Arena)
- Remove conditionals for PERL_LEVEL < 501200
- Remove regression-test targets b/c this will be centralized in Mk/bsd.perl.mk
- Other minor cleanups
  RUN_DEPENDS = ${BUILD_DEPENDS} -> RUN_DEPENDS:= ${BUILD_DEPENDS}

PR:             ports/165605
Submitted by:   pgollucci (myself)
Approved by:    portmgr (linimon)
Exp Run by:     linimon
Tested by:      make index
Original commit
Friday, 24 Feb 2012
10:06 sunpoet search for other commits by this committer
- Update to 0.280205

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commit
Saturday, 11 Jun 2011
19:46 sunpoet search for other commits by this committer
- Update to 0.280202

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commit
Saturday, 8 Jan 2011
11:04 az search for other commits by this committer
- Put workaround with missed dep IPC::Cmd which exists in coremodules at
perl5.10 but not in 5.8.

PR:             ports/153782
Submitted by:   Phil Pennock <phil.pennock@globnix.org>
Original commit
Wednesday, 15 Dec 2010
07:33 bapt search for other commits by this committer
- update to 0.2802
- changes:
http://cpansearch.perl.org/src/DAGOLDEN/ExtUtils-CBuilder-0.2802/Changes
Original commit
Wednesday, 17 Mar 2010
08:37 tobez search for other commits by this committer
Update to 0.2703.

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commit
Monday, 22 Feb 2010
21:27 tobez search for other commits by this committer
Update to 0.2702.

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Feature safe:   yes
Original commit
Tuesday, 16 Feb 2010
15:27 tobez search for other commits by this committer
Update to 0.2701.

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Feature safe:   yes
Original commit
Friday, 30 Oct 2009
17:07 leeym search for other commits by this committer
- update to 0.27
Original commit
Tuesday, 1 Sep 2009
09:17 leeym search for other commits by this committer
- update to 0.260301
Original commit
Thursday, 23 Jul 2009
21:59 leeym search for other commits by this committer
- update to 0.2603
Original commit
Thursday, 9 Jul 2009
00:27 pgollucci search for other commits by this committer
- Update to 0.2602
Original commit
Thursday, 28 Aug 2008
02:10 clsung search for other commits by this committer
- Update to 0.24

Changes:        http://search.cpan.org/dist/ExtUtils-CBuilder/Changes
Original commit
Monday, 21 Apr 2008
12:51 mat search for other commits by this committer
Update to 0.23
Original commit
Saturday, 15 Mar 2008
18:10 leeym search for other commits by this committer
- simplify dependency
- bump PORTREVISION
Original commit
Tuesday, 19 Feb 2008
05:33 leeym search for other commits by this committer
- Use CPAN macro;
- Add missing deps;
- Add missing WWW to pkg-descr.

PR:             120802
Submitted by:   Felippe de Meirelles Motta <lippemail at gmail.com>
Original commit
Sunday, 17 Feb 2008
01:50 leeym search for other commits by this committer
- update to 0.22
Original commit
Thursday, 20 Dec 2007
09:50 gabor search for other commits by this committer
- Update to 0.21
Original commit
Monday, 4 Jun 2007
17:10 erwin search for other commits by this committer
Update to 0.19
Original commit
Tuesday, 11 Apr 2006
14:51 mat search for other commits by this committer
Update to 0.18
Give to perl@
Original commit
Wednesday, 16 Nov 2005
15:09 mat search for other commits by this committer
Update to 0.15
Original commit
Tuesday, 30 Aug 2005
11:35 mat search for other commits by this committer
Update to 0.13
Original commit
Monday, 20 Jun 2005
15:42 mat search for other commits by this committer
Update to 0.12
Original commit
Saturday, 11 Jun 2005
16:13 skv search for other commits by this committer
* reflect renaming on CPAN File-Spec to PathTools
   + add devel/p5-PathTools, remove devel/p5-File-Spec
   + update dependencies for all affected ports (make them unconditional),
     bump PORTREVISION for these ports
module was renamed
* reflect renaming on CPAN PodParser to Pod-Parser
   + add textproc/p5-Pod-Parser, remove textproc/p5-PodParser
   + update dependencies for all affected ports (make them unconditional),
     bump PORTREVISION for these ports

* for all changed ports make dependencies on File::Temp, Digest::MD5,
  Storable unconditional

* remove 'CONFIGURE_ARGS= INSTALLDIRS=site' from Makefile's
  (this variable is forced by bsd.port.mk now)

* update Class-Autouse to 1.17

* update POE-API-Hooks to 1.05

* make portlint happy (clean IGNORE, convert spaces to tabs and so on)
Original commit
Wednesday, 6 Apr 2005
13:20 mat search for other commits by this committer
Update to 0.11
Original commit
Tuesday, 15 Mar 2005
14:26 mat search for other commits by this committer
Update to 0.10
Original commit
Wednesday, 9 Feb 2005
16:34 mat search for other commits by this committer
Update to 0.09
Original commit
Friday, 21 Jan 2005
19:56 mat search for other commits by this committer
Update to 0.08
Original commit
Tuesday, 18 Jan 2005
18:43 mat search for other commits by this committer
Update to 0.07
Original commit
Tuesday, 28 Dec 2004
13:04 mat search for other commits by this committer
Update to 0.06
Add docs
Original commit
Thursday, 14 Oct 2004
13:13 mat search for other commits by this committer
Update to 0.05
Original commit
Tuesday, 12 Oct 2004
13:33 mat search for other commits by this committer
Update to 0.04
Original commit
Tuesday, 18 May 2004
13:24 mat search for other commits by this committer
Update to 0.03
Original commit
Tuesday, 24 Feb 2004
14:02 mat search for other commits by this committer
Update to 0.02
Original commit
Friday, 20 Feb 2004
13:52 mat search for other commits by this committer
Add p5-ExtUtils-CBuilder 0.01, compile and link C code for Perl modules.
Original commit

Number of commits found: 60