non port: databases/p5-Class-DBI-Loader/Makefile |
Number of commits found: 43 |
Wednesday, 7 Sep 2022
|
21:10 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.
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)
b7f0544 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Monday, 20 May 2019
|
13:04 mat
Remove Created by lines where I am the one.
 |
Saturday, 5 Jan 2019
|
09:00 amdmi3
- Add LICENSE
- Add NO_ARCH
- Switch to options helpers
Approved by: portmgr blanket
 |
Monday, 9 Jul 2018
|
08:40 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
 |
Friday, 1 Apr 2016
|
14:00 mat
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight
 |
Thursday, 12 Mar 2015
|
23:00 adamw
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.
 |
Wednesday, 26 Nov 2014
|
13:08 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
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
 |
Sunday, 3 Nov 2013
|
06:53 vanilla
Support STAGEDIR.
 |
Tuesday, 22 Oct 2013
|
16:57 mat
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@
 |
Friday, 20 Sep 2013
|
16:13 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
 |
Friday, 2 Aug 2013
|
18:52 mat
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
 |
Sunday, 10 Jun 2012
|
18:42 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)
 |
Thursday, 31 May 2012
|
11:19 bapt
Convert to new options framework
 |
Monday, 20 Jun 2011
|
08:34 az
- 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
 |
Wednesday, 2 Dec 2009
|
22:53 leeym
- remove Text::Balanced dependency
- bump PORTREVISION
 |
Sunday, 16 Aug 2009
|
09:22 linimon
Reset lbr@FreeBSD.org due to maintainer-timeouts and no response to email.
Hat: portmgr
 |
Saturday, 8 Sep 2007
|
00:54 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
 |
Wednesday, 25 Apr 2007
|
20:03 lbr
Update to 0.34
PR: 112110
Submitted by: Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
 |
Friday, 2 Jun 2006
|
13:50 lbr
- 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)
 |
Friday, 19 May 2006
|
07:36 lbr
Make dependencies added in 1.18 optional.
Submitted by: kuriyama
Approved by: erwin (mentor)
 |
Monday, 1 May 2006
|
13:52 lbr
Changing email-address on my 80 ports.
Approved by: erwin (mental)
 |
Sunday, 30 Apr 2006
|
14:43 lbr
Fix breakage. Third time's the charm.
Approved by: erwin (mentor)
 |
13:04 lbr
Whitespace snuck in after \..
Approved by: erwin (mentor)
 |
12:59 lbr
add missing dependencies
PR: ports/96423
Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar>
Approved by: erwin (mentor)
 |
Tuesday, 28 Mar 2006
|
14:25 lth
- Update to 0.32
- Assign maintainership to submitter
PR: ports/92865
Submitted by: Lars Balker Rasmussen <lars@balker.dk>
Approved by: mat
 |
Tuesday, 31 Jan 2006
|
17:12 erwin
- 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
 |
Monday, 20 Jun 2005
|
14:15 mat
Update to 0.22
Submitted by: Lars Balker Rasmussen <lars balker dk>
 |
Wednesday, 4 May 2005
|
10:40 lth
Update to 0.20
Approved by: mat (blanket)
 |
Wednesday, 20 Apr 2005
|
13:29 mat
Update to 0.19
 |
Monday, 14 Mar 2005
|
12:43 mat
Update to 0.17
 |
Monday, 21 Feb 2005
|
17:07 mat
Update to 0.16
 |
Tuesday, 8 Feb 2005
|
12:51 mat
Update to 0.14
 |
Friday, 28 Jan 2005
|
12:41 mat
Update to 1.12
 |
Thursday, 13 Jan 2005
|
20:46 mat
Add a missing dependency
Submitted by: Matt Adams <matt.adams@morcor.com>
 |
Wednesday, 22 Dec 2004
|
13:36 mat
Update to 0.11
 |
Monday, 20 Dec 2004
|
13:05 mat
Update to 0.10
 |
Tuesday, 16 Nov 2004
|
16:50 mat
Update to 0.05
 |
Tuesday, 13 Jul 2004
|
11:57 mat
Update to 0.03
 |
Tuesday, 24 Feb 2004
|
12:31 mat
Update to 0.02
 |
Tuesday, 16 Sep 2003
|
05:43 erwin
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)
 |
Wednesday, 20 Aug 2003
|
08:47 mat
Add p5-Class-DBI-Loader 0.01
Dynamic definition of Class::DBI sub classes.
PR: 54719
Submitted by: me
Approved by: demon (mentor)
 |
Number of commits found: 43 |