summaryrefslogtreecommitdiff
path: root/security/py-RestrictedPython (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-01-11zope: Remove leaf zope ports that have no sense in absence of zope itselfRuslan Makhmatkhanov4-491/+0
2023-06-27all: remove explicit versions in USES=python for "3.x+"Rene Ladan1-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>
2023-01-11*/*: rename CHEESESHOP to PYPI in MASTER_SITESDmitry Marakasov1-1/+1
PR: 267994 Differential revision: D37518 Approved by: bapt
2022-09-07Remove WWW entries moved into port MakefilesStefan Eßer1-2/+0
Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
2022-09-07Add WWW entries to port MakefilesStefan Eßer1-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)
2022-03-25security/py-RestrictedPython: Fix build with setuptools 58.0.0+Po-Chuan Hsieh1-0/+469
With hat: python
2021-04-07One more small cleanup, forgotten yesterday.Mathieu Arnold1-1/+0
Reported by: lwhsu
2021-04-06Remove # $FreeBSD$ from Makefiles.Mathieu Arnold1-1/+0
2020-12-28Drop python 2.7 support from a few portsAntoine Brodin1-1/+1
With hat: portmgr Notes: svn path=/head/; revision=559531
2018-04-25Switch all pypi.python.org WWWs to a new PyPi home pypi.org whereDmitry Marakasov1-1/+1
they now redirect to anyway. All new urls checked to return 200, I've fixed a couple of them in the process. Approved by: portmgr blanket, mat Notes: svn path=/head/; revision=468282
2018-02-08Canonicalize PyPi WWWs:Dmitry Marakasov1-1/+1
- Switch to https:// - Remove trailing slashes Approved by: portmgr blanket Notes: svn path=/head/; revision=461265
2017-11-30Convert Python ports to FLAVORS.Mathieu Arnold1-1/+1
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
2014-10-24- Convert ports of science/ and security to new USES=pythonMarcus von Appen1-4/+2
Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371453
2014-03-10Convert s* to USES=zipBaptiste Daroussin1-1/+1
Notes: svn path=/head/; revision=347784
2014-02-10- do not use easy_install, convert to auto-generated packing listRuslan Makhmatkhanov2-111/+6
- move DIST_SUBDIR upper, where appropriate - add trailing slash to WWW url, where appropriate - bump PORTREVISION Notes: svn path=/head/; revision=343605
2014-01-13Python cleanup:Rene Ladan1-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
2013-09-23Tidy up zope/plone ports over the tree. Common changes:Ruslan Makhmatkhanov2-2/+3
- remove indefinite article from COMMENT - align USE_PYDISTUTILS value in Makefile - tab -> space change in pkg-descr:WWW - update WWW to use https scheme in url to avoid redirect - add trailing slash to WWW All changes are non-functional. Notes: svn path=/head/; revision=327992
2013-09-20Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin1-5/+1
security) Notes: svn path=/head/; revision=327769
2012-01-16- transfer maintainership for my zope-ports to zope@Ruslan Makhmatkhanov1-2/+2
- add them to virtual category `zope' Notes: svn path=/head/; revision=289318
2011-11-10Change email for my ports to FreeBSD one.Ruslan Makhmatkhanov1-1/+1
Approved by: novel (mentor) Feature safe: yes Notes: svn path=/head/; revision=285480
2011-10-11- Fix build with python-2.6Wen Heping2-6/+15
Notes: svn path=/head/; revision=283357
2011-10-10- Update WWWWen Heping1-1/+1
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer, via email) Thanks to: sunpoet@ Notes: svn path=/head/; revision=283306
2011-10-10RestrictedPython provides a restricted execution environment for Python,Wen Heping4-0/+126
e.g. for running untrusted code. WWW: http://pypi.python.org/pypi/ExtensionClass Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via GitHub) Notes: svn path=/head/; revision=283283