mirror of
https://github.com/Telecominfraproject/ols-nos.git
synced 2025-10-29 17:22:33 +00:00
#### Why I did it
Switch py-common from swsssdk to swsscommon.
#### How I did it
Change code and make file to use swsscommon.
#### How to verify it
Pass all UT and E2E test.
#### Which release branch to backport (provide reason below if selected)
<!--
- Note we only backport fixes to a release branch, *not* features!
- Please also provide a reason for the backporting below.
- e.g.
- [x] 202006
-->
- [ ] 201811
- [ ] 201911
- [ ] 202006
- [ ] 202012
- [ ] 202106
- [ ] 202111
#### Description for the changelog
<!--
Write a short (one line) summary that describes the changes in this
pull request for inclusion in the changelog:
-->
#### Link to config_db schema for YANG module changes
<!--
Provide a link to config_db schema for the table for which YANG model
is defined
Link should point to correct section on https://github.com/Azure/SONiC/wiki/Configuration.
-->
#### A picture of a cute animal (not mandatory but encouraged)
26 lines
1.0 KiB
Makefile
26 lines
1.0 KiB
Makefile
ifeq ($(ENABLE_PY2_MODULES), y)
|
|
# SONIC_PY_COMMON_PY2 package
|
|
|
|
SONIC_PY_COMMON_PY2 = sonic_py_common-1.0-py2-none-any.whl
|
|
$(SONIC_PY_COMMON_PY2)_SRC_PATH = $(SRC_PATH)/sonic-py-common
|
|
$(SONIC_PY_COMMON_PY2)_DEPENDS += $(SWSSSDK_PY2)
|
|
$(SONIC_PY_COMMON_PY2)_DEBS_DEPENDS = $(LIBSWSSCOMMON) \
|
|
$(PYTHON_SWSSCOMMON)
|
|
$(SONIC_PY_COMMON_PY2)_PYTHON_VERSION = 2
|
|
SONIC_PYTHON_WHEELS += $(SONIC_PY_COMMON_PY2)
|
|
endif
|
|
|
|
# SONIC_PY_COMMON_PY3 package
|
|
|
|
SONIC_PY_COMMON_PY3 = sonic_py_common-1.0-py3-none-any.whl
|
|
$(SONIC_PY_COMMON_PY3)_SRC_PATH = $(SRC_PATH)/sonic-py-common
|
|
$(SONIC_PY_COMMON_PY3)_DEPENDS += $(SWSSSDK_PY3)
|
|
$(SONIC_PY_COMMON_PY3)_DEBS_DEPENDS = $(PYTHON3_SWSSCOMMON)
|
|
ifeq ($(ENABLE_PY2_MODULES), y)
|
|
# Synthetic dependency to avoid building the Python 2 and 3 packages
|
|
# simultaneously and any potential conflicts which may arise
|
|
$(SONIC_PY_COMMON_PY3)_DEPENDS += $(SONIC_PY_COMMON_PY2)
|
|
endif
|
|
$(SONIC_PY_COMMON_PY3)_PYTHON_VERSION = 3
|
|
SONIC_PYTHON_WHEELS += $(SONIC_PY_COMMON_PY3)
|