From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1YF63R-00057i-NC for mharc-grub-devel@gnu.org; Sat, 24 Jan 2015 14:07:33 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YF63Q-00056j-3G for grub-devel@gnu.org; Sat, 24 Jan 2015 14:07:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YF63M-0006fL-US for grub-devel@gnu.org; Sat, 24 Jan 2015 14:07:32 -0500 Received: from mail-la0-x22f.google.com ([2a00:1450:4010:c03::22f]:33223) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YF63M-0006fG-MQ for grub-devel@gnu.org; Sat, 24 Jan 2015 14:07:28 -0500 Received: by mail-la0-f47.google.com with SMTP id hz20so2436446lab.6 for ; Sat, 24 Jan 2015 11:07:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type; bh=+FvB5FcfmJ/ItdsNDQArIv44AETDU3B/rtlLjOdVw10=; b=Crki48FWXll2JgxqqtUSdJ4oHyICfBe2tq4TLELafJO5MVta4/kdAwhAsvd6ghdYBz i62Fbmcj0Hq5+qbyOlDqA/vqfyZOqinss3AxuU1Gmq6dsbKg0J+dZ65BrINYYhVWzKpU yYnrpB9Im6FgSsSdw1ftlTFgkLoMz1kZQEjugNuaIbD+MWi88jKcvFIb/zcKr5nBO7xE NrrBQ0Tbwf1KoU0AuWvX7gFCJkaMVsHXXBCRnJYShOJDjPe0MGhr3+/L1kNFC6+cnFA1 CUL6+vqTUNQ9AKF59nsZCZwiKtRnGowMRCCJzJKS4cC+PCYQMYL0T3ZRiX4Jnt8RGWmt 3W9w== X-Received: by 10.112.154.70 with SMTP id vm6mr13660450lbb.18.1422126447980; Sat, 24 Jan 2015 11:07:27 -0800 (PST) Received: from opensuse.site (ppp91-76-14-38.pppoe.mtu-net.ru. [91.76.14.38]) by mx.google.com with ESMTPSA id sj2sm1365699lac.0.2015.01.24.11.07.26 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 24 Jan 2015 11:07:27 -0800 (PST) Date: Sat, 24 Jan 2015 22:07:25 +0300 From: Andrei Borzenkov To: grub-devel@gnu.org Subject: Re: ChangeLog is generated from gitlog now. Message-ID: <20150124220725.21f6f0f3@opensuse.site> In-Reply-To: <54C3EAA4.3010008@gmail.com> References: <54C3C968.4040808@gmail.com> <20150124213749.52165c07@opensuse.site> <54C3EAA4.3010008@gmail.com> X-Mailer: Claws Mail 3.11.0 (GTK+ 2.24.25; x86_64-suse-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/cWmTKDy/IZEm1GD+8D_dBt+"; protocol="application/pgp-signature" X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::22f X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jan 2015 19:07:33 -0000 --Sig_/cWmTKDy/IZEm1GD+8D_dBt+ Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable =D0=92 Sat, 24 Jan 2015 19:55:32 +0100 Vladimir '=CF=86-coder/phcoder' Serbinenko =D0=BF=D0=B8= =D1=88=D0=B5=D1=82: > On 24.01.2015 19:37, Andrei Borzenkov wrote: > > =D0=92 Sat, 24 Jan 2015 17:33:44 +0100 > > Vladimir '=CF=86-coder/phcoder' Serbinenko =D0=BF= =D0=B8=D1=88=D0=B5=D1=82: > >=20 > >> It's generated only on creation of dist archive. > >> This also has implications to the git commit message format used. > >> Now git commit message follows standard git commit writing rules rather > >> than one-off rules which resulted from CSV->SVN->BZR->Git transitions. > >> > >=20 > >> +ChangeLog: FORCE > >> + if test -d $(top_srcdir)/.git; then \ > >> + $(gitlog_to_changelog) --srcdir=3D$(top_srcdir) --sinc= e=3D$(changelog_start_date) > '$@.tmp'; \ > >> + rm -f '$@'; mv '$@.tmp' '$@'; \ > >> + fi > >> + > >> +EXTRA_DIST +=3D ChangeLog ChangeLog-2015 > >=20 > >=20 > > This breaks make dist from git checkout, where repository is not > > available. May be empty ChangeLog should be created by autogen.sh. yes. Thank you! > >=20 > Would this patch fix your issue? > diff --git a/Makefile.am b/Makefile.am > index df0a728..a9f5780 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -447,6 +447,8 @@ ChangeLog: FORCE > if test -d $(top_srcdir)/.git; then \ > $(gitlog_to_changelog) --srcdir=3D$(top_srcdir) > --since=3D$(changelog_start_date) > '$@.tmp'; \ > rm -f '$@'; mv '$@.tmp' '$@'; \ > + else \ > + touch $@; \ > fi >=20 > EXTRA_DIST +=3D ChangeLog ChangeLog-2015 >=20 > >=20 > >=20 > > _______________________________________________ > > Grub-devel mailing list > > Grub-devel@gnu.org > > https://lists.gnu.org/mailman/listinfo/grub-devel > >=20 >=20 >=20 --Sig_/cWmTKDy/IZEm1GD+8D_dBt+ Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlTD7W4ACgkQR6LMutpd94wJUgCgsnSLt0EXh7tjg2tkVBtwI/+o DnUAoKdrih0I6ltaNbtI/YtGjK6L+Bf1 =+YHB -----END PGP SIGNATURE----- --Sig_/cWmTKDy/IZEm1GD+8D_dBt+--