diff -Nru golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/debian/changelog golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/debian/changelog --- golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/debian/changelog 2016-01-13 18:27:41.000000000 +0000 +++ golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/debian/changelog 2017-01-02 02:21:36.000000000 +0000 @@ -1,3 +1,17 @@ +golang-github-shurcool-sanitized-anchor-name (0.0~git20160918.0.1dba4b3-1) unstable; urgency=medium + + [ Paul Tagliamonte ] + * Use a secure transport for the Vcs-Git and Vcs-Browser URL + + [ Anthony Fok ] + * New upstream version 0.0~git20160918.0.1dba4b3 + * Refresh debian/control: + - Replace architecture-specific hack with golang-any in Build-Depends + - Bump Standards-Version to 3.9.8 (no change) + - Remove unnecessary Built-Using in non-compiled -dev package + + -- Anthony Fok Sun, 01 Jan 2017 19:21:36 -0700 + golang-github-shurcool-sanitized-anchor-name (0.0~git20151028.0.10ef21a-2) unstable; urgency=medium * (Build-)Depends on gccgo where golang-go is not available diff -Nru golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/debian/control golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/debian/control --- golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/debian/control 2016-01-13 18:27:20.000000000 +0000 +++ golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/debian/control 2017-01-02 02:16:09.000000000 +0000 @@ -2,22 +2,20 @@ Section: devel Priority: extra Maintainer: Debian Go Packaging Team -Uploaders: Anthony Fok +Uploaders: Anthony Fok , Tim Potter Build-Depends: debhelper (>= 9), - dh-golang, - golang-go [amd64 arm64 armel armhf i386 ppc64 ppc64el], - gccgo [!amd64 !arm64 !armel !armhf !i386 !ppc64 !ppc64el] -Standards-Version: 3.9.6 + dh-golang (>= 1.17~), + golang-any +Standards-Version: 3.9.8 Homepage: https://github.com/shurcooL/sanitized_anchor_name Vcs-Browser: https://anonscm.debian.org/cgit/pkg-go/packages/golang-github-shurcool-sanitized-anchor-name.git -Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-shurcool-sanitized-anchor-name.git +Vcs-Git: https://anonscm.debian.org/git/pkg-go/packages/golang-github-shurcool-sanitized-anchor-name.git XS-Go-Import-Path: github.com/shurcooL/sanitized_anchor_name Package: golang-github-shurcool-sanitized-anchor-name-dev Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} -Built-Using: ${misc:Built-Using} Description: Go package for creating sanitized anchor names sanitized_anchor_name provides a Go function to create sanitized anchor names. . diff -Nru golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/main_test.go golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/main_test.go --- golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/main_test.go 2015-12-17 11:04:50.000000000 +0000 +++ golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/main_test.go 2017-01-02 02:14:55.000000000 +0000 @@ -15,7 +15,7 @@ // this-is-a-header } -func ExampleCreate2() { +func ExampleCreate_two() { fmt.Println(sanitized_anchor_name.Create("This is a header")) fmt.Println(sanitized_anchor_name.Create("This is also a header")) fmt.Println(sanitized_anchor_name.Create("main.go")) diff -Nru golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/README.md golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/README.md --- golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/README.md 2015-12-17 11:04:50.000000000 +0000 +++ golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/README.md 2017-01-02 02:14:55.000000000 +0000 @@ -1,4 +1,7 @@ -# sanitized_anchor_name [![Build Status](https://travis-ci.org/shurcooL/sanitized_anchor_name.svg?branch=master)](https://travis-ci.org/shurcooL/sanitized_anchor_name) [![GoDoc](https://godoc.org/github.com/shurcooL/sanitized_anchor_name?status.svg)](https://godoc.org/github.com/shurcooL/sanitized_anchor_name) +sanitized_anchor_name +===================== + +[![Build Status](https://travis-ci.org/shurcooL/sanitized_anchor_name.svg?branch=master)](https://travis-ci.org/shurcooL/sanitized_anchor_name) [![GoDoc](https://godoc.org/github.com/shurcooL/sanitized_anchor_name?status.svg)](https://godoc.org/github.com/shurcooL/sanitized_anchor_name) Package sanitized_anchor_name provides a func to create sanitized anchor names. @@ -28,4 +31,4 @@ License ------- -- [MIT License](LICENSE) +- [MIT License](LICENSE) diff -Nru golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/.travis.yml golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/.travis.yml --- golang-github-shurcool-sanitized-anchor-name-0.0~git20151028.0.10ef21a/.travis.yml 2015-12-17 11:04:50.000000000 +0000 +++ golang-github-shurcool-sanitized-anchor-name-0.0~git20160918.0.1dba4b3/.travis.yml 2017-01-02 02:14:55.000000000 +0000 @@ -1,8 +1,14 @@ +sudo: false language: go go: - - 1.5 + - 1.7 + - tip +matrix: + allow_failures: + - go: tip + fast_finish: true install: - - go get golang.org/x/tools/cmd/vet + - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step). script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d -s .)