This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a commit to branch parser
in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push:
new a763ade reverse logic on file existance test.
a763ade is described below
commit a763ade59bb0a57d343bfd06d4325ba55e797872
Author: Rob Savoye <rob.savoye(a)linaro.org>
Date: Thu Aug 20 18:40:26 2015 -0600
reverse logic on file existance test.
Change-Id: Ib1fd1e8eed33ad6310d3238da5f713c6aede2ca3
---
lib/fetch.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/fetch.sh b/lib/fetch.sh
index fb82b8d..1a0725d 100755
--- a/lib/fetch.sh
+++ b/lib/fetch.sh
@@ -271,7 +271,7 @@ fetch_reference()
# Only copy if the source file in the reference dir is newer than
# that file in the local_snapshots directory (if it exists).
- dryrun "cp${update_on_change:+ ${update_on_change}} ${git_reference_dir}${dir} [...]
+ dryrun "cp${update_on_change:+ ${update_on_change}} ${git_reference_dir}${dir} [...]
if test $? -gt 0; then
error "Copying ${getfile} from reference dir to ${local_snapshots}${dir} failed."
return 1
@@ -297,7 +297,7 @@ check_md5sum()
local dir=""
fi
- if test -e "${local_snapshots}${dir}/${file}"; then
+ if test ! -e "${local_snapshots}${dir}/${file}"; then
error "No md5sum file for ${tool}!"
return 1
fi
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from f2accd9 * name-lookup.c (hidden_name_p): Handle OVERLOAD.
new 4c52991 Daily bump.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a change to branch parser
in repository toolchain/abe.
from c326f19 add component name before the version
new a37b75b Add data for ABE itself as a component
new 67b4f25 Use the data array in a loop to produce a manifest file. Add [...]
new 8588343 drop the escaped quotes as the screw up parsing later.
new aba8b14 Add revision info for each component to the data array.
new 57412cc fix test, bad syntax
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
abe.sh | 3 +
config/glibc.conf | 4 +-
lib/checkout.sh | 11 +++-
lib/component.sh | 21 ++++++-
lib/fetch.sh | 2 +-
lib/package.sh | 174 +++++++++---------------------------------------------
6 files changed, 61 insertions(+), 154 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 4db9cc5 * include/experimental/any (__any_caster): Define at namespa [...]
new 1eac3b0 libstdc++/67294 Don't run timed mutex tests on Darwin
new f2accd9 * name-lookup.c (hidden_name_p): Handle OVERLOAD.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/cp/ChangeLog | 4 ++++
gcc/cp/name-lookup.c | 7 +++++++
gcc/testsuite/g++.dg/lookup/friend16.C | 24 ++++++++++++++++++++++
gcc/testsuite/g++.dg/template/friend15.C | 5 +++--
gcc/testsuite/g++.dg/template/friend18.C | 5 +++--
gcc/testsuite/g++.old-deja/g++.pt/friend32.C | 4 ++--
libstdc++-v3/ChangeLog | 5 +++++
.../30_threads/recursive_timed_mutex/unlock/2.cc | 4 ++--
.../testsuite/30_threads/timed_mutex/unlock/2.cc | 4 ++--
9 files changed, 52 insertions(+), 10 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/lookup/friend16.C
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 62fdb8e gcc/ * rtl.h (rtvec_all_equal_p): Declare. (const_vec_dupli [...]
new 4db9cc5 * include/experimental/any (__any_caster): Define at namespa [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
libstdc++-v3/ChangeLog | 4 ++++
libstdc++-v3/include/experimental/any | 19 +++++++++++--------
.../testsuite/experimental/any/misc/any_cast_neg.cc | 2 +-
3 files changed, 16 insertions(+), 9 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a change to branch parser
in repository toolchain/abe.
from 58e1c55 get_source() is now no longer used anywhere.
new ae24913 Remove the now unused fetch_md5sums function. Extract the pro [...]
new c326f19 add component name before the version
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/depend.sh | 2 +-
lib/fetch.sh | 39 ++++++++++-----------------------------
2 files changed, 11 insertions(+), 30 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch trunk
in repository gcc.
from 55f12fc libitm: Don't redefine __always_inline in local_atomic.
new 62fdb8e gcc/ * rtl.h (rtvec_all_equal_p): Declare. (const_vec_dupli [...]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/ChangeLog | 19 ++++++++++++++++
gcc/config/aarch64/aarch64.c | 46 +++++----------------------------------
gcc/config/arm/arm.c | 14 ++----------
gcc/config/s390/s390.c | 17 ++++-----------
gcc/config/spu/spu.c | 11 +++-------
gcc/config/tilegx/constraints.md | 13 +++--------
gcc/config/tilegx/predicates.md | 16 ++++----------
gcc/config/tilepro/constraints.md | 6 ++---
gcc/config/tilepro/predicates.md | 10 ++++-----
gcc/expmed.c | 11 +---------
gcc/rtl.c | 25 +++++++++++++++++++++
gcc/rtl.h | 36 ++++++++++++++++++++++++++++++
12 files changed, 109 insertions(+), 115 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a commit to branch parser
in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push:
new 58e1c55 get_source() is now no longer used anywhere.
58e1c55 is described below
commit 58e1c55fe9aaadee05236a8f14bde0fa74f99a35
Author: Rob Savoye <rob.savoye(a)linaro.org>
Date: Thu Aug 20 13:05:51 2015 -0600
get_source() is now no longer used anywhere.
Change-Id: Id730496a631cbbbc652e7f0c391b75fe3798dd11
---
abe.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/abe.sh b/abe.sh
index a2887aa..8d50317 100755
--- a/abe.sh
+++ b/abe.sh
@@ -1277,7 +1277,7 @@ fi
if test ! -z ${do_build}; then
if test x"${do_build}" != x"all"; then
buildingall=no
- gitinfo="`get_source ${do_build}`"
+ gitinfo="${do_build}"
if test x"${gitinfo}" = x; then
error "Couldn't find the source for ${do_build}"
build_failure
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a commit to branch parser
in repository toolchain/abe.
The following commit(s) were added to refs/heads/parser by this push:
new 5014b27 get_source() is now no longer used anywhere.
5014b27 is described below
commit 5014b27cf3d04b4979fb777ff40ce21e19b75234
Author: Rob Savoye <rob.savoye(a)linaro.org>
Date: Thu Aug 20 13:01:03 2015 -0600
get_source() is now no longer used anywhere.
Change-Id: I41dc6f677d00cbfdc4e4803816014167675a1db4
---
abe.sh | 8 +---
lib/common.sh | 152 ----------------------------------------------------------
2 files changed, 1 insertion(+), 159 deletions(-)
diff --git a/abe.sh b/abe.sh
index 3a5d494..a2887aa 100755
--- a/abe.sh
+++ b/abe.sh
@@ -1260,13 +1260,7 @@ fi
if test ! -z ${do_checkout}; then
if test x"${do_checkout}" != x"all"; then
- url="`get_source ${do_checkout}`"
- if test $? -gt 0; then
- error "Couldn't find the source for ${do_checkout}"
- build_failure
- fi
-
- checkout ${url}
+ checkout ${do_checkout}
if test $? -gt 0; then
error "--checkout ${url} failed."
build_failure
diff --git a/lib/common.sh b/lib/common.sh
index 67be001..1f8c549 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -433,158 +433,6 @@ find_snapshot()
return 0
}
-# Get the full path or URL to checkout or download sources of a toolchain
-# component.
-# This is the kitchen sink of function.
-#
-# $1 -
-# binutils, gcc, glibc, newlib, etc...
-#
-# returns ${url} as a string with either a single string that is the tarball
-# name, or a URL that can be used by git. The fields are as returned by
-# get_URL(), which is 'git url' and optionally 'git branch' 'git revision'.
-get_source()
-{
-# trace "$*"
-
- if test x"$1" = x; then
- error "get_source() called without an argument!"
- return 1
- fi
-
- local url=
- # If a full URL or git repo identifier isn't passed as an argument,
- # assume we want a tarball snapshot
- if test `echo $1 | egrep -c "^svn|^git|^http|^ssh|^bzr|^lp|\.git"` -eq 0; then
- local snapshot
- snapshot=`find_snapshot $1`
- if test $? -gt 0; then
- if test x"${interactive}" = x"yes"; then
- # TODO: Add a testcase for this leg, conditional on
- # interactive.
- echo "Pick a unique snapshot name from this list: " 1>&2
- for i in ${snapshot}; do
- echo " $i" 1>&2
- done
- read answer
- local url
- url="`find_snapshot ${answer}`"
- local ssret=$?
- echo "${url}"
- return ${ssret}
- else
- if test x"${snapshot}" != x; then
- # It's possible that the value passed in to get_sources
- # didn't match any known snapshots OR there were too many
- # matches. Check <package>.conf:latest to see if there's a
- # matching snapshot.
- if test x"${latest}" != x; then
- local url
- url=`find_snapshot ${latest}`
- local ssret=$?
- echo "${url}"
- return ${ssret}
- fi
- # Technically 'notice' and 'get_URL' already suppress without
- # verbose being set but no reason to do unnecessary work.
- if test "${verbose}" -gt 0; then
- notice "Pick a unique snapshot name from this list and try again: "
- for i in ${snapshot}; do
- echo " $i" 1>&2
- done
- list_URL $1
- fi
- return 1
- fi
- fi
- else
- echo ${snapshot}
- return 0
- fi
- else
- # This leg captures direct urls that don't start or end in .git.
- # This include svn directories and git identifiers that start with http://.
- if test `echo $1 | egrep -c "\.git"` -eq 0 -a `echo $1 | egrep -c "^git"` -eq 0; then
- #if test `echo $1 | egrep -c "\.git"` -eq 0; then
- local url=$1
- echo "${url}"
- return 0
- fi
- fi
-
- # If a full URL isn't passed as an argment, get one for the
- # toolchain component from the sources.conf file.
- # If passed a full URL, use that to checkout the sources
- if test x"${url}" = x; then
-
- local service=
- service="`get_git_service $1`"
-
- # This might be a full URL or just an identifier. Use the
- # service field to determine this.
- local gitinfo=
- if test x"${service}" = x; then
- # Just an identifier, so get the full git info.
- local gitinfo="`get_URL $1`"
- if test x"${gitinfo}" = x; then
- error "$1 not a valid sources.conf identifier."
- return 1;
- fi
- else
- # Full URL
- local gitinfo="$1"
- fi
-
- local url=
- local url_ret=
- url="`get_git_url ${gitinfo}`"
- url_ret=$?
- local branch=
- branch="`get_git_branch ${gitinfo}`"
- local revision=
- revision="`get_git_revision ${gitinfo}`"
-
-#
-# local url="`echo ${gitinfo} | cut -d ' ' -f 1`"
-# if test `echo ${gitinfo} | wc -w` -gt 1; then
-# local branch="`echo ${gitinfo} | cut -d ' ' -f 2`"
-# else
-# branch=
-# fi
-# if test `echo ${gitinfo} | wc -w` -gt 2; then
-# local revision="`echo ${gitinfo} | cut -d ' ' -f 3`"
-# fi
-
- #if test $? -gt 0; then
- if test ${url_ret} -gt 0; then
- if test x"${interactive}" = x"yes"; then
- notice "Pick a unique URL (by identifier) from this list: "
- list_URL $3
- for i in ${url}; do
- echo "\t$i" 1>&2
- done
- read answer
- local url="`get_URL ${answer}`"
- fi
- # else
- # notice "Pick a unique URL from this list: "
- # for i in ${url}; do
- # echo " $i" 1>&2
- # done
- fi
- fi
-
- # We aren't guaranteed a match even after snapshots and sources.conf have
- # been checked.
- if test x"${url}" = x; then
- return 1
- fi
-
- echo "${url}${branch:+~${branch}}${revision:+@${revision}}"
-
- return 0
-}
-
# Get the proper source directory
# $1 - The component name, which is one of the following:
#
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
robert.savoye pushed a change to branch parser
in repository toolchain/abe.
from ff4fbc2 Work with the new component data structure when checkout via git.
new feba58a don't prefix linux- to the latest version, it gets added by A [...]
new adb0825 drop using the git_config function, which is being depreciated.
new a65f21f add data fields to the array for the settings in the .conf fi [...]
new 0b9a00b collect component data for each file in infrastructure
new c250c60 Use the new component data array for everything
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
config/linux.conf | 2 +-
lib/checkout.sh | 29 +++++------
lib/common.sh | 20 ++++----
lib/component.sh | 146 ++++++++++++++++++++++++++++++++++++++++++++++++++----
lib/configure.sh | 58 ++++++++--------------
lib/depend.sh | 18 ++-----
lib/fetch.sh | 34 ++++++++-----
lib/make.sh | 139 ++++++++++++++++++++++++---------------------------
8 files changed, 269 insertions(+), 177 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.