mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
- Add a patch for a small typo(?) which results in half the bits of a
generated UUID being trown away - Bumped PORTREVISION PR: 31508 Submitted by: Alan Eldridge <alane@geeksrus.net>
This commit is contained in:
parent
edc0948972
commit
5e9b7d9ce4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=52709
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= 4suite
|
||||
PORTVERSION= 0.11.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= textproc python
|
||||
MASTER_SITES= ftp://ftp.4suite.org/pub/4Suite/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
11
textproc/py-4suite/files/patch-Lib-Uuid.py
Normal file
11
textproc/py-4suite/files/patch-Lib-Uuid.py
Normal file
@ -0,0 +1,11 @@
|
||||
--- Lib/Uuid.py.orig Fri Aug 10 07:28:49 2001
|
||||
+++ Lib/Uuid.py Mon Jan 7 14:49:45 2002
|
||||
@@ -64,7 +64,7 @@
|
||||
newUuid = ''
|
||||
curUuid = uuid
|
||||
for ctr in range(16):
|
||||
- num = int(curUuid & 0xF)
|
||||
+ num = int(curUuid & 0xFF)
|
||||
newChar = chr(num)
|
||||
curUuid = curUuid >> 8
|
||||
newUuid = newChar + newUuid
|
Loading…
Reference in New Issue
Block a user