Permalink
...
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Open a pull request
- 4 commits
- 5 files changed
- 0 commit comments
- 1 contributor
Unified
Split
Showing
with
13 additions
and 0 deletions.
- +3 −0 debian/changelog
- +1 −0 debian/control
- +3 −0 support/go/detect
- +6 −0 support/go/generate
- 0 test/go_test.sh
View
3
debian/changelog
| @@ -6,6 +6,9 @@ autodep8 (0.5.2) UNRELEASED; urgency=medium | ||
| [ Barry Warsaw ] | ||
| * Python: Added support for PyPy | ||
| + [ Michael Hudson-Doyle ] | ||
| + * Add support for Go. | ||
| + | ||
| -- Ondřej Nový <novy@ondrej.org> Thu, 19 May 2016 17:25:59 +0200 | ||
| autodep8 (0.5.1) unstable; urgency=medium | ||
View
1
debian/control
| @@ -24,3 +24,4 @@ Description: DEP-8 test control file generator | ||
| - NodeJS packages | ||
| - Kernel module packages using DKMS | ||
| - R packages | ||
| + - Go packages | ||
View
3
support/go/detect
| @@ -0,0 +1,3 @@ | ||
| +#!/bin/sh | ||
| + | ||
| +grep-dctrl --quiet -F Build-Depends -r dh-golang debian/control |
View
6
support/go/generate
| @@ -0,0 +1,6 @@ | ||
| +#!/bin/sh | ||
| + | ||
| +cat <<EOF | ||
| +Test-Command: GOPATH=/usr/share/gocode go test -v -short $(perl -MDebian::Debhelper::Dh_Buildsystems -e 'buildsystems_init(); my $bs = load_buildsystem("golang"); print(join " ", $bs->get_targets(), "\n");') | ||
| +Depends: @ | ||
| +EOF |
View
0
test/go_test.sh
No changes.