Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Distributed version control system" |
| 2 | HOMEPAGE = "http://git-scm.com" |
Andrew Geissler | 90fd73c | 2021-03-05 15:25:55 -0600 | [diff] [blame] | 3 | DESCRIPTION = "Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency." |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 4 | SECTION = "console/utils" |
| 5 | LICENSE = "GPLv2" |
| 6 | DEPENDS = "openssl curl zlib expat" |
| 7 | |
| 8 | PROVIDES_append_class-native = " git-replacement-native" |
| 9 | |
| 10 | SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.gz;name=tarball \ |
Andrew Geissler | 9b4d8b0 | 2021-02-19 12:26:16 -0600 | [diff] [blame] | 11 | ${KERNELORG_MIRROR}/software/scm/git/git-manpages-${PV}.tar.gz;name=manpages \ |
Andrew Geissler | 95ac1b8 | 2021-03-31 14:34:31 -0500 | [diff] [blame] | 12 | file://fixsort.patch \ |
| 13 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 | |
| 15 | S = "${WORKDIR}/git-${PV}" |
| 16 | |
| 17 | LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1" |
| 18 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 19 | CVE_PRODUCT = "git-scm:git" |
| 20 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 21 | PACKAGECONFIG ??= "" |
| 22 | PACKAGECONFIG[cvsserver] = "" |
| 23 | PACKAGECONFIG[svn] = "" |
| 24 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 25 | EXTRA_OECONF = "--with-perl=${STAGING_BINDIR_NATIVE}/perl-native/perl \ |
| 26 | --without-tcltk \ |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 27 | --without-iconv \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 28 | " |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 29 | EXTRA_OECONF_append_class-nativesdk = " --with-gitconfig=/etc/gitconfig " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 30 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 31 | # Needs brokensep as this doesn't use automake |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 32 | inherit autotools-brokensep perlnative bash-completion |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 33 | |
| 34 | EXTRA_OEMAKE = "NO_PYTHON=1 CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'" |
| 35 | EXTRA_OEMAKE += "'PERL_PATH=/usr/bin/env perl'" |
| 36 | EXTRA_OEMAKE_append_class-native = " NO_CROSS_DIRECTORY_HARDLINKS=1" |
| 37 | |
| 38 | do_compile_prepend () { |
| 39 | # Remove perl/perl.mak to fix the out-of-date perl.mak error |
| 40 | # during rebuild |
| 41 | rm -f perl/perl.mak |
| 42 | } |
| 43 | |
| 44 | do_install () { |
| 45 | oe_runmake install DESTDIR="${D}" bindir=${bindir} \ |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 46 | template_dir=${datadir}/git-core/templates |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 47 | |
| 48 | for section in man1 man5 man7; do |
| 49 | install -d ${D}/${mandir}/$section |
| 50 | install -t ${D}/${mandir}/$section ${WORKDIR}/$section/* |
| 51 | done |
| 52 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 53 | install -d ${D}/${datadir}/bash-completion/completions/ |
| 54 | install -m 644 ${S}/contrib/completion/git-completion.bash ${D}/${datadir}/bash-completion/completions/git |
| 55 | } |
| 56 | |
| 57 | perl_native_fixup () { |
| 58 | sed -i -e 's#${STAGING_BINDIR_NATIVE}/perl-native/#${bindir}/#' \ |
| 59 | -e 's#${libdir}/perl-native/#${libdir}/#' \ |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 60 | ${@d.getVar("PERLTOOLS").replace(' /',d.getVar('D') + '/')} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 61 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 62 | if [ ! "${@bb.utils.filter('PACKAGECONFIG', 'cvsserver', d)}" ]; then |
| 63 | # Only install the git cvsserver command if explicitly requested |
| 64 | # as it requires the DBI Perl module, which does not exist in |
| 65 | # OE-Core. |
| 66 | rm ${D}${libexecdir}/git-core/git-cvsserver \ |
| 67 | ${D}${bindir}/git-cvsserver |
| 68 | fi |
| 69 | |
| 70 | if [ ! "${@bb.utils.filter('PACKAGECONFIG', 'svn', d)}" ]; then |
| 71 | # Only install the git svn command and all Git::SVN Perl modules |
| 72 | # if explicitly requested as they require the SVN::Core Perl |
| 73 | # module, which does not exist in OE-Core. |
| 74 | rm -r ${D}${libexecdir}/git-core/git-svn \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 75 | ${D}${datadir}/perl5/Git/SVN* |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 76 | fi |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | REL_GIT_EXEC_PATH = "${@os.path.relpath(libexecdir, bindir)}/git-core" |
| 80 | REL_GIT_TEMPLATE_DIR = "${@os.path.relpath(datadir, bindir)}/git-core/templates" |
| 81 | |
| 82 | do_install_append_class-target () { |
| 83 | perl_native_fixup |
| 84 | } |
| 85 | |
| 86 | do_install_append_class-native() { |
| 87 | create_wrapper ${D}${bindir}/git \ |
| 88 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ |
| 89 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} |
| 90 | } |
| 91 | |
| 92 | do_install_append_class-nativesdk() { |
| 93 | create_wrapper ${D}${bindir}/git \ |
| 94 | GIT_EXEC_PATH='`dirname $''realpath`'/${REL_GIT_EXEC_PATH} \ |
| 95 | GIT_TEMPLATE_DIR='`dirname $''realpath`'/${REL_GIT_TEMPLATE_DIR} |
| 96 | perl_native_fixup |
| 97 | } |
| 98 | |
| 99 | FILES_${PN} += "${datadir}/git-core ${libexecdir}/git-core/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 100 | |
| 101 | PERLTOOLS = " \ |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 102 | ${bindir}/git-cvsserver \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 103 | ${libexecdir}/git-core/git-add--interactive \ |
| 104 | ${libexecdir}/git-core/git-archimport \ |
| 105 | ${libexecdir}/git-core/git-cvsexportcommit \ |
| 106 | ${libexecdir}/git-core/git-cvsimport \ |
| 107 | ${libexecdir}/git-core/git-cvsserver \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 108 | ${libexecdir}/git-core/git-send-email \ |
| 109 | ${libexecdir}/git-core/git-svn \ |
| 110 | ${libexecdir}/git-core/git-instaweb \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 111 | ${datadir}/gitweb/gitweb.cgi \ |
| 112 | ${datadir}/git-core/templates/hooks/prepare-commit-msg.sample \ |
| 113 | ${datadir}/git-core/templates/hooks/pre-rebase.sample \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 114 | ${datadir}/git-core/templates/hooks/fsmonitor-watchman.sample \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 115 | " |
| 116 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 117 | # Git tools requiring perl |
| 118 | PACKAGES =+ "${PN}-perltools" |
| 119 | FILES_${PN}-perltools += " \ |
| 120 | ${PERLTOOLS} \ |
| 121 | ${libdir}/perl \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 122 | ${datadir}/perl5 \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 123 | " |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 124 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 125 | RDEPENDS_${PN}-perltools = "${PN} perl perl-module-file-path findutils" |
| 126 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 127 | # git-tk package with gitk and git-gui |
| 128 | PACKAGES =+ "${PN}-tk" |
| 129 | #RDEPENDS_${PN}-tk = "${PN} tk tcl" |
| 130 | #EXTRA_OEMAKE = "TCL_PATH=${STAGING_BINDIR_CROSS}/tclsh" |
| 131 | FILES_${PN}-tk = " \ |
| 132 | ${bindir}/gitk \ |
| 133 | ${datadir}/gitk \ |
| 134 | " |
| 135 | |
| 136 | PACKAGES =+ "gitweb" |
| 137 | FILES_gitweb = "${datadir}/gitweb/" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 138 | RDEPENDS_gitweb = "perl" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 139 | |
| 140 | BBCLASSEXTEND = "native nativesdk" |