blob: 829ada4f8bc0bfb7c4d4ef370c2b7a52c2593dd9 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001DESCRIPTION = "A python library for manipulating kickstart files"
2HOMEPAGE = "http://fedoraproject.org/wiki/pykickstart"
3LICENSE = "GPLv2+"
4
5LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
Patrick Williams213cb262021-08-07 19:21:33 -05006FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
Brad Bishop19323692019-04-05 15:28:33 -04007
8DEPENDS = "python3"
Patrick Williams213cb262021-08-07 19:21:33 -05009RDEPENDS:${PN} = "python3 \
Brad Bishop19323692019-04-05 15:28:33 -040010 python3-requests \
11 python3-six \
12"
13
14S = "${WORKDIR}/git"
15SRC_URI = "git://github.com/rhinstaller/pykickstart.git;protocol=https;branch=master \
16 file://0001-support-authentication-for-kickstart.patch \
17 file://0002-pykickstart-parser.py-add-lock-for-readKickstart-and.patch \
18 file://0003-comment-out-sections-shutdown-and-environment-in-gen.patch \
19 file://0004-load.py-retry-to-invoke-request-with-timeout.patch \
20 "
Andrew Geissler97771a32021-03-05 15:23:11 -060021SRCREV = "c56a5fbdd4079b187b21787f072ccc83dc09c28c"
Brad Bishop19323692019-04-05 15:28:33 -040022
23UPSTREAM_CHECK_GITTAGREGEX = "r(?P<pver>\d+(\.\d+)+(-\d+)*)"
24
25inherit setuptools3