Keep backward compatibility for cumulus users
This commit is contained in:
parent
fd55e99a7c
commit
c6624909de
|
@ -80,14 +80,14 @@
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/plugins/alpha/macro/macro.py
|
${CMAKE_CURRENT_SOURCE_DIR}/plugins/alpha/macro/macro.py
|
||||||
)
|
)
|
||||||
|
|
||||||
install ( FILES ${pySources} DESTINATION ${PYTHON_SITE_PACKAGES} )
|
install ( FILES ${pySources} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus )
|
||||||
install ( FILES ${pyPlugins} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins )
|
install ( FILES ${pyPlugins} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins )
|
||||||
install ( FILES ${pyPluginCTS} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/cts )
|
install ( FILES ${pyPluginCTS} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/cts )
|
||||||
install ( FILES ${pyPluginC2C} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/core2chip )
|
install ( FILES ${pyPluginC2C} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/core2chip )
|
||||||
install ( FILES ${pyPluginChip} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/chip )
|
install ( FILES ${pyPluginChip} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/chip )
|
||||||
install ( FILES ${pyPluginAlpha} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/alpha )
|
install ( FILES ${pyPluginAlpha} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/alpha )
|
||||||
install ( FILES ${pyPluginAlphaBlock} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/alpha/block )
|
install ( FILES ${pyPluginAlphaBlock} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/alpha/block )
|
||||||
install ( FILES ${pyPluginAlphaC2C} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/alpha/core2chip )
|
install ( FILES ${pyPluginAlphaC2C} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/alpha/core2chip )
|
||||||
install ( FILES ${pyPluginAlphaChip} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/alpha/chip )
|
install ( FILES ${pyPluginAlphaChip} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/alpha/chip )
|
||||||
install ( FILES ${pyPluginAlphaMacro} DESTINATION ${PYTHON_SITE_PACKAGES}/plugins/alpha/macro )
|
install ( FILES ${pyPluginAlphaMacro} DESTINATION ${PYTHON_SITE_PACKAGES}/cumulus/plugins/alpha/macro )
|
||||||
install ( PROGRAMS ${pyTools} DESTINATION bin )
|
install ( PROGRAMS ${pyTools} DESTINATION bin )
|
||||||
|
|
|
@ -3,13 +3,15 @@
|
||||||
let pkg =
|
let pkg =
|
||||||
{ lib, coriolis-vlsisapd, coriolis-hurricane, coriolis-crlcore
|
{ lib, coriolis-vlsisapd, coriolis-hurricane, coriolis-crlcore
|
||||||
, coriolis-etesian, coriolis-anabatic, coriolis-katana
|
, coriolis-etesian, coriolis-anabatic, coriolis-katana
|
||||||
, coriolis-unicorn }:
|
, coriolis-unicorn, python2Packages }:
|
||||||
{
|
{
|
||||||
name = "cumulus";
|
name = "cumulus";
|
||||||
|
|
||||||
src = ../cumulus;
|
src = ../cumulus;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
ln -s -t $out/${python2Packages.python.sitePackages} $out/${python2Packages.python.sitePackages}/cumulus/*
|
||||||
|
|
||||||
# for import check
|
# for import check
|
||||||
mkdir -p /build/coriolistop/etc/coriolis2
|
mkdir -p /build/coriolistop/etc/coriolis2
|
||||||
export CORIOLIS_TOP=/build/coriolistop
|
export CORIOLIS_TOP=/build/coriolistop
|
||||||
|
|
Loading…
Reference in New Issue