diff --git a/Makefile b/Makefile index caed45c1dbd8c79ae21937b0741effae55e98cb7..552b428190ff242bf058189ea01b467b46946290 100644 --- a/Makefile +++ b/Makefile @@ -77,6 +77,7 @@ SUBDIR+= py-laaswm SUBDIR+= py-mavlink SUBDIR+= py-morse SUBDIR+= py-mraa +SUBDIR+= py-parametric-curves SUBDIR+= py-sot-tools-v3 SUBDIR+= roralink SUBDIR+= robotModelParser-libs diff --git a/py-parametric-curves/Makefile b/py-parametric-curves/Makefile index 0e9b42ccac7f81148b87d220f04635df1ce83b1c..391942294e1f1692d0663b70c0cfd98b98270244 100644 --- a/py-parametric-curves/Makefile +++ b/py-parametric-curves/Makefile @@ -2,13 +2,12 @@ # Created: Guilhem Saurel, on Fri 25 May, 2018 # NAME= parametric-curves -VERSION= 1.0.3 +VERSION= 1.1.0 PKGNAME= ${PKGTAG.python-}${NAME}-${VERSION} DISTNAME= ${NAME}-${VERSION} -MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=${NAME}/} +MASTER_SITES= ${MASTER_SITE_GITHUB:=stack-of-tasks/${NAME}/releases/download/v${VERSION}/} MASTER_REPOSITORY= ${MASTER_REPOSITORY_GITHUB}stack-of-tasks/${NAME} CHECKOUT_VCS_OPTS+= --recursive -PKGREVISION= 1 CATEGORIES= wip COMMENT= This packages provides a template based parametric curves library (python bindings) diff --git a/py-parametric-curves/distinfo b/py-parametric-curves/distinfo index f911af5584e4dc6353d9c397ed5bbf1f83ab4d05..f04494af2a4650f7789e72e839342969478798ec 100644 --- a/py-parametric-curves/distinfo +++ b/py-parametric-curves/distinfo @@ -1,3 +1,4 @@ -SHA1 (parametric-curves-1.0.3.tar.gz) = d11a15591b75c7646067cb6da76c9ac8070181c4 -RMD160 (parametric-curves-1.0.3.tar.gz) = a777c60c0c180ef3cc29ef7afd537fd33da96783 -Size (parametric-curves-1.0.3.tar.gz) = 810007 bytes +SHA1 (parametric-curves-1.1.0.tar.gz) = 7880be26f3d9e35df5168c0b522005aa70a7db87 +RMD160 (parametric-curves-1.1.0.tar.gz) = 31f3f8fc5f3e481e0d24bbc8e036a9909b80aa27 +Size (parametric-curves-1.1.0.tar.gz) = 780702 bytes +SHA1 (patch-aa) = 88c67c261caffd5766537f764964df3b04a768f5 diff --git a/py-parametric-curves/patches/patch-aa b/py-parametric-curves/patches/patch-aa new file mode 100644 index 0000000000000000000000000000000000000000..a99f91aaada17dc2217266efd952c26091c4584f --- /dev/null +++ b/py-parametric-curves/patches/patch-aa @@ -0,0 +1,14 @@ +Don't install .pyc files, fix python 3.2+, whose compiled files are __pycache__/$filename.<magic>.pyc +see https://www.python.org/dev/peps/pep-3147/ + +diff --git python/CMakeLists.txt python/CMakeLists.txt +index e347c37..9e25e78 100644 +--- python/CMakeLists.txt ++++ python/CMakeLists.txt +@@ -60,6 +60,5 @@ FOREACH(python ${PYTHON_FILES}) + + INSTALL(FILES + "${${PROJECT_NAME}_SOURCE_DIR}/python/${python}" +- "${CMAKE_BINARY_DIR}/bindings/python/${PROJECT_NAME}/${pythonFile}c" + DESTINATION ${${PYWRAP}_INSTALL_DIR}) + ENDFOREACH(python)