From 31cdfaf67ec9839b572532d9cf6b3634d4ee176b Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 5 Jul 2016 18:26:50 +0200 Subject: [PATCH] git: Update version from 2.4.1 to 2.9.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The change-logs are available locally [1] and in the WWW [2]. Unfortunately, git doesn’t support building outside of the source directory. [1] /usr/share/doc/git/RelNotes/ [2] https://git.kernel.org/pub/scm/git/git.git/tree/Documentation/RelNotes --- git-2.4.1-0.bee => git.be0 | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) rename git-2.4.1-0.bee => git.be0 (84%) diff --git a/git-2.4.1-0.bee b/git.be0 similarity index 84% rename from git-2.4.1-0.bee rename to git.be0 index b9c4b04a0..0cf2dcbed 100755 --- a/git-2.4.1-0.bee +++ b/git.be0 @@ -1,5 +1,7 @@ #!/usr/bin/env beesh +# BEE_VERSION git-2.9.0-0 + ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -8,7 +10,6 @@ ## downloaded. Version variables may be used to simplify reuse of this bee-file. SRCURL[0]="https://www.kernel.org/pub/software/scm/git/git-${PKGVERSION}.tar.xz" -SRCURL[1]="https://www.kernel.org/pub/software/scm/git/git-manpages-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. @@ -52,34 +53,19 @@ build_in_sourcedir # bee_patch "${@}" #} -#mee_configure() { -# bee_configure -#} +mee_configure() { + start_cmd make configure + bee_configure +} mee_build() { bee_build - cd contrib/subtree - bee_build - cd - } mee_install() { - bee_install - cd contrib/subtree - bee_install install-doc - cd - + bee_install install-doc install-html } -mee_install_post() { - manpages=${S}/man - mandest=${D}/${MANDIR}/man - - for i in 1 5 7 ; do - mkdir -pv ${mandest}${i} - install -m 644 -v ${manpages}${i}/*.${i} ${mandest}${i} - done -} - ## by default this may be 'make install DESTDIR="${D}"' ###############################################################################