Upgrade to 0.6.1

- use distinfo
- regen patch
- bump need version
This commit is contained in:
shell 2002-01-02 02:53:25 +00:00
parent e18aae5ba3
commit 78d352f190
4 changed files with 20 additions and 19 deletions

View File

@ -1,12 +1,12 @@
# $OpenBSD: Makefile,v 1.3 2001/11/10 15:00:49 espie Exp $
# $OpenBSD: Makefile,v 1.4 2002/01/02 02:53:25 shell Exp $
COMMENT= "OpenSSL Wrappers for Python"
VERSION= 0.5
VERSION= 0.6.1
DISTNAME= POW-${VERSION}
PKGNAME= py-sslwrapper-${VERSION}
CATEGORIES= security devel
NEED_VERSION= 1.489
NEED_VERSION= 1.504
HOMEPAGE= http://pow.sourceforge.net/
@ -26,10 +26,14 @@ BUILD_DEPENDS+= ::lang/python
RUN_DEPENDS= ${BUILD_DEPENDS}
NO_REGRESS= Yes
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py.new
SUBST_VARS= PYTHON_VER
post-patch:
@sed -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
< ${WRKSRC}/setup.py > ${WRKSRC}/setup.py.new
do-build:
${PY_CMD} build --build-base=${WRKSRC}

View File

@ -0,0 +1,3 @@
MD5 (POW-0.6.1.tar.gz) = a1093b7b8c105869e0538fd4b8bb2228
RMD160 (POW-0.6.1.tar.gz) = 7221bfc22d29ea0ab89ed023d868064eb32f040b
SHA1 (POW-0.6.1.tar.gz) = 2c995b78faa687a91838f00267bc62f41e58046f

View File

@ -1,3 +0,0 @@
MD5 (POW-0.5.tar.gz) = 3159ec789c6117960406c00cd2da264b
RMD160 (POW-0.5.tar.gz) = 6e144a9dd71e4967c40c85f105f8b6e63db6288b
SHA1 (POW-0.5.tar.gz) = 02a65c83fa592f8507c9b548325b69803ba846ac

View File

@ -1,13 +1,10 @@
$OpenBSD: patch-setup_py,v 1.1.1.1 2001/09/10 06:08:03 shell Exp $
--- setup.py.orig Mon Sep 10 13:51:13 2001
+++ setup.py Mon Sep 10 13:51:48 2001
@@ -7,6 +7,8 @@
author_email='shannon@freewire.net',
licence='BSD',
url='http://pow.sourceforge.net',
- ext_modules=[Extension('POW', ['POW.c'], libraries=['ssl', 'crypto'])]
+ ext_modules=[Extension('POW', ['POW.c'],
+ libraries=['ssl', 'crypto'],
+ include_dirs=['/usr/local/include', '/usr/include'])]
)
$OpenBSD: patch-setup_py,v 1.2 2002/01/02 02:53:25 shell Exp $
--- setup.py.orig Wed Jan 2 10:28:38 2002
+++ setup.py Wed Jan 2 10:29:00 2002
@@ -10,5 +10,5 @@
ext_modules=[ Extension('POW',
['POW.c'],
libraries=['ssl', 'crypto'],
- include_dirs=['/usr/local/lib'] )])
+ include_dirs=['/usr/include', '%%LOCALBASE%%/include'] )])