View | Details | Raw Unified | Return to bug 217484 | Differences between
and this patch

Collapse All | Expand All

(-)misc/Makefile (+1 lines)
Lines 375-380 Link Here
375
    SUBDIR += py-cinder
375
    SUBDIR += py-cinder
376
    SUBDIR += py-crudini
376
    SUBDIR += py-crudini
377
    SUBDIR += py-fuzzy
377
    SUBDIR += py-fuzzy
378
    SUBDIR += py-gitsome
378
    SUBDIR += py-glance
379
    SUBDIR += py-glance
379
    SUBDIR += py-osd
380
    SUBDIR += py-osd
380
    SUBDIR += py-pexpect
381
    SUBDIR += py-pexpect
(-)misc/py-gitsome/Makefile (+38 lines)
Line 0 Link Here
1
# Created by: Danilo G. Baio <dbaio@bsd.com.br>
2
# $FreeBSD$
3
4
PORTNAME=	gitsome
5
PORTVERSION=	0.6.0
6
CATEGORIES=	misc
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	dbaio@bsd.com.br
11
COMMENT=	Supercharged Git/Shell Autocompleter with GitHub Integration
12
13
LICENSE=	APACHE20
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ply>=3.4:devel/py3-ply
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpydoc>=0.5:textproc/py3-numpydoc \
17
		${PYTHON_PKGNAMEPREFIX}ply>=3.4:devel/py3-ply \
18
		${PYTHON_PKGNAMEPREFIX}prompt_toolkit>=0.60:devel/py3-prompt_toolkit \
19
		${PYTHON_PKGNAMEPREFIX}requests>=2.8.1:www/py3-requests \
20
		${PYTHON_PKGNAMEPREFIX}colorama>=0.3.3:devel/py3-colorama \
21
		${PYTHON_PKGNAMEPREFIX}click>=5.1:devel/py3-click \
22
		${PYTHON_PKGNAMEPREFIX}pygments>=2.0.2:textproc/py3-pygments \
23
		${PYTHON_PKGNAMEPREFIX}feedparser>=5.2.1:textproc/py3-feedparser \
24
		${PYTHON_PKGNAMEPREFIX}pytz>=2016.3:devel/py3-pytz \
25
		${PYTHON_PKGNAMEPREFIX}docopt>=0.6.2:devel/py3-docopt \
26
		${PYTHON_PKGNAMEPREFIX}uritemplate>=1.0.0:net/py3-uritemplate
27
28
OPTIONS_DEFINE=	AVATAR
29
30
AVATAR_DESC=	Show avatars in your terminal
31
32
AVATAR_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pillow>=3.4.2:graphics/py3-pillow
33
34
NO_ARCH=	yes
35
USES=		python:3.4-3.5
36
USE_PYTHON=	autoplist distutils
37
38
.include <bsd.port.mk>
(-)misc/py-gitsome/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1487601338
2
SHA256 (gitsome-0.6.0.tar.gz) = 95299f7b85196c8ea128fea6582df2a2b681d9d3dd8427d3513298cb0273b61a
3
SIZE (gitsome-0.6.0.tar.gz) = 308294
(-)misc/py-gitsome/files/patch-setup.py (+12 lines)
Line 0 Link Here
1
# https://github.com/donnemartin/gitsome/pull/86
2
--- setup.py.orig	2016-05-29 19:34:14 UTC
3
+++ setup.py
4
@@ -109,7 +109,7 @@ def main():
5
             'feedparser>=5.2.1,<6.0.0',
6
             'pytz>=2016.3,<2017.0',
7
             'docopt>=0.6.2,<1.0.0',
8
-            'uritemplate.py>=0.2.0,<1.0.0',
9
+            'uritemplate>=1.0.0,<4.0.0',
10
         ],
11
         skw['entry_points'] = {
12
             'pygments.lexers': ['gitsome = xonsh.pyghooks:XonshLexer',
(-)misc/py-gitsome/pkg-descr (+11 lines)
Line 0 Link Here
1
gitsome provides direct integration with GitHub and GitHub Enterprise in a
2
terminal. It includes not only GitHub integrated commands that work with all
3
shells but also provides following functions:
4
 - Git and GitHub Autocompleter With Interactive Help
5
 - Fish-Style Auto-Suggestions
6
 - General Autocompleter
7
 - Python REPL
8
 - Command History
9
 - Customizable Highlighting
10
11
WWW: https://github.com/donnemartin/gitsome

Return to bug 217484