notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: databases/p5-Class-DBI-Loader/Makefile
SVNWeb

Number of commits found: 43

Wed, 7 Sep 2022
[ 21:10 Stefan Eßer (se) search for other commits by this committer ]    commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  commit hash:b7f05445c00f2625aa19b4154ebcbce5ed2daa52  b7f0544  (Only the first 10 of 27931 ports in this commit are shown above. View all ports for this commit)
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.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Wed, 7 Apr 2021
[ 08:09 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  commit hash:cf118ccf875508b9a1c570044c93cfcc82bd455c  cf118cc  (Only the first 10 of 8873 ports in this commit are shown above. View all ports for this commit)
One more small cleanup, forgotten yesterday.
Reported by:	lwhsu
Tue, 6 Apr 2021
[ 14:31 Mathieu Arnold (mat) search for other commits by this committer ]    commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  commit hash:305f148f482daf30dcf728039d03d019f88344eb  305f148  (Only the first 10 of 29333 ports in this commit are shown above. View all ports for this commit)
Remove # $FreeBSD$ from Makefiles.
Mon, 20 May 2019
[ 13:04 mat search for other commits by this committer ] Original commit   Revision:502104 (Only the first 10 of 70 ports in this commit are shown above. View all ports for this commit)
Remove Created by lines where I am the one.
Sat, 5 Jan 2019
[ 09:00 amdmi3 search for other commits by this committer ] Original commit   Revision:489308
- Add LICENSE
- Add NO_ARCH
- Switch to options helpers

Approved by:	portmgr blanket
Mon, 9 Jul 2018
[ 08:40 mat search for other commits by this committer ] Original commit   Revision:474242 (Only the first 10 of 429 ports in this commit are shown above. View all ports for this commit)
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
Fri, 1 Apr 2016
[ 14:00 mat search for other commits by this committer ] Original commit   Revision:412346 (Only the first 10 of 5103 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Thu, 12 Mar 2015
[ 23:00 adamw search for other commits by this committer ] Original commit   Revision:381151 (Only the first 10 of 229 ports in this commit are shown above. View all ports for this commit)
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.
Wed, 26 Nov 2014
[ 13:08 mat search for other commits by this committer ] Original commit   Revision:373448 (Only the first 10 of 10077 ports in this commit are shown above. View all ports for this commit)
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
(Only the first 15 lines of the commit message are shown above View all of this commit message)
Sun, 3 Nov 2013
[ 06:53 vanilla search for other commits by this committer ] Original commit   Revision:332592 (Only the first 10 of 228 ports in this commit are shown above. View all ports for this commit)
Support STAGEDIR.
Tue, 22 Oct 2013
[ 16:57 mat search for other commits by this committer ] Original commit   Revision:331301 (Only the first 10 of 94 ports in this commit are shown above. View all ports for this commit)
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@
Fri, 20 Sep 2013
[ 16:13 bapt search for other commits by this committer ] Original commit   Revision:327717 (Only the first 10 of 927 ports in this commit are shown above. View all ports for this commit)
Add NO_STAGE all over the place in preparation for the staging support (cat:
databases)
Fri, 2 Aug 2013
[ 18:52 mat search for other commits by this committer ] Original commit   Revision:324174 (Only the first 10 of 1871 ports in this commit are shown above. View all ports for this commit)
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default.
Sun, 10 Jun 2012
[ 18:42 swills search for other commits by this committer ] Original commit  (Only the first 10 of 639 ports in this commit are shown above. View all ports for this commit)
- 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)
Thu, 31 May 2012
[ 11:19 bapt search for other commits by this committer ] Original commit  (Only the first 10 of 31 ports in this commit are shown above. View all ports for this commit)
Convert to new options framework
Mon, 20 Jun 2011
[ 08:34 az search for other commits by this committer ] Original commit  (Only the first 10 of 21 ports in this commit are shown above. View all ports for this commit)
- 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
Wed, 2 Dec 2009
[ 22:53 leeym search for other commits by this committer ] Original commit 
- remove Text::Balanced dependency
- bump PORTREVISION
Sun, 16 Aug 2009
[ 09:22 linimon search for other commits by this committer ] Original commit  (Only the first 10 of 137 ports in this commit are shown above. View all ports for this commit)
Reset lbr@FreeBSD.org due to maintainer-timeouts and no response to email.

Hat:            portmgr
Sat, 8 Sep 2007
[ 00:54 linimon search for other commits by this committer ] Original commit  (Only the first 10 of 60 ports in this commit are shown above. View all ports for this commit)
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
Wed, 25 Apr 2007
[ 20:03 lbr search for other commits by this committer ] Original commit 
Update to 0.34

PR:             112110
Submitted by:   Ying-Chieh Liao <ijliao@csie.nctu.edu.tw>
Fri, 2 Jun 2006
[ 13:50 lbr search for other commits by this committer ] Original commit 
- 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)
Fri, 19 May 2006
[ 07:36 lbr search for other commits by this committer ] Original commit 
Make dependencies added in 1.18 optional.

Submitted by:   kuriyama
Approved by:    erwin (mentor)
Mon, 1 May 2006
[ 13:52 lbr search for other commits by this committer ] Original commit  (Only the first 10 of 80 ports in this commit are shown above. View all ports for this commit)
Changing email-address on my 80 ports.

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

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

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

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

PR:             ports/92865
Submitted by:   Lars Balker Rasmussen <lars@balker.dk>
Approved by:    mat
Tue, 31 Jan 2006
[ 17:12 erwin search for other commits by this committer ] Original commit 
- 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
Mon, 20 Jun 2005
[ 14:15 mat search for other commits by this committer ] Original commit 
Update to 0.22
Submitted by: Lars Balker Rasmussen <lars balker dk>
Wed, 4 May 2005
[ 10:40 lth search for other commits by this committer ] Original commit 
Update to 0.20

Approved by:    mat (blanket)
Wed, 20 Apr 2005
[ 13:29 mat search for other commits by this committer ] Original commit 
Update to 0.19
Mon, 14 Mar 2005
[ 12:43 mat search for other commits by this committer ] Original commit 
Update to 0.17
Mon, 21 Feb 2005
[ 17:07 mat search for other commits by this committer ] Original commit 
Update to 0.16
Tue, 8 Feb 2005
[ 12:51 mat search for other commits by this committer ] Original commit 
Update to 0.14
Fri, 28 Jan 2005
[ 12:41 mat search for other commits by this committer ] Original commit 
Update to 1.12
Thu, 13 Jan 2005
[ 20:46 mat search for other commits by this committer ] Original commit 
Add a missing dependency

Submitted by:   Matt Adams <matt.adams@morcor.com>
Wed, 22 Dec 2004
[ 13:36 mat search for other commits by this committer ] Original commit 
Update to 0.11
Mon, 20 Dec 2004
[ 13:05 mat search for other commits by this committer ] Original commit 
Update to 0.10
Tue, 16 Nov 2004
[ 16:50 mat search for other commits by this committer ] Original commit 
Update to 0.05
Tue, 13 Jul 2004
[ 11:57 mat search for other commits by this committer ] Original commit 
Update to 0.03
Tue, 24 Feb 2004
[ 12:31 mat search for other commits by this committer ] Original commit 
Update to 0.02
Tue, 16 Sep 2003
[ 05:43 erwin search for other commits by this committer ] Original commit  (Only the first 10 of 50 ports in this commit are shown above. View all ports for this commit)
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)
Wed, 20 Aug 2003
[ 08:47 mat search for other commits by this committer ] Original commit 
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