Skip to content

Commit

Permalink
textproc/py-youseedee: Update to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Dec 14, 2023
1 parent ba5a472 commit 24d16b2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
6 changes: 4 additions & 2 deletions textproc/py-youseedee/Makefile
@@ -1,5 +1,5 @@
PORTNAME= youseedee
PORTVERSION= 0.4.1
PORTVERSION= 0.5.0
CATEGORIES= textproc python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
Expand All @@ -10,7 +10,9 @@ WWW= https://github.com/simoncozens/youseedee

LICENSE= MIT

RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}black>=0:devel/py-black@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}filelock>=0:sysutils/py-filelock@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
UCD>=0:textproc/UCD

USES= python
Expand Down
6 changes: 3 additions & 3 deletions textproc/py-youseedee/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1680726214
SHA256 (youseedee-0.4.1.tar.gz) = 7dd23808151231b74a5b4aa0e32db6c23588e9b868b600e441d14c73d5f4d1ab
SIZE (youseedee-0.4.1.tar.gz) = 13974
TIMESTAMP = 1702543702
SHA256 (youseedee-0.5.0.tar.gz) = 63bb17de47205c13fdd639975446af01df783494461cad1bb92033fcca01dc28
SIZE (youseedee-0.5.0.tar.gz) = 14479
16 changes: 8 additions & 8 deletions textproc/py-youseedee/files/patch-lib-youseedee-__init__.py
@@ -1,11 +1,11 @@
--- lib/youseedee/__init__.py.orig 2020-10-06 16:13:22 UTC
--- lib/youseedee/__init__.py.orig 2023-12-13 13:22:08 UTC
+++ lib/youseedee/__init__.py
@@ -9,7 +9,7 @@ import csv
UCD_URL = "https://unicode.org/Public/UCD/latest/ucd/UCD.zip"
@@ -23,7 +23,7 @@ UCD_URL = "https://unicode.org/Public/UCD/latest/ucd/U


def ucd_dir():
- ucddir = os.path.expanduser("~/.youseedee")
+ ucddir = "%%UCDDIR%%"
if not os.path.isdir(ucddir):
os.mkdir(ucddir)
return ucddir
- ucddir = os.path.expanduser("~/.youseedee")
+ ucddir = "%%UCDDIR%%"
if not os.path.isdir(ucddir):
os.mkdir(ucddir)
return ucddir

0 comments on commit 24d16b2

Please sign in to comment.