aboutsummaryrefslogtreecommitdiff
path: root/multimedia/py-librtmp
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove some more expired ports:Rene Ladan2021-01-021-7/+1
| | | | | | | | | | | | | | | devel/py-backports.functools_lru_cache devel/py-backports_abc devel/py-futures devel/py-singledispatch devel/py-typing graphics/py-pillow6 Adjust dependent ports. Tested with 'make index' against r559975 Notes: svn path=/head/; revision=559976
* Drop python 2.7 support from a few portsAntoine Brodin2020-12-281-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=559531
* Use PY_FLAVOR for dependencies.Mathieu Arnold2018-06-201-3/+3
| | | | | | | | | | 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
* Corrected shared library names that got the .abi3 suffix for python-36 and ↵Yuri Victorovich2018-01-051-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | up after devel/py-cffi upgrade to 1.11.2 This is the followup for the r457997 commit that updated devel/py-cffi to 1.11.2. As it turned out, the shared object names built by py-cffi has changed in python 36. Dependent ports can choose between installing such shared object as part of their plist, or generating them in the runtime and placing them into ~/.cache/{port-name}/ The former ones, that include the shared objects in their plist, got affected. 4 of the ports were failing explicitly in their py36 flavor during the strip phase. The other 6 were either missing strip entirely, or performed the strip operation without using explicit shared object names. These 6 ports didn't trigger any build errors, and were failing silently during the runtime, making the problem very hard to detect. Precisely, .abi3 suffix is now added for the py36 flavor of relevant ports. Here are the 10 ports that got affected and are now corrected: databases/py-psycopg2cffi devel/py-pygit2 devel/py-xattr devel/py-pyopencl devel/py-atomiclong multimedia/py-librtmp net/py-nnpy security/py-bcrypt security/py-cryptography security/py-pynacl All of them got the * in the stripped shared object name, and a PORTREVISION bump. Notes: svn path=/head/; revision=458167
* Convert Python ports to FLAVORS.Mathieu Arnold2017-11-301-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-4/+4
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* multimedia/py-librtmp: update to 0.3.0William Grzybowski2015-11-142-5/+11
| | | | Notes: svn path=/head/; revision=401601
* multimedia/py-librtmp: update to 0.2.1William Grzybowski2014-09-252-7/+6
| | | | | | | | - BSD => BSD2CLAUSE license - USES python Notes: svn path=/head/; revision=369289
* multimedia/py-librtmp: update to 0.2.0William Grzybowski2014-06-152-4/+3
| | | | | | | Changes: https://github.com/chrippa/python-librtmp/blob/master/HISTORY.rst Notes: svn path=/head/; revision=357923
* - Remove easy_install dependencyMarcus von Appen2014-06-141-5/+3
| | | | | | | | | | - Bump PORTREVISION to enforce a cleanup for the easy_install references With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357758
* - This actually needs devel/py-singledispatch at runtime so add thatJuergen Lock2013-11-291-1/+3
| | | | | | | | | | | to RUN_DEPENDS. - Bump PORTREVISION. - Pet portlint. Approved by: wg (maintainer) Notes: svn path=/head/; revision=335220
* multimedia/py-librtmp: Python bindings for librtmp, built with cffiWilliam Grzybowski2013-11-293-0/+34
python-librtmp is a Python interface to librtmp. It uses cffi to interface with the C library librtmp. WWW: https://github.com/chrippa/python-librtmp Notes: svn path=/head/; revision=335134