~ubuntu-branches/debian/sid/gcc-4.8/sid

« back to all changes in this revision

Viewing changes to .svn/pristine/71/71cf56e14b4e6982b2a0a2bc1b4a0835d4494d95.svn-base

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-12-19 19:48:34 UTC
  • Revision ID: package-import@ubuntu.com-20141219194834-4dz1q7rrn5pad823
Tags: 4.8.4-1
* GCC 4.8.4 release.
  - Fix PR target/61407 (darwin), PR middle-end/58624 (ice),
    PR sanitizer/64265 (wrong code).
* Require recent binutils to pass go test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# DP: updated class files from the 4.8 branch upto yyyymmdd.
 
2
 
 
3
dir=gcc-4_8-branch
 
4
dir=/scratch/packages/gcc/svn/gcc-4_8-branch
 
5
tag=gcc_4_8_0_release
 
6
branch=gcc-4_8-branch
 
7
 
 
8
tmplist=files$$
 
9
 
 
10
svn diff --summarize \
 
11
        svn://gcc.gnu.org/svn/gcc/tags/$tag \
 
12
        svn://gcc.gnu.org/svn/gcc/branches/$branch \
 
13
    | grep '\.class$' > $tmplist
 
14
 
 
15
sed -n '/^[AM].*\.class$/s,.*/'$tag'/\(.*\),\1,p' $tmplist \
 
16
    > neworchanged.list
 
17
sed -n '/^[D].*\.class$/s,.*/'$tag'/\(.*\),\1,p' $tmplist \
 
18
    > removed.list
 
19
sed -n '/^[^ADM].*\.class$/s,.*/'$tag'/\(.*\),\1,p' $tmplist \
 
20
    > unknown.list
 
21
 
 
22
echo "new or changed: $(wc -l neworchanged.list | cut '-d ' -f1), removed $(wc -l removed.list | cut '-d ' -f1): , unknown: $(wc -l unknown.list | cut '-d ' -f1)"
 
23
tar -c -J -f java-class-files.tar.xz -C $dir -T neworchanged.list
 
24
uuencode java-class-files.tar.xz java-class-files.tar.xz > java-class-files.tar.xz.uue
 
25
 
 
26
rm -f $tmplist neworchanged.list removed.list unknown.list
 
27