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: www/perlbal/Makefile
SVNWeb

Number of commits found: 39

Sun, 16 Jul 2023
[ 20:22 Daniel Engberg (diizzy) search for other commits by this committer ]    commit hash:0c39e5b3120c353df231678ff86b848e9babb5ce  commit hash:0c39e5b3120c353df231678ff86b848e9babb5ce  commit hash:0c39e5b3120c353df231678ff86b848e9babb5ce  0c39e5b  (Only the first 10 of 27 ports in this commit are shown above. View all ports for this commit)
*/*: Change webserver to web server in COMMENT and descriptions

Change it for consistency and to make finding packages easier

Approved by:	portmgr (blanket)
Sat, 10 Sep 2022
[ 13:02 Po-Chuan Hsieh (sunpoet) search for other commits by this committer ]    commit hash:c9e520d682d927465cb03ba8d51e5ea815923882  commit hash:c9e520d682d927465cb03ba8d51e5ea815923882  commit hash:c9e520d682d927465cb03ba8d51e5ea815923882  c9e520d 
www/perlbal: Add NO_ARCH
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:23 Tobias C. Berner (tcberner) search for other commits by this committer ]    commit hash:e915e756715f12e5e0e46993b1265f44690b4a90  commit hash:e915e756715f12e5e0e46993b1265f44690b4a90  commit hash:e915e756715f12e5e0e46993b1265f44690b4a90  e915e75  (Only the first 10 of 1623 ports in this commit are shown above. View all ports for this commit)
www: remove 'Created by' lines

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

  *
  *  <hvo.pm@xs4all.nl>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Dalton <aaron@daltons.ca>
  *  Aaron LI <aly@aaronly.me>
  *  Aaron Zauner <az_mail@gmx.at>
  *  Abel Chow <achow@transoft.net>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Adrian Steinmann <ast@marabu.ch>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
(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, 15 Sep 2017
[ 08:58 mat search for other commits by this committer ] Original commit   Revision:449893 (Only the first 10 of 2495 ports in this commit are shown above. View all ports for this commit)
Fix license information for portgs that use "the same license as Perl".

Sponsored by:	Absolight
Fri, 1 Apr 2016
[ 14:33 mat search for other commits by this committer ] Original commit   Revision:412351 (Only the first 10 of 2136 ports in this commit are shown above. View all ports for this commit)
Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.

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)
Fri, 28 Feb 2014
[ 00:24 sunpoet search for other commits by this committer ] Original commit   Revision:346413
- Add LICENSE
- Use COPYTREE_SHARE
- Support STAGEDIR
- Remove outdated PERL_LEVEL check
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
[ 23:36 bapt search for other commits by this committer ] Original commit   Revision:327776 (Only the first 10 of 2206 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:
www)
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.
Thu, 8 Mar 2012
[ 09:00 sunpoet search for other commits by this committer ] Original commit 
- Update to 1.80
- Sort *_DEPENDS, MAN3 and PLIST
- Add CPAN as primary WWW

Changes:        http://search.cpan.org/dist/Perlbal/CHANGES
Mon, 11 Jul 2011
[ 06:20 bapt search for other commits by this committer ] Original commit 
- update to 1.79
Sat, 23 Apr 2011
[ 07:32 bapt search for other commits by this committer ] Original commit 
- fix rc script: use --config instead of -f and --daemon instead of & [1]
while here:
- move configuration to perlbal subdirectory (as upstream recommands)
- s,/etc/perlbal,${PREFIX}/etc/perlbal,g in doc and code for consistency
- add a new dependency on p5-IO-AIO

PR:             ports/156559
Submitted by:   Dean Matzkov <bapabooiee _at_ gmail.com>
Sat, 29 Jan 2011
[ 19:57 swills search for other commits by this committer ] Original commit 
- Update to 1.78
- Changes: http://cpansearch.perl.org/src/DORMANDO/Perlbal-1.78/CHANGES

Approved by:    wxs@ and pgollucci@ (mentor implicit)
Feature safe:   yes
Wed, 19 Jan 2011
[ 03:35 swills search for other commits by this committer ] Original commit 
- Update to 1.77

Approved by:    wxs@ and pgolluci@ (mentor implicit)
Feature safe:   yes
Wed, 13 Oct 2010
[ 19:50 araujo search for other commits by this committer ] Original commit 
- Update to 1.76.
- Update MASTER_SITE to CPAN macro.

PR:             ports/151018
Submitted by:   ports@c0decafe.net <ports@c0decafe.net>
Wed, 22 Jul 2009
[ 16:27 pgollucci search for other commits by this committer ] Original commit  (Only the first 10 of 263 ports in this commit are shown above. View all ports for this commit)
- lang/perl5.6 is dead, remove PERL_LEVEL/PERL_VERSION < 500801 checks

PR:             ports/135398
Tested by:      2 -exp runs by pav
Approved by:    portmgr (pav)
Mon, 29 Jun 2009
[ 09:20 jadawin search for other commits by this committer ] Original commit 
- Add rc script
- Bump PORTREVISION

PR:             136090
Submitted by:   Gea-Suan Lin <gslin gslin.org>
Fri, 26 Jun 2009
[ 11:51 jadawin search for other commits by this committer ] Original commit 
- Update to 1.72

PR:             ports/136063
Submitted by:   Gea-Suan Lin <gslin gslin.org>
Wed, 4 Feb 2009
[ 10:39 pgollucci search for other commits by this committer ] Original commit 
- fix a comment
Wed, 14 Jan 2009
[ 21:15 pav search for other commits by this committer ] Original commit 
- Fix plist with perl 5.8.9
Mon, 14 Apr 2008
[ 04:04 clsung search for other commits by this committer ] Original commit 
- Update to 1.70

Changes:        http://search.cpan.org/dist/Perlbal/CHANGES
Thu, 25 Oct 2007
[ 02:25 clsung search for other commits by this committer ] Original commit 
- Update to 1.60
Mon, 11 Jun 2007
[ 07:24 miwi search for other commits by this committer ] Original commit 
- Add documents

PR:             113500
Submitted by:   Gea-Suan Lin <gslin@gslin.org>
Wed, 30 May 2007
[ 01:38 clsung search for other commits by this committer ] Original commit 
- Update to 1.59
Fri, 27 Apr 2007
[ 07:54 clsung search for other commits by this committer ] Original commit 
- Update to 1.57
Sat, 21 Apr 2007
[ 17:47 miwi search for other commits by this committer ] Original commit 
- Fix pkg-plist

Submitted by:   krisbot
Fri, 20 Apr 2007
[ 21:07 miwi search for other commits by this committer ] Original commit 
- Update to 1.56

PR:             111921
Submitted by:   Paul Dlug <paul@aps.org>
Thu, 22 Mar 2007
[ 18:48 miwi search for other commits by this committer ] Original commit 
- Update to 1.55

PR:             110684
Submitted by:   Jacques Marneweck <jacques@php.net> (maintainer)
Tue, 27 Feb 2007
[ 20:41 linimon search for other commits by this committer ] Original commit 
Reset jacques@php.net due to maintainer-timeouts.

Hat:            portmgr
Mon, 26 Feb 2007
[ 14:11 miwi search for other commits by this committer ] Original commit 
- Update to 1.27

PR:             108951
Submitted by:   miwi
Approved by:    maintainer timeout
Wed, 24 Jan 2007
[ 21:17 miwi search for other commits by this committer ] Original commit 
- Update to 1.52

PR:             107740
Submitted by:   miwi
Approved by:    maintainer timeout
Wed, 1 Nov 2006
[ 06:33 miwi search for other commits by this committer ] Original commit 
- Update to 1.51

PR:             ports/104782
Submitted by:   Jacques Marneweck <jacques@php.net> (maintainer)
Wed, 14 Jun 2006
[ 14:55 miwi search for other commits by this committer ] Original commit 
Update to 1.41

PR:             ports/98447
Submitted by:   miwi
Approved by:    krion (mentor), maintainer timeout
Fri, 21 Oct 2005
[ 14:33 lawrance search for other commits by this committer ] Original commit 
Update to 1.38. [1]
Fix creative DEPENDS line. [2]

Submitted by:   Jacques Marneweck <jacques@powertrip.co.za> (maintainer) [1]
Reported by:    kris [2]
Tue, 18 Oct 2005
[ 02:46 lawrance search for other commits by this committer ] Original commit 
Add perlbal 1.36, reverse-proxy load balancer and webserver.

PR:             ports/75369
Submitted by:   Jacques Marneweck <jacques@php.net>

Number of commits found: 39