Kaynağa Gözat

vendor: github.com/Zillode/notify is now github.com/syncthing/notify (#4813)

Given that we've taken on the resposibility of maintaining this forked
package I've added it to the Syncthing organization. We still vendor it
like an external package, because it's convenient to keep it as a fork
of upstream to easier merge and file pull requests towards them.
Jakob Borg 7 yıl önce
ebeveyn
işleme
bea3c01772
40 değiştirilmiş dosya ile 15 ekleme ve 15 silme
  1. 1 1
      lib/fs/basicfs_watch.go
  2. 1 1
      lib/fs/basicfs_watch_eventtypes_fen.go
  3. 1 1
      lib/fs/basicfs_watch_eventtypes_inotify.go
  4. 1 1
      lib/fs/basicfs_watch_eventtypes_kqueue.go
  5. 1 1
      lib/fs/basicfs_watch_eventtypes_other.go
  6. 1 1
      lib/fs/basicfs_watch_eventtypes_readdcw.go
  7. 1 1
      lib/fs/basicfs_watch_test.go
  8. 0 0
      vendor/github.com/syncthing/notify/LICENSE
  9. 0 0
      vendor/github.com/syncthing/notify/debug.go
  10. 0 0
      vendor/github.com/syncthing/notify/debug_debug.go
  11. 0 0
      vendor/github.com/syncthing/notify/debug_nodebug.go
  12. 0 0
      vendor/github.com/syncthing/notify/doc.go
  13. 0 0
      vendor/github.com/syncthing/notify/event.go
  14. 0 0
      vendor/github.com/syncthing/notify/event_fen.go
  15. 0 0
      vendor/github.com/syncthing/notify/event_fsevents.go
  16. 0 0
      vendor/github.com/syncthing/notify/event_inotify.go
  17. 0 0
      vendor/github.com/syncthing/notify/event_kqueue.go
  18. 0 0
      vendor/github.com/syncthing/notify/event_readdcw.go
  19. 0 0
      vendor/github.com/syncthing/notify/event_stub.go
  20. 0 0
      vendor/github.com/syncthing/notify/event_trigger.go
  21. 0 0
      vendor/github.com/syncthing/notify/node.go
  22. 0 0
      vendor/github.com/syncthing/notify/notify.go
  23. 0 0
      vendor/github.com/syncthing/notify/tree.go
  24. 0 0
      vendor/github.com/syncthing/notify/tree_nonrecursive.go
  25. 0 0
      vendor/github.com/syncthing/notify/tree_recursive.go
  26. 0 0
      vendor/github.com/syncthing/notify/util.go
  27. 0 0
      vendor/github.com/syncthing/notify/watcher.go
  28. 0 0
      vendor/github.com/syncthing/notify/watcher_fen.go
  29. 0 0
      vendor/github.com/syncthing/notify/watcher_fen_cgo.go
  30. 0 0
      vendor/github.com/syncthing/notify/watcher_fsevents.go
  31. 0 0
      vendor/github.com/syncthing/notify/watcher_fsevents_cgo.go
  32. 0 0
      vendor/github.com/syncthing/notify/watcher_inotify.go
  33. 0 0
      vendor/github.com/syncthing/notify/watcher_kqueue.go
  34. 0 0
      vendor/github.com/syncthing/notify/watcher_readdcw.go
  35. 0 0
      vendor/github.com/syncthing/notify/watcher_stub.go
  36. 0 0
      vendor/github.com/syncthing/notify/watcher_trigger.go
  37. 0 0
      vendor/github.com/syncthing/notify/watchpoint.go
  38. 0 0
      vendor/github.com/syncthing/notify/watchpoint_other.go
  39. 0 0
      vendor/github.com/syncthing/notify/watchpoint_readdcw.go
  40. 8 8
      vendor/manifest

+ 1 - 1
lib/fs/basicfs_watch.go

@@ -13,7 +13,7 @@ import (
 	"errors"
 	"path/filepath"
 
-	"github.com/Zillode/notify"
+	"github.com/syncthing/notify"
 )
 
 // Notify does not block on sending to channel, so the channel must be buffered.

+ 1 - 1
lib/fs/basicfs_watch_eventtypes_fen.go

@@ -8,7 +8,7 @@
 
 package fs
 
-import "github.com/Zillode/notify"
+import "github.com/syncthing/notify"
 
 const (
 	subEventMask  = notify.Create | notify.FileModified | notify.FileRenameFrom | notify.FileDelete | notify.FileRenameTo

+ 1 - 1
lib/fs/basicfs_watch_eventtypes_inotify.go

@@ -8,7 +8,7 @@
 
 package fs
 
-import "github.com/Zillode/notify"
+import "github.com/syncthing/notify"
 
 const (
 	subEventMask  = notify.InCreate | notify.InMovedTo | notify.InDelete | notify.InDeleteSelf | notify.InModify | notify.InMovedFrom | notify.InMoveSelf

+ 1 - 1
lib/fs/basicfs_watch_eventtypes_kqueue.go

@@ -8,7 +8,7 @@
 
 package fs
 
-import "github.com/Zillode/notify"
+import "github.com/syncthing/notify"
 
 const (
 	subEventMask  = notify.NoteDelete | notify.NoteWrite | notify.NoteRename

+ 1 - 1
lib/fs/basicfs_watch_eventtypes_other.go

@@ -12,7 +12,7 @@
 
 package fs
 
-import "github.com/Zillode/notify"
+import "github.com/syncthing/notify"
 
 const (
 	subEventMask  = notify.All

+ 1 - 1
lib/fs/basicfs_watch_eventtypes_readdcw.go

@@ -8,7 +8,7 @@
 
 package fs
 
-import "github.com/Zillode/notify"
+import "github.com/syncthing/notify"
 
 const (
 	subEventMask  = notify.FileNotifyChangeFileName | notify.FileNotifyChangeDirName | notify.FileNotifyChangeSize | notify.FileNotifyChangeCreation

+ 1 - 1
lib/fs/basicfs_watch_test.go

@@ -18,7 +18,7 @@ import (
 	"testing"
 	"time"
 
-	"github.com/Zillode/notify"
+	"github.com/syncthing/notify"
 )
 
 func TestMain(m *testing.M) {

+ 0 - 0
vendor/github.com/Zillode/notify/LICENSE → vendor/github.com/syncthing/notify/LICENSE


+ 0 - 0
vendor/github.com/Zillode/notify/debug.go → vendor/github.com/syncthing/notify/debug.go


+ 0 - 0
vendor/github.com/Zillode/notify/debug_debug.go → vendor/github.com/syncthing/notify/debug_debug.go


+ 0 - 0
vendor/github.com/Zillode/notify/debug_nodebug.go → vendor/github.com/syncthing/notify/debug_nodebug.go


+ 0 - 0
vendor/github.com/Zillode/notify/doc.go → vendor/github.com/syncthing/notify/doc.go


+ 0 - 0
vendor/github.com/Zillode/notify/event.go → vendor/github.com/syncthing/notify/event.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_fen.go → vendor/github.com/syncthing/notify/event_fen.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_fsevents.go → vendor/github.com/syncthing/notify/event_fsevents.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_inotify.go → vendor/github.com/syncthing/notify/event_inotify.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_kqueue.go → vendor/github.com/syncthing/notify/event_kqueue.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_readdcw.go → vendor/github.com/syncthing/notify/event_readdcw.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_stub.go → vendor/github.com/syncthing/notify/event_stub.go


+ 0 - 0
vendor/github.com/Zillode/notify/event_trigger.go → vendor/github.com/syncthing/notify/event_trigger.go


+ 0 - 0
vendor/github.com/Zillode/notify/node.go → vendor/github.com/syncthing/notify/node.go


+ 0 - 0
vendor/github.com/Zillode/notify/notify.go → vendor/github.com/syncthing/notify/notify.go


+ 0 - 0
vendor/github.com/Zillode/notify/tree.go → vendor/github.com/syncthing/notify/tree.go


+ 0 - 0
vendor/github.com/Zillode/notify/tree_nonrecursive.go → vendor/github.com/syncthing/notify/tree_nonrecursive.go


+ 0 - 0
vendor/github.com/Zillode/notify/tree_recursive.go → vendor/github.com/syncthing/notify/tree_recursive.go


+ 0 - 0
vendor/github.com/Zillode/notify/util.go → vendor/github.com/syncthing/notify/util.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher.go → vendor/github.com/syncthing/notify/watcher.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_fen.go → vendor/github.com/syncthing/notify/watcher_fen.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_fen_cgo.go → vendor/github.com/syncthing/notify/watcher_fen_cgo.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_fsevents.go → vendor/github.com/syncthing/notify/watcher_fsevents.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_fsevents_cgo.go → vendor/github.com/syncthing/notify/watcher_fsevents_cgo.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_inotify.go → vendor/github.com/syncthing/notify/watcher_inotify.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_kqueue.go → vendor/github.com/syncthing/notify/watcher_kqueue.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_readdcw.go → vendor/github.com/syncthing/notify/watcher_readdcw.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_stub.go → vendor/github.com/syncthing/notify/watcher_stub.go


+ 0 - 0
vendor/github.com/Zillode/notify/watcher_trigger.go → vendor/github.com/syncthing/notify/watcher_trigger.go


+ 0 - 0
vendor/github.com/Zillode/notify/watchpoint.go → vendor/github.com/syncthing/notify/watchpoint.go


+ 0 - 0
vendor/github.com/Zillode/notify/watchpoint_other.go → vendor/github.com/syncthing/notify/watchpoint_other.go


+ 0 - 0
vendor/github.com/Zillode/notify/watchpoint_readdcw.go → vendor/github.com/syncthing/notify/watchpoint_readdcw.go


+ 8 - 8
vendor/manifest

@@ -41,14 +41,6 @@
 			"branch": "master",
 			"notests": true
 		},
-		{
-			"importpath": "github.com/Zillode/notify",
-			"repository": "https://github.com/calmh/notify",
-			"vcs": "git",
-			"revision": "53dd6873a851fc377c87d82f994b1fecdf25aadb",
-			"branch": "nopanic",
-			"notests": true
-		},
 		{
 			"importpath": "github.com/a8m/mark",
 			"repository": "https://github.com/a8m/mark",
@@ -455,6 +447,14 @@
 			"branch": "master",
 			"notests": true
 		},
+		{
+			"importpath": "github.com/syncthing/notify",
+			"repository": "https://github.com/syncthing/notify",
+			"vcs": "git",
+			"revision": "e6390324ae88de3571a6b29ed1a20aa631b533d9",
+			"branch": "master",
+			"notests": true
+		},
 		{
 			"importpath": "github.com/syndtr/goleveldb/leveldb",
 			"repository": "https://github.com/syndtr/goleveldb",