mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
parent
18eaab48a1
commit
11c7f4c739
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=493993
3 changed files with 4 additions and 25 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= yappi
|
||||
PORTVERSION= 0.99
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1547904083
|
||||
SHA256 (yappi-0.99.tar.gz) = 7a81d7975eeccfaa235448b63aece052e9417f7e0f7862b827dba21be0218b22
|
||||
SIZE (yappi-0.99.tar.gz) = 38461
|
||||
TIMESTAMP = 1551204606
|
||||
SHA256 (yappi-1.0.tar.gz) = 7f814131515d51db62b1a3468bcb84de30499124752806a5a6e11caf0b4344bf
|
||||
SIZE (yappi-1.0.tar.gz) = 38939
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
Obtained from: https://github.com/sumerc/yappi/commit/778829f6f77928e4292e6a7dd4dfecf501f9a362
|
||||
|
||||
--- setup.py.orig 2019-01-18 09:41:09 UTC
|
||||
+++ setup.py
|
||||
@@ -1,13 +1,14 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
+import io
|
||||
import os
|
||||
import sys
|
||||
from setuptools import setup
|
||||
from distutils.core import Extension
|
||||
from distutils.ccompiler import new_compiler
|
||||
|
||||
-f = open('README.md')
|
||||
-long_description = f.read()
|
||||
+with io.open('README.md', encoding='UTF-8') as f:
|
||||
+ long_description = f.read()
|
||||
|
||||
HOMEPAGE = "https://github.com/sumerc/yappi"
|
||||
NAME = "yappi"
|
Loading…
Add table
Reference in a new issue