Skip to content
Snippets Groups Projects
Commit 168e5ef3 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

[wip/{py-,}example-adder] Update to v2.0.0

parent c1d10dac
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
ORG= gepetto
NAME= example-adder
VERSION= 1.0.0
VERSION= 2.0.0
DISTNAME= ${NAME}-${VERSION}
......@@ -26,5 +26,5 @@ include ../../devel/boost-libs/depend.mk
include ../../pkgtools/pkg-config/depend.mk
include ../../mk/sysdep/cmake.mk
include ../../mk/language/c.mk
include ../../mk/language/c++.mk
include ../../mk/language/c++11.mk
include ../../mk/robotpkg.mk
SHA1 (example-adder-1.0.0.tar.gz) = aeebff7ae6ad8d9b8e323eae7747845d58bef9a9
RMD160 (example-adder-1.0.0.tar.gz) = 8a6f681cdca2a3d7bb0767798b4355f73f88725c
Size (example-adder-1.0.0.tar.gz) = 752982 bytes
SHA1 (example-adder-2.0.0.tar.gz) = d6662f8b49aa28af9f1b6c0dbbfe7b5d66883c24
RMD160 (example-adder-2.0.0.tar.gz) = d9f5f30acf314a5478ba07edfd0e8718fd04b571
Size (example-adder-2.0.0.tar.gz) = 771666 bytes
......@@ -4,7 +4,7 @@
ORG= gepetto
NAME= example-adder
VERSION= 1.0.0
VERSION= 2.0.0
DISTNAME= ${NAME}-${VERSION}
PKGNAME= ${PKGTAG.python-}${DISTNAME}
......@@ -13,6 +13,8 @@ MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=${NAME}/}
MASTER_REPOSITORY= git https://gepgitlab.laas.fr/${ORG}/${NAME}.git
CHECKOUT_VCS_OPTS+= --recursive
CMAKE_ARGS+= -DINSTALL_PYTHON_INTERFACE_ONLY=ON
CATEGORIES= wip
COMMENT= Example Project
LICENSE= 2-clause-bsd
......
SHA1 (example-adder-1.0.0.tar.gz) = aeebff7ae6ad8d9b8e323eae7747845d58bef9a9
RMD160 (example-adder-1.0.0.tar.gz) = 8a6f681cdca2a3d7bb0767798b4355f73f88725c
Size (example-adder-1.0.0.tar.gz) = 752982 bytes
SHA1 (example-adder-2.0.0.tar.gz) = d6662f8b49aa28af9f1b6c0dbbfe7b5d66883c24
RMD160 (example-adder-2.0.0.tar.gz) = d9f5f30acf314a5478ba07edfd0e8718fd04b571
Size (example-adder-2.0.0.tar.gz) = 771666 bytes
SHA1 (patch-aa) = ed6dc24b8dbe6064193963ba585b3e86023cd985
revert https://github.com/jrl-umi3218/jrl-cmakemodules/pull/214
to comply with robotpkg PYTHON_SITELIB instead of Debian / Ubuntu
--- cmake/python.cmake.orig 2019-07-28 11:15:53.000000000 +0200
+++ cmake/python.cmake 2019-08-31 18:28:52.847614739 +0200
@@ -84,7 +84,7 @@
EXECUTE_PROCESS(
COMMAND "${PYTHON_EXECUTABLE}" "-c"
- "from distutils import sysconfig; print(sysconfig.get_python_lib(prefix='', plat_specific=False))"
+ "import sys, os; print(os.sep.join(['lib', 'python' + sys.version[:3], 'site-packages']))"
OUTPUT_VARIABLE PYTHON_SITELIB
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_QUIET)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment