non port: ftp/p5-Net-FTPServer/Makefile |
Number of commits found: 56 |
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, 20 Jul 2022
|
14:21 Tobias C. Berner (tcberner)
ftp: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* Aaron Dalton <aaron@FreeBSD.org>
* Alexander Kriventsov
* Anders Nordby <anders@fix.no>
* Andreas Fehlner <fehlner@gmx.de>
* Andrew Pantyukhin <infofarmer@FreeBSD.org>
* Andrey Zakhvatov
* Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>)
* Chris Piazza <cpiazza@FreeBSD.org>
* Damjan Marion <dmarion@open.hr>
* Emanuel Haupt <ehaupt@critical.ch>
* Eric Freeman <freebsdports@chillibear.com>
* Frank DENIS
* Frank Laszlo <laszlof@vonostingroup.com>
* Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
* Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
* George V. Neville-Neil <gnn@FreeBSD.org>
* Hye-Shik Chang
* Jordan Hubbard <jkh@FreeBSD.org>
* Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
* Joseph Benden <joe@thrallingpenguin.com>
* Ju Pengfei <jupengfei@gmail.com>
* Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
* Mark Johnston <markj@FreeBSD.org>
* Martin Matuska (mm@FreeBSD.org)
* Marwan BURELLE <marwan.burelle@lri.fr>
* Maxim Ignatenko
* Maxim Sobolev <sobomax@FreeBSD.org>
* Neil Blakey-Milner
* Neil Blakey-Milner <nbm@rucus.ru.ac.za>
* Nick Leuta
* Nosov Artem <chip-set@mail.ru>
* Petr Holub <hopet@ics.muni.cz>
* Philippe Le Berre <philippe@le-berre.com>
* Piotr Kubaj <pkubaj@anongoth.pl>
* Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* Roman Bogorodskiy
* Sergey Matveychuk <sem@FreeBSD.org>
* Sergey Skvortsov <skv@FreeBSD.org>
* Stephane Legrand
* Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
* TAKATSU Tomonari <tota@FreeBSD.org>
* Thomas Gellekum <tg@FreeBSD.org>
* Tom McLaughlin <tmclaugh@sdf.lonestar.org>
* Tomokazu ISHII <t-ishii@tryplanet.com>
* Ulrich Spoerlein <uspoerlein@gmail.com>
* Wen Heping <wen@FreeBSD.org>
* Xavier Beaudouin <kiwi@oav.net>
* Yasuhiro Fukuma <yasuf@big.or.jp>
* Ying-Chieh Liao <ijliao@FreeBSD.org>
* ache
* cy@FreeBSD.org
* ijliao
* ports
* torstenb
* will
With hat: portmgr
30cd242 |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Friday, 26 Jun 2020
|
11:55 sunpoet
Move devel/p5-IO-stringy to devel/p5-IO-Stringy and update to 2.113
- Fix LICENSE_FILE
- Update pkg-descr
- Update WWW
- Bump PORTREVISION of dependent ports for dependency change
Changes: https://metacpan.org/changes/distribution/IO-Stringy
|
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
|
Friday, 13 Mar 2015
|
17:29 adamw
Clean up the rest of the perl@ Makefiles a bit.
- Remove dependencies on modules distributed as part of perl core
- Remove references to FreeBSD < 8 and perl < 5.16
- Ensure that DOCS and EXAMPLES options exist for ports installing
PORTDOCS or PORTEXAMPLES
- Reduce unnecessary inclusions of bsd.port.options.mk by using
OPTIONS helpers and the like
- Fix some cases where dependencies were only assigned to BUILD_DEPENDS
- Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS.
This one happens in many, many ports. I only applied it in cases where
it interfered with 'make test' but it should maybe be done more generally.
- Mute ${MKDIR} in installation
- Parethesize compound commands
- In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
|
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
|
Thursday, 3 Jul 2014
|
18:18 adamw
Resolve unnecessary bsd.port.options.mk inclusion by using OPTIONS helpers.
Approved by: portmgr (blanket)
|
Thursday, 6 Feb 2014
|
10:04 ehaupt
Support staging and convert to new OPTIONS framwork.
|
Sunday, 24 Nov 2013
|
17:40 mat
- Wrap up cd && foo in parenthesis, it'd break with bmake -j
- Replace some FIND ... CPIO with COPYTREE_SHARE.
|
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
|
17:23 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
ftp)
|
Wednesday, 31 Jul 2013
|
11:56 az
- Convert to new perl framework
- Trim Makefile header
|
Friday, 29 Mar 2013
|
00:44 eadler
For perl@ owned ports:
- Fix COMMENT
- Trim header
|
Monday, 31 Dec 2012
|
16:17 tobez
Update to 1.125.
Changes: http://cpansearch.perl.org/src/RYOCHIN/Net-FTPServer-1.125/Changes
|
Monday, 17 Dec 2012
|
15:39 az
Cleanup supporting perl version 5.8 and 5.10,
lang/perl5.8 and lang/5.10 will be removed from ports tree soon.
|
Wednesday, 25 Jul 2012
|
06:32 cs
Fix typos in COMMENT
|
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)
|
Tuesday, 13 Mar 2012
|
16:15 pgollucci
- 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)
|
Thursday, 8 Mar 2012
|
18:45 pgollucci
- 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
|
Tuesday, 21 Sep 2010
|
07:56 mm
Change dependency on old p5-Compress-Zlib, p5-IO-Compress-Base,
p5-IO-Compress-Zlib and p5-IO-Compress-Bzip2 modules to p5-IO-Compress.
Explicitly depend on p5-IO-Compress only if PERL_LEVEL < 500903
Bump PORTREVISION
|
Sunday, 10 Jan 2010
|
00:35 pgollucci
SUBFILES += pkg-message
PR: ports/142517
Submitted by: Sevan Janiyan <venture37@geeklan.co.uk>
|
Wednesday, 22 Jul 2009
|
16:27 pgollucci
- 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)
|
Wednesday, 14 Jan 2009
|
21:09 pav
- Fix plist with perl 5.8.9
|
Monday, 4 Aug 2008
|
02:02 leeym
- simplify dependency
- utilize PORTDOCS PORTEXAMPLES
|
Thursday, 17 Apr 2008
|
14:30 araujo
- 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)
|
Saturday, 8 Sep 2007
|
01:00 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
|
Saturday, 4 Aug 2007
|
11:41 gabor
- Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.
Sponsored by: Google Summer of Code 2007
Approved by: portmgr (pav)
|
Sunday, 3 Dec 2006
|
12:45 demon
Correct path to Compress::Zlib.pm after recent p5-Compress-Zlib update.
|
Monday, 14 Aug 2006
|
10:57 mat
Some modules are in Perl base.
PR: 101840
Submitted by: Gea-Suan Lin <gslin@gslin.org>
|
10:55 mat
Respect DESTDIR
PR: 101840
Submitted by: Gea-Suan Lin <gslin@gslin.org>
|
Wednesday, 19 Apr 2006
|
11:03 leeym
- add optional dependency Net::FTP
- replace whitespace with tab and make portlint happier
|
10:28 erwin
Update to 1.122
|
Friday, 14 Apr 2006
|
20:45 linimon
Reset petef due to no response to email. We hope to see him back sometime.
Hat: portmgr
|
Monday, 31 Oct 2005
|
18:24 erwin
Let the IGNORE message make a bit more sense and change it from:
===> p5-Some-Module-0.7 Port requires perl 5.6.x or later. Install
lang/perl5 then try again.
to:
===> p5-Some-Module-0.7 requires perl 5.6.x or later. Install
lang/perl5 then try again.
Approved by: silence on -ports
|
Monday, 15 Mar 2004
|
04:49 petef
Update to 1.120.
|
Wednesday, 7 Jan 2004
|
02:55 petef
- update to 1.119
- we now depend on Perl 5.6.1
|
Sunday, 21 Dec 2003
|
01:30 petef
- make the p5-IO dependency conditional on the Perl version
- don't change the in-place pkg-message; generate a temporary one
in ${WRKDIR}
- fix install of scripts to ${PREFIX}/sbin
- use EXAMPLSDIR and DOCSDIR
- fix pkg-plist rmdir ... 2>/dev/null's to always return true
- bump PORTREVISION
PR: 59083
Submitted by: Lars Thegler <lars@thegler.dk>
|
Monday, 27 Oct 2003
|
02:28 petef
Update to 1.118.
|
Friday, 24 Oct 2003
|
14:15 erwin
Remove the recursive assignment of SITE_PERL to ${SITE_PERL} introduced
in the last commit.
|
12:05 ijliao
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
|
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)
|
Friday, 7 Mar 2003
|
06:02 ade
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti.
|
Friday, 23 Aug 2002
|
22:42 petef
Update to 1.111.
|
Friday, 2 Nov 2001
|
14:36 petef
Update to 1.102
|
Wednesday, 3 Oct 2001
|
04:47 petef
Update to 1.032
|
Thursday, 30 Aug 2001
|
03:53 petef
Update to 1.031
|
Sunday, 26 Aug 2001
|
06:28 petef
Update to version 1.029
|
Friday, 24 Aug 2001
|
22:32 tobez
Remove redundant USE_PERL5 statements.
|
22:01 petef
- update to version 1.028 - update my email in pkg-descr - sort @dirrm lines
in pkg-plist
|
Thursday, 23 Aug 2001
|
00:07 petef
Change my email address to petef@FreeBSD.org for the ports I maintain.
|
Wednesday, 15 Aug 2001
|
18:45 tobez
Fix ftp/p5-Net-FTPServer build on -stable.
|
Monday, 13 Aug 2001
|
13:33 kevlo
Update to version 1.027
|
Saturday, 11 Aug 2001
|
05:32 ijliao
- update to version 1.026 - take over as maintainer from ports@ - use
SITE_PERL for readability - install the ftpd, sample conf, docs - shorten
pkg-descr to please portlint - add WWW: - sort pkg-plist
|
Monday, 30 Jul 2001
|
17:00 ijliao
add p5-Net-FTPServer A full-featured, secure, extensible and configurable Perl
FTP server
|
Number of commits found: 56 |