1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

- Fix typo in patch

- Bump PORTREVISION

PR:             ports/152413
Submitted by:   Ildar Hizbulin <hizel@vyborg.ru>
Approved by:    maintainer timeout (g.veniamin@googlemail.com ; 20 days)
This commit is contained in:
Philip M. Gollucci 2010-12-10 23:05:58 +00:00
parent ec6430a49f
commit 18e6c607a8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=266019
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= xmpppy
PORTVERSION= 0.5.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= net-im python
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}-rc1/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -22,7 +22,7 @@
+ """ For python version >= 2.6 """
+ def _SHA(some): return hashlib.sha1(some)
+ def HH(some): return hashlib.md5(some).hexdigest()
+ def h(some): return hashlib.md5(some).digest()
+ def H(some): return hashlib.md5(some).digest()
+
+
class NonSASL(PlugIn):