shithub: hugo

Download patch

ref: 9ddf52021ba568c6262aa94210c6655a801c833b
parent: 5e9b147c2ab5536568ab1254a596479c1ac92b05
author: Anthony Fok <[email protected]>
date: Wed Apr 20 18:28:26 EDT 2016

Update import path of fsnotify

Rename "gopkg.in/fsnotify.v1" to "github.com/fsnotify/fsnotify"
per upstream recommendation.

See https://github.com/fsnotify/fsnotify/issues/108 for rationale.

--- a/Dockerfile
+++ b/Dockerfile
@@ -34,7 +34,7 @@
 	&& go get golang.org/x/text/unicode/norm \
 	&& go get github.com/yosssi/ace \
 	&& go get github.com/spf13/nitro \
-	&& go get gopkg.in/fsnotify.v1
+	&& go get github.com/fsnotify/fsnotify
 
 COPY . /go/src/github.com/spf13/hugo
 RUN go get -d -v github.com/spf13/hugo
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -33,6 +33,7 @@
 
 	"regexp"
 
+	"github.com/fsnotify/fsnotify"
 	"github.com/spf13/afero"
 	"github.com/spf13/cobra"
 	"github.com/spf13/fsync"
@@ -44,7 +45,6 @@
 	jww "github.com/spf13/jwalterweatherman"
 	"github.com/spf13/nitro"
 	"github.com/spf13/viper"
-	"gopkg.in/fsnotify.v1"
 )
 
 // MainSite represents the Hugo site to build. This variable is exported as it
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -32,6 +32,7 @@
 	"path"
 
 	"github.com/bep/inflect"
+	"github.com/fsnotify/fsnotify"
 	"github.com/spf13/afero"
 	"github.com/spf13/cast"
 	bp "github.com/spf13/hugo/bufferpool"
@@ -45,7 +46,6 @@
 	jww "github.com/spf13/jwalterweatherman"
 	"github.com/spf13/nitro"
 	"github.com/spf13/viper"
-	"gopkg.in/fsnotify.v1"
 )
 
 var _ = transform.AbsURL
--- a/watcher/batcher.go
+++ b/watcher/batcher.go
@@ -16,7 +16,7 @@
 import (
 	"time"
 
-	"gopkg.in/fsnotify.v1"
+	"github.com/fsnotify/fsnotify"
 )
 
 type Batcher struct {