aboutsummaryrefslogtreecommitdiff
path: root/ftp/py-pyftpdlib/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* ftp/py-pyftpdlib: Update to 1.5.9Li-Wen Hsu2023-10-311-1/+1
|
* all: remove explicit versions in USES=python for "3.x+"Rene Ladan2023-06-271-1/+1
| | | | | | | | | | | | | | | | | | | The logic in USES=python will automatically convert this to 3.8+ by itself. Adjust two ports that only had Python 3.7 mentioned but build fine on Python 3.8 too. finance/quickfix: mark BROKEN with PYTHON libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option] QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found ^~~~~~~~~~ 1 warning and 1 error generated. Reviewed by: portmgr, vishwin, yuri Differential Revision: <https://reviews.freebsd.org/D40568>
* */*: rename CHEESESHOP to PYPI in MASTER_SITESDmitry Marakasov2023-01-111-1/+1
| | | | | | PR: 267994 Differential revision: D37518 Approved by: bapt
* ftp/py-pyftpdlib: Update to 1.5.7Li-Wen Hsu2022-10-171-1/+1
|
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* - Update to 1.5.6Li-Wen Hsu2020-02-171-1/+1
| | | | Notes: svn path=/head/; revision=526358
* - Update to 1.5.5Li-Wen Hsu2019-04-101-1/+1
| | | | Notes: svn path=/head/; revision=498564
* Add EXAMPLES options to ports that should have one.Mathieu Arnold2018-09-101-1/+1
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479407
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-2/+2
| | | | | | | | | | FLAVOR is the current port's flavor, it should not be used outside of this scope. Sponsored by: Absolight Notes: svn path=/head/; revision=472884
* - Update to 1.5.4Li-Wen Hsu2018-05-061-2/+1
| | | | Notes: svn path=/head/; revision=469215
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464 Notes: svn path=/head/; revision=455210
* - Update to 1.5.3Li-Wen Hsu2017-11-301-2/+1
| | | | Notes: svn path=/head/; revision=455187
* - Fix shebangsMartin Wilke2017-04-191-1/+4
| | | | Notes: svn path=/head/; revision=438824
* - Update to 1.5.2Li-Wen Hsu2017-04-071-1/+1
| | | | Notes: svn path=/head/; revision=437916
* - Update to 1.5.1Li-Wen Hsu2017-03-281-12/+7
| | | | Notes: svn path=/head/; revision=437122
* Mark the remaining ports depending on Google Code as DEPRECATED, with anMathieu Arnold2017-03-031-0/+2
| | | | | | | | | | | | | | EXPIRATION_DATE at the end of April 2017. In the past six months, about a third of the ports marked BROKEN because they were hosted on Google Code have been fixed. The remaining must not be of use to anyone. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=435349
* GOOGLE_CODE has gone away.Mathieu Arnold2016-09-141-0/+2
| | | | | | | | | | | | | - If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight Notes: svn path=/head/; revision=422140
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Remove UNIQUENAME and LATEST_LINK.Mathieu Arnold2015-08-171-3/+0
| | | | | | | | | | | | | | | | | | | | UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336 Notes: svn path=/head/; revision=394508
* - Convert ports from french/ and ftp/ to new USES=pythonMarcus von Appen2014-10-191-2/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371201
* Resolve unnecessary bsd.port.options.mk inclusion by using OPTIONS helpers.Adam Weinberger2014-07-031-12/+3
| | | | | | | Approved by: portmgr (blanket) Notes: svn path=/head/; revision=360440
* - StageLi-Wen Hsu2014-04-231-4/+3
| | | | | | | | | | | - Drop easy_install - Pet portlint PR: ports/188881 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Notes: svn path=/head/; revision=351914
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | ftp) Notes: svn path=/head/; revision=327729
* - Tweak USE_PYTHON to -2.7 to match upstream compatibilityLi-Wen Hsu2012-09-221-2/+25
| | | | | | | | | | | | | | | | | - Switch from distutils to easy_install (update pkg_plist to suit) - Add OptionsNG for SENDFILE and OPENSSL support - Add test: target to run unit tests - Patch: setup.py - Add zip_safe=False to install egg uncompressed - Add test_suite for running unit tests via setup.py - Patch: test/test_* - add path hacks to test WRKSRC sources PR: ports/171682 Submitted by: Kubilay Kocak <koobs.freebsd@gmail.com> Notes: svn path=/head/; revision=304675
* - Update to 0.7.0Li-Wen Hsu2012-06-281-7/+1
| | | | | | | | | | | | - Remove LICENSE_FILE for well-known licenses - Remove DOCSDIR and NOPORTDOCS checks - Not bundled by upstream anymore - Update and sort pkg-plist PR: ports/169102 Submitted by: koobs <koobs.freebsd@gmail.com> Notes: svn path=/head/; revision=300173
* - Update to 0.6.0Li-Wen Hsu2011-03-051-2/+5
| | | | | | | | | | - Add license PR: ports/155290 Submitted by: Ruslan Mahmatkhanov <cvs-src AT yandex.ru> Notes: svn path=/head/; revision=270344
* - Update to 0.5.2Li-Wen Hsu2009-10-101-1/+1
| | | | Notes: svn path=/head/; revision=242632
* - Update to 0.5.1Li-Wen Hsu2009-04-101-1/+1
| | | | Notes: svn path=/head/; revision=231994
* - Update to 0.5.0Li-Wen Hsu2008-09-241-1/+1
| | | | | | | | PR: ports/127556 Submitted by: Wen Heping <wenheping AT gmail.com> Notes: svn path=/head/; revision=220603
* - Update to 0.4.0Li-Wen Hsu2008-06-151-1/+1
| | | | Notes: svn path=/head/; revision=214872
* Use ${MASTER_SITE_GOOGLE_CODE} instead ofEdwin Groothuis2008-03-061-1/+1
| | | | | | | | | http://something.googlecode.com/files PR: ports/121435 (related) Notes: svn path=/head/; revision=208538
* - Update to 0.3.0Li-Wen Hsu2008-01-261-2/+1
| | | | Notes: svn path=/head/; revision=206233
* - Update to 0.2.0Li-Wen Hsu2007-09-181-1/+1
| | | | Notes: svn path=/head/; revision=199644
* - Remove the DESTDIR modifications from individual ports as we have a new,Gabor Kovesdan2007-08-041-2/+2
| | | | | | | | | | fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav) Notes: svn path=/head/; revision=197075
* - Respect NOPORTEXAMPLESLi-Wen Hsu2007-06-221-2/+2
| | | | Notes: svn path=/head/; revision=194035
* - Change to my FreeBSD.org emailLi-Wen Hsu2007-04-041-1/+1
| | | | | | | Approved by: clsung (mentor) Notes: svn path=/head/; revision=189163
* - Update to 0.1.1Martin Wilke2007-03-071-1/+1
| | | | | | | | PR: 110032 Submitted by: Li-Wen Hsu <lwhsu@lwhsu.org> (maintainer) Notes: svn path=/head/; revision=186804
* Python FTP server library provides an high-level portable interface to easilyMartin Wilke2007-03-061-0/+34
write asynchronous FTP servers with Python. Based on asyncore / asynchat frameworks pyftpdlib is actually the most complete RFC959 FTP server implementation available for Python language. WWW: http://billiejoex.altervista.org/pyftpdlib.html PR: ports/109934 Submitted by: Li-Wen Hsu <lwhsu at lwhsu.org> Notes: svn path=/head/; revision=186722