Received: from vps892.directvps.nl (ikke.info [178.21.113.177]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id AC08F7819D1 for ; Fri, 22 Nov 2019 11:35:43 +0000 (UTC) Received: by vps892.directvps.nl (Postfix, from userid 1008) id 6589E4400E7; Fri, 22 Nov 2019 12:35:42 +0100 (CET) Date: Fri, 22 Nov 2019 12:35:42 +0100 From: Kevin Daudt To: alpine-mips-patches Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [PATCH] main/doxygen: do not use git during build Message-ID: <20191122113542.GG456781@alpha> References: <20191120132744.E4A164DB1A@mx12.valuehost.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191120132744.E4A164DB1A@mx12.valuehost.ru> User-Agent: Mutt/1.12.2 (2019-09-21) On Wed, Nov 20, 2019 at 01:18:23PM +0000, alpine-mips-patches wrote: > If git is not installed, build breaks. > > If git is installed, output of the 'git rev-parse HEAD' command is > saved in the resulted binary as doxygen revision. However doxygen > source tarball lacks the .git folder so the hash of the underlying > aports tree HEAD is retrieved instead. > --- > main/doxygen/APKBUILD | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/main/doxygen/APKBUILD b/main/doxygen/APKBUILD > index 47f3de9567..3aef1dc911 100644 > --- a/main/doxygen/APKBUILD > +++ b/main/doxygen/APKBUILD > @@ -1,7 +1,7 @@ > # Maintainer: Natanael Copa > pkgname=doxygen > pkgver=1.8.16 > -pkgrel=0 > +pkgrel=1 > pkgdesc="A documentation system for C++, C, Java, IDL and PHP" > url="http://www.doxygen.nl/" > arch="all" > @@ -15,6 +15,7 @@ source="http://doxygen.nl/files/doxygen-$pkgver.src.tar.gz > build() { > cd "$builddir" > cmake .\ > + -DGIT_EXECUTABLE=/bin/false \ > -DCMAKE_INSTALL_PREFIX=/usr \ > -DCMAKE_BUILD_TYPE=Release \ > -Dbuild_xmlparser=ON > -- > 2.24.0 > This as applied as d5c94dff (by maxice8).