summaryrefslogtreecommitdiff
path: root/security/py-libnacl
Commit message (Collapse)AuthorAgeFilesLines
* 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
* security/py-libnacl: Update to 1.6.1Kubilay Kocak2019-05-063-18/+6
| | | | | | | | | | | - Remove setup.py patch, use direct unittest invocation instead Changelog: https://libnacl.readthedocs.io/en/latest/topics/releases/index.html Notes: svn path=/head/; revision=500887
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-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
* - Update libsodium to 1.0.15 [1]Vsevolod Stakhov2017-10-221-0/+1
| | | | | | | | | | - Bump revisions for all dependent ports PR: 223147 [1] Submitted by: Greg V [1] Notes: svn path=/head/; revision=452629
* security/py-libnacl: Update to 1.5.2Philip Paeps2017-09-262-4/+4
| | | | | | | | | | PR: 222526 Reviewed by: koobs (maintainer) Approved by: koobs (maintainer) Differential Revision: D12475 Notes: svn path=/head/; revision=450671
* Allow overriding the Python version.Philip Paeps2016-09-211-1/+1
| | | | | | | Approved by: koobs (maintainer) Notes: svn path=/head/; revision=422554
* security/libsodium: Upgrade version 1.0.8 => 1.0.10John Marino2016-07-121-1/+1
| | | | | | | | | | | Also bump all ports that depend on libsodium. PR: 210999 Submitted by: manu Approved by: vsevolod (maintainer) Notes: svn path=/head/; revision=418449
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* - Update libsodium to 1.0.8Vsevolod Stakhov2016-03-231-0/+1
| | | | | | | | | | - Bump revisions of all dependant ports PR: 206482 Submitted by: lev, w.schwarzenfeld@aon.at Notes: svn path=/head/; revision=411691
* security/py-libnacl: Update to 1.4.4Kubilay Kocak2016-02-263-6/+8
| | | | | | | | | | - Update PORTVERSION and distinfo checksum (1.4.4) - Update test target - Enable NO_ARCH (architecture independent) - Regenerate setup.py Notes: svn path=/head/; revision=409594
* Remove trailing whitespace from Makefiles, M-X.Jimmy Olgeni2015-10-081-1/+1
| | | | Notes: svn path=/head/; revision=398833
* security/py-libnacl: Update to 1.4.3Kubilay Kocak2015-06-253-4/+17
| | | | | | | | | | | | | | | | | | - Update to 1.4.3 - Patch setup.py so test command is supported - Add regression-test target Changes: https://libnacl.readthedocs.org/en/latest/topics/releases/1.4.3.html Based on: PR: 200830 Submitted by: Christer Edwards <christer dot edwards gmail com> Notes: svn path=/head/; revision=390533
* - Updated libsodium to 1.0.3 [1]Vsevolod Stakhov2015-06-131-0/+1
| | | | | | | | | | - Bump revision for dependent ports PR: 200548 [1] Submitted by: rsimmons0 at gmail.com [1] Notes: svn path=/head/; revision=389468
* security/py-libnacl: Update to 1.4.2Kubilay Kocak2015-05-182-3/+3
| | | | | | | | | | | | | | - Update to 1.4.2 Changes: * https://libnacl.readthedocs.org/en/latest/topics/releases/index.html PR: 200233 Submitted by: Jason Unovitch <jason.unovitch gmail com> Notes: svn path=/head/; revision=386678
* [NEW] security/libnacl: Python bindings for NaClKubilay Kocak2015-02-123-0/+30
This library is used to gain direct access to the functions exposed by Daniel J. Bernstein's nacl library via libsodium or tweetnacl. It has been constructed to maintain extensive documentation on how to use nacl as well as being tely portable. The file in libnacl/__init__.py can be pulled out and placed directly in any project to give a single file binding to all of nacl. WWW: https://libnacl.readthedocs.org Notes: svn path=/head/; revision=378863