1
0
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:
Johann Visagie 2002-01-07 13:02:01 +00:00
parent edc0948972
commit 5e9b7d9ce4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=52709
2 changed files with 12 additions and 0 deletions

View File

@ -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}

View 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