python3-pykickstart_3.26.bb 950 B

12345678910111213141516171819202122232425
  1. DESCRIPTION = "A python library for manipulating kickstart files"
  2. HOMEPAGE = "http://fedoraproject.org/wiki/pykickstart"
  3. LICENSE = "GPLv2+"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
  5. FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
  6. DEPENDS = "python3"
  7. RDEPENDS_${PN} = "python3 \
  8. python3-requests \
  9. python3-six \
  10. "
  11. S = "${WORKDIR}/git"
  12. SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=master \
  13. file://0001-support-authentication-for-kickstart.patch \
  14. file://0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch \
  15. file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \
  16. file://0004-load.py-retry-to-invoke-request-with-timeout.patch \
  17. "
  18. SRCREV = "4c93e84c8798da511da1c05f1912d2f908f8f85f"
  19. UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
  20. inherit setuptools3