~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to tools/update-all-ABI-sha1sums.sh

  • Committer: Package Import Robot
  • Author(s): CI Train Bot
  • Date: 2015-05-12 13:12:55 UTC
  • mto: This revision was merged to the branch mainline in revision 96.
  • Revision ID: package-import@ubuntu.com-20150512131255-y7z12i8n4pbvo70x
Tags: upstream-0.13.0+15.10.20150512
ImportĀ upstreamĀ versionĀ 0.13.0+15.10.20150512

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
find include/client include/common/mir_toolkit \
4
 
    -type f | egrep -v "~$|#$" | sort | xargs sha1sum > client-ABI-sha1sums
5
 
 
6
 
# Server headers include both platform and common headers. TODO: Script to
7
 
# identify which headers, so we can know which mircommon/mirplatform header
8
 
# changes are also breaking the server ABI.
9
 
find include/server include/platform include/common \
10
 
    -name \*.h -and -not -name version.h | sort | xargs sha1sum > server-ABI-sha1sums
11
 
 
12
 
# Platform headers include mircommon headers. TODO: Script to identify which
13
 
# headers so we can know which mircommon header changes should also result in a
14
 
# bump to MIRPLATFORM_ABI.
15
 
find include/platform include/common \
16
 
    -type f | egrep -v "~$|#$" | sort | xargs sha1sum > platform-ABI-sha1sums
17
 
 
18
 
find include/common \
19
 
    -type f | egrep -v "~$|#$" | sort | xargs sha1sum > common-ABI-sha1sums