1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

Convert REINPLACE_CMD to patch file

This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-10-04 14:13:40 +00:00
parent 4274a1e11f
commit df849a5210
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=551401
2 changed files with 19 additions and 3 deletions

View File

@ -21,7 +21,4 @@ USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
post-patch:
@${REINPLACE_CMD} -e 's|msgpack-python|msgpack|; s|tarantool<0.4|tarantool|' ${WRKSRC}/setup.py
.include <bsd.port.mk>

View File

@ -0,0 +1,19 @@
--- setup.py.orig 2014-08-21 15:11:15 UTC
+++ setup.py
@@ -42,13 +42,13 @@ setup(name='tarantool-queue',
packages=['tarantool_queue'],
platforms = ["all"],
install_requires=[
- 'msgpack-python',
- 'tarantool<0.4'
+ 'msgpack',
+ 'tarantool'
],
url='http://github.com/tarantool/tarantool-queue-python',
test_suite='tests.test_queue',
tests_require=[
- 'msgpack-python',
+ 'msgpack',
'tarantool'
],
classifiers=[