2011-12-03 01:16:12 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Copyright 2011 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
# The godeps.sh script outputs a dependency file for a package. The
|
|
|
|
# dependency file is then included in the libgo Makefile. This is
|
|
|
|
# automatic dependency generation, Go style.
|
|
|
|
|
|
|
|
# The first parameter is the name of the file being generated. The
|
|
|
|
# remaining parameters are the names of Go files which are scanned for
|
|
|
|
# imports.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if test $# = 0; then
|
|
|
|
echo 1>&2 "Usage: godeps.sh OUTPUT INPUTS..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
output=$1
|
|
|
|
shift
|
|
|
|
|
2016-08-06 02:36:33 +02:00
|
|
|
files=$*
|
|
|
|
deps=`for f in $files; do cat $f; done |
|
2011-12-03 01:16:12 +01:00
|
|
|
sed -n -e '/^import.*"/p; /^import[ ]*(/,/^)/p' |
|
2018-01-09 02:23:08 +01:00
|
|
|
sed -e 's/^import //' -e 's/^[^"]*"/"/' |
|
2017-09-14 19:11:35 +02:00
|
|
|
grep '^[ ]*"' |
|
2011-12-03 01:16:12 +01:00
|
|
|
grep -v '"unsafe"' |
|
2018-01-09 02:23:08 +01:00
|
|
|
grep -v '%' |
|
2011-12-03 01:16:12 +01:00
|
|
|
sed -e 's/^.*"\([^"]*\)".*$/\1/' -e 's/$/.gox/' |
|
|
|
|
sort -u`
|
|
|
|
|
2016-08-06 02:36:33 +02:00
|
|
|
echo $output: $files $deps
|