diff options
author | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-02-17 16:44:00 -0800 |
---|---|---|
committer | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2009-02-17 16:45:49 -0800 |
commit | d436a7fbcd7c7e5ae3e3215690a981fb24e97771 (patch) | |
tree | 5255e3decdd5de0e2316c2f476fc6ff9d2016bca | |
parent | d56d0a89b99adeee273e63a6cfc9e35111c89889 (diff) |
roll out 1.4.1
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
-rw-r--r-- | CHANGELOG | 6 | ||||
-rwxr-xr-x | configure | 20 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rwxr-xr-x | mk-archive | 70 |
4 files changed, 87 insertions, 11 deletions
@@ -1,3 +1,9 @@ +Changes in v1.4.1: + + - Fail to open if the interface is not WiMAX + + - Add mk-archive for preparing release tarballs + Changes in v1.3.96: - Use the netlink controller for gaining multicast groups knowledge. @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for WiMAX low level tools 1.4.0. +# Generated by GNU Autoconf 2.61 for WiMAX low level tools 1.4.1. # # Report bugs to <linux-wimax@intel.com>. # @@ -728,8 +728,8 @@ SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='WiMAX low level tools' PACKAGE_TARNAME='wimax-tools' -PACKAGE_VERSION='1.4.0' -PACKAGE_STRING='WiMAX low level tools 1.4.0' +PACKAGE_VERSION='1.4.1' +PACKAGE_STRING='WiMAX low level tools 1.4.1' PACKAGE_BUGREPORT='linux-wimax@intel.com' ac_unique_file="lib/internal.h" @@ -1407,7 +1407,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures WiMAX low level tools 1.4.0 to adapt to many kinds of systems. +\`configure' configures WiMAX low level tools 1.4.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1477,7 +1477,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of WiMAX low level tools 1.4.0:";; + short | recursive ) echo "Configuration of WiMAX low level tools 1.4.1:";; esac cat <<\_ACEOF @@ -1599,7 +1599,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -WiMAX low level tools configure 1.4.0 +WiMAX low level tools configure 1.4.1 generated by GNU Autoconf 2.61 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, @@ -1613,7 +1613,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by WiMAX low level tools $as_me 1.4.0, which was +It was created by WiMAX low level tools $as_me 1.4.1, which was generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ @@ -2304,7 +2304,7 @@ fi # Define the identity of the package. PACKAGE='wimax-tools' - VERSION='1.4.0' + VERSION='1.4.1' cat >>confdefs.h <<_ACEOF @@ -20764,7 +20764,7 @@ exec 6>&1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by WiMAX low level tools $as_me 1.4.0, which was +This file was extended by WiMAX low level tools $as_me 1.4.1, which was generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -20817,7 +20817,7 @@ Report bugs to <bug-autoconf@gnu.org>." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -WiMAX low level tools config.status 1.4.0 +WiMAX low level tools config.status 1.4.1 configured by $0, generated by GNU Autoconf 2.61, with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" diff --git a/configure.in b/configure.in index 486d4ac..8a1445e 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([WiMAX low level tools], [1.4.0], +AC_INIT([WiMAX low level tools], [1.4.1], [linux-wimax@intel.com], [wimax-tools]) AC_CONFIG_SRCDIR([lib/internal.h]) AM_INIT_AUTOMAKE diff --git a/mk-archive b/mk-archive new file mode 100755 index 0000000..a5051c6 --- /dev/null +++ b/mk-archive @@ -0,0 +1,70 @@ +#! /bin/sh +# +# Copyright (C) 2009 Intel Corporation <linux-wimax@intel.com> +# Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License version +# 2 as published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# +# See help for args +# +set -eua +shopt -s extglob + +function log +{ + echo $@ 1>&2 +} + +if [ $# != 1 ] +then + cat 1>&2 <<EOF +E: bad arguments +Usage: $(basename $0) REV + +This script generates a tar archive of the GIT tree with proper +versioning information. + +REV is a changeset id or (external) tag name for which the archive +should be generated. + +Has to be run from inside the tree. +EOF + exit 1 +fi + +tmpdir=`mktemp -d` +rev=$1 +name=${name:-wimax-tools} +if ! desc=$(git describe --tags --always $rev) +then + echo "E: can't describe revision specification $1" + exit 1 +fi +if [ $rev = HEAD ] +then + rev=$desc +fi +# Remove leading v from vM.m.p +name_rev="$(echo "$rev" | sed '/^v[0-9]\+/s/^v//')" + +git archive --format=tar --prefix=$name-$name_rev/ $rev > $tmpdir/ar.tar +mkdir $tmpdir/tree +tar xf $tmpdir/ar.tar -C $tmpdir/tree +echo $rev > $tmpdir/tree/$name-$name_rev/.git_archive.txt +tar czf $name-$name_rev.tar.gz -C $tmpdir/tree . +tar cjf $name-$name_rev.tar.bz2 -C $tmpdir/tree . +rm -rf $tmpdir/ + |