Jelajahi Sumber

Remove Launchpad-specific files.

Gustavo Niemeyer 12 tahun lalu
induk
melakukan
ba29208cca
3 mengubah file dengan 0 tambahan dan 35 penghapusan
  1. 0 14
      .bzrignore
  2. 0 1
      .lbox
  3. 0 20
      .lbox.check

+ 0 - 14
.bzrignore

@@ -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/*

+ 0 - 1
.lbox

@@ -1 +0,0 @@
-propose -cr -for=lp:goyaml

+ 0 - 20
.lbox.check

@@ -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