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: net/p5-Net-Analysis/Makefile
SVNWeb

Number of commits found: 22

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, 20 Jul 2022
[ 14:22 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:6a378e5659b93de6dbe8956246fb3bf971677624  commit hash:6a378e5659b93de6dbe8956246fb3bf971677624  commit hash:6a378e5659b93de6dbe8956246fb3bf971677624  6a378e5  (Only the first 10 of 1159 ports in this commit are shown above. View all ports for this commit)
net: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  <ports@c0decafe.net>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Straup Cope <ascope@cpan.org>
  *  Aaron Zauner <az_mail@gmx.at>
  *  Adam Jette <jettea46@yahoo.com>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Alan Eldridge <alane@geeksrus.net>
  *  Alex Bakhtin <Alex.Bakhtin@gmail.com>
  *  Alex Deiter <Alex.Deiter@Gmail.COM>
  *  Alex Dupre <ale@FreeBSD.org>
  *  Alex Dupre <sysadmin@alexdupre.com>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
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, 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:16 mat search for other commits by this committer ] Original commit   Revision:412348 (Only the first 10 of 2612 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
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, 5 Jan 2014
[ 17:43 az search for other commits by this committer ] Original commit   Revision:338808 (Only the first 10 of 52 ports in this commit are shown above. View all ports for this commit)
- stage support

Approved by:	portmgr (blanket infrastructure)
Fri, 20 Sep 2013
[ 22:10 bapt search for other commits by this committer ] Original commit   Revision:327755 (Only the first 10 of 1288 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:
net)
Fri, 6 Sep 2013
[ 07:00 az search for other commits by this committer ] Original commit   Revision:326468 (Only the first 10 of 19 ports in this commit are shown above. View all ports for this commit)
- convert to the new perl5 framework

Approved by:	portmgr (bapt@, blanket)
Fri, 29 Jun 2012
[ 18:30 az search for other commits by this committer ] Original commit  (Only the first 10 of 11 ports in this commit are shown above. View all ports for this commit)
- Remove SITE_PERL from *_DEPENDS

Approved by: portmgr@ (bapt@)
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)
Wed, 7 Mar 2012
[ 15:41 swills search for other commits by this committer ] Original commit 
- Add TEST_DEPENDS to enable testing

Approved by:    portmgr (blanket)
Sat, 17 Sep 2011
[ 06:49 sunpoet search for other commits by this committer ] Original commit  (Only the first 10 of 309 ports in this commit are shown above. View all ports for this commit)
- Change PERL_CONFIGURE to "yes" for all values less than or equal to 5.8.0+

With hat:       perl
Thu, 19 Aug 2010
[ 18:02 skreuzer search for other commits by this committer ] Original commit 
Update to 0.41

PR:             ports/149199
Submitted by:   Frederic Culot <frederic@culot.org>
Mon, 22 Feb 2010
[ 15:13 skreuzer search for other commits by this committer ] Original commit 
Adopt ports from araujo@

Approved by:    araujo@
Feature safe:   yes
Fri, 23 Oct 2009
[ 00:30 leeym search for other commits by this committer ] Original commit  (Only the first 10 of 28 ports in this commit are shown above. View all ports for this commit)
- replace ${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm with
p5-Params-Validate>=0 since it changed the file path.
- portlint

PR:             follow-up to ports/139837
Submitted by:   Gea-Suan Lin <gslin at gslin.org>
Thu, 17 Apr 2008
[ 14:30 araujo search for other commits by this committer ] Original commit  (Only the first 10 of 2168 ports in this commit are shown above. View all ports for this commit)
- 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)
Sat, 8 Sep 2007
[ 01:02 linimon search for other commits by this committer ] Original commit  (Only the first 10 of 91 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
Sun, 15 Jul 2007
[ 15:55 araujo search for other commits by this committer ] Original commit 
- Update to 0.40.
- Reset maintainership to araujo.

PR:             ports/113416
Submitted by:   Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> (old maintainer)
Approved by:    stas (mentor)
Sat, 23 Dec 2006
[ 02:54 rafan search for other commits by this committer ] Original commit 
- Update to 0.06

PR:             ports/107073
Submitted by:   chinsan
Approved by:    Jin-Shan Tseng <tjs at cdpa.nsysu.edu.tw> (maintainer)
Sun, 17 Sep 2006
[ 07:08 miwi search for other commits by this committer ] Original commit 
- Fix typo's

Approved by:     Jin-Shan Tseng (maintainer)
Wed, 13 Sep 2006
[ 07:17 miwi search for other commits by this committer ] Original commit 
Net::Analysis is a suite of modules that parse tcpdump files,
reconstruct TCP sessions from the packets, and provide a very
lightweight framework for writing protocol anaylsers.

WWW:    http://search.cpan.org/dist/Net-Analysis/

PR:             ports/102877
Submitted by:   Jin-Shan Tseng <tjs(at)cdpa.nsysu.edu.tw>

Number of commits found: 22