mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 10:31:20 +02:00
add jetbrains ide-s
This commit is contained in:
25
python/py-pygments/Makefile
Normal file
25
python/py-pygments/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
||||
# $FreeBSD: head/textproc/py-pygments/Makefile 522865 2020-01-13 08:26:17Z ale $
|
||||
|
||||
PORTNAME= pygments
|
||||
PORTVERSION= 2.5.2
|
||||
CATEGORIES= textproc python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= Pygments-${PORTVERSION}
|
||||
|
||||
MAINTAINER= nivit@FreeBSD.org
|
||||
COMMENT= Syntax highlighter written in Python
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils concurrent autoplist
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PYTHON_VER} == ${PYTHON_DEFAULT}
|
||||
CONFLICTS_INSTALL= paraview
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
3
python/py-pygments/distinfo
Normal file
3
python/py-pygments/distinfo
Normal file
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1578903176
|
||||
SHA256 (Pygments-2.5.2.tar.gz) = 98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe
|
||||
SIZE (Pygments-2.5.2.tar.gz) = 20263984
|
||||
13
python/py-pygments/pkg-descr
Normal file
13
python/py-pygments/pkg-descr
Normal file
@@ -0,0 +1,13 @@
|
||||
Pygments is a syntax highlighting package written in Python.
|
||||
|
||||
It is a generic syntax highlighter for general use in all kinds of software
|
||||
such as forum systems, wikis or other applications that need to prettify
|
||||
source code. Highlights are:
|
||||
|
||||
* a wide range of common languages and markup formats is supported
|
||||
* special attention is paid to details, increasing quality by a fair amount
|
||||
* support for new languages and formats are added easily
|
||||
* a number of output formats, presently HTML, LaTeX, RTF and ANSI sequences
|
||||
* it is usable as a command-line tool and as a library
|
||||
|
||||
WWW: http://pygments.org/
|
||||
17
python/py-requests/files/patch-tests_test__utils.py
Normal file
17
python/py-requests/files/patch-tests_test__utils.py
Normal file
@@ -0,0 +1,17 @@
|
||||
Make tests work with devel/py-pytest >= 4
|
||||
|
||||
Obtained from:
|
||||
https://github.com/psf/requests/commit/0fe6653eabc3e0a4b8c48e374fb7ee83a3bf829b
|
||||
|
||||
--- tests/test_utils.py.orig 2019-05-16 14:18:16 UTC
|
||||
+++ tests/test_utils.py
|
||||
@@ -33,7 +33,8 @@ class TestSuperLen:
|
||||
'stream, value', (
|
||||
(StringIO.StringIO, 'Test'),
|
||||
(BytesIO, b'Test'),
|
||||
- pytest.mark.skipif('cStringIO is None')((cStringIO, 'Test')),
|
||||
+ pytest.param(cStringIO, 'Test',
|
||||
+ marks=pytest.mark.skipif('cStringIO is None')),
|
||||
))
|
||||
def test_io_streams(self, stream, value):
|
||||
"""Ensures that we properly deal with different kinds of IO streams."""
|
||||
Reference in New Issue
Block a user