diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 52c98ab..0000000 --- a/.bzrignore +++ /dev/null @@ -1,14 +0,0 @@ -[568].out -_* -*.cgo*.* - -yaml-*/stamp-h1 -yaml-*/Makefile -yaml-*/*/Makefile -yaml-*/libtool -yaml-*/config* -yaml-*/*/*.lo -yaml-*/*/*.la -yaml-*/*/.libs -yaml-*/*/.deps -yaml-*/tests/* diff --git a/.lbox b/.lbox deleted file mode 100644 index 90ebc09..0000000 --- a/.lbox +++ /dev/null @@ -1 +0,0 @@ -propose -cr -for=lp:goyaml diff --git a/.lbox.check b/.lbox.check deleted file mode 100755 index b4211c2..0000000 --- a/.lbox.check +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -set -e - -BADFMT=`find * -name '*.go' | xargs gofmt -l` -if [ -n "$BADFMT" ]; then - BADFMT=`echo "$BADFMT" | sed "s/^/ /"` - echo -e "gofmt is sad:\n\n$BADFMT" - exit 1 -fi - -VERSION=`go version | awk '{print $3}'` -if [ $VERSION == 'devel' ]; then - go tool vet \ - -methods \ - -printf \ - -rangeloops \ - -printfuncs 'ErrorContextf:1,notFoundf:0,badReqErrorf:0,Commitf:0,Snapshotf:0,Debugf:0' \ - . -fi