This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Update texinfo.tex, config.guess, config.sub from upstream


On Thu, Dec 19, 2013 at 05:37:19PM +0000, Joseph S. Myers wrote:
> This patch updates various miscellaneous files we take from upstream
> GNU sources (texinfo.tex, config.guess, config.sub - various others
> haven't changed upstream since we last updated them) to their current
> upstream versions.
> 
> Tested x86_64 and committed as obvious.
>
Roland made several months ago a good proposal to formalize/automate
tracking of these files.

One way would be to have a script like below that would download new
versions of files and then we could look what changed and commit these.

It would be needed to find what are files from elsewhere, where original
is found and watch when they move.

I wrote a sample script, does that look reasonable?

Then there could be wrapper from cron that I would run weekly/monthly which
would send mail with a diff, I am not sure if to glibc-cvs or directly 
to glibc-alpha.

diff --git a/scripts/update-copied b/scripts/update-copied
new file mode 100755
index 0000000..3abc276
--- /dev/null
+++ b/scripts/update-copied
@@ -0,0 +1,6 @@
+#!/bin/bash
+wget http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt -O COPYING
+wget http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt -O COPYING.LIB
+wget http://www.gnu.org/licenses/fdl-1.3.texi -O manual/fdl-1.3.texi
+wget http://www.gnu.org/licenses/lgpl-2.1.texi -O manual/lgpl-2.1.texi
+
--
1.8.4.rc3


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]