python-augeas.mk 916 B

123456789101112131415161718192021
  1. ################################################################################
  2. #
  3. # python-augeas
  4. #
  5. ################################################################################
  6. PYTHON_AUGEAS_VERSION = 1.1.0
  7. PYTHON_AUGEAS_SITE = $(call github,hercules-team,python-augeas,v$(PYTHON_AUGEAS_VERSION))
  8. PYTHON_AUGEAS_SETUP_TYPE = setuptools
  9. PYTHON_AUGEAS_LICENSE = LGPL-2.1+
  10. PYTHON_AUGEAS_LICENSE_FILES = COPYING
  11. PYTHON_AUGEAS_DEPENDENCIES = augeas host-python-cffi host-pkgconf
  12. # This will tell python-augeas to not call xml2-config, and instead
  13. # use pkg-config to find libxml2. libxml2 is an indirect dependency of
  14. # augeas, which is why it's not in our dependencies. It's odd that
  15. # python-augeas searches for libxml2, but that's what it
  16. # does. Question asked in the pull request at
  17. # https://github.com/hercules-team/python-augeas/pull/49.
  18. PYTHON_AUGEAS_ENV = XML2_CONFIG=/bin/false
  19. $(eval $(python-package))