From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19443 invoked by alias); 27 Aug 2014 12:51:25 -0000 Mailing-List: contact src-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: src-cvs-owner@sourceware.org Received: (qmail 19396 invoked by uid 9982); 27 Aug 2014 12:51:24 -0000 Date: Wed, 27 Aug 2014 12:51:00 -0000 Message-ID: <20140827125122.19369.qmail@sourceware.org> From: willnewton@sourceware.org To: src-cvs@sourceware.org Subject: gdb and binutils branch master updated. 2536ee9d03cb7c4af97bf4b29429bef3c30652c2 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7322eefb9ee1c3b00a2ec3649778b733e43c7b35 X-Git-Newrev: 2536ee9d03cb7c4af97bf4b29429bef3c30652c2 X-SW-Source: 2014-q3/txt/msg00014.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gdb and binutils". The branch, master has been updated via 2536ee9d03cb7c4af97bf4b29429bef3c30652c2 (commit) from 7322eefb9ee1c3b00a2ec3649778b733e43c7b35 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=2536ee9d03cb7c4af97bf4b29429bef3c30652c2 commit 2536ee9d03cb7c4af97bf4b29429bef3c30652c2 Author: Will Newton Date: Thu Aug 7 14:38:55 2014 +0100 src-release.sh: Convert src-release to a shell script This began as an attempt to make a few small changes to src-release but heeding the comments at the top of the file it seemed it might be wise to convert it to a shell script instead which should hopefully be more maintainable. This shell script contains most of the functionality of the Makefile version. It can be run like this: # This will build gdb and compress with bzip2, gzip and xz ./src-release.sh -bgx gdb The functionality that has been removed is building tarballs for insight and gnats, which were broken in the current repository layout and gas+binutils which amounted to basically the same thing as binutils so didn't seem worth keeping. The script always builds a tar file, compression is optional, so no need for specific commands to build tar files rather than compressed tar files. The build of gas releases has been fixed, as has extraction of version numbers which had been broken since the switch to configure.ac files and AC_INIT. I also removed the code for distcleaning the intl sub-directory as it seems like that issue has been fixed. The script is capable of compressing with bzip2, gzip and xz which should cover all formats available on gnu.org. I tested it by producing release tarballs which are substantially identical to the ones produced by the src-release script. ChangeLog: 2014-08-27 Will Newton * src-release.sh: New file. * src-release: Remove file. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 5 + src-release | 318 -------------------------------------------------- src-release.sh | 352 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 357 insertions(+), 318 deletions(-) delete mode 100644 src-release create mode 100755 src-release.sh hooks/post-receive -- gdb and binutils