summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2023-04-04 21:29:19 +0200
committerStefan Haller <stefan@haller-berlin.de>2023-04-15 08:36:03 +0200
commit62c5c32fbb0a44713933724e5c941ee1d42c2b27 (patch)
tree5b27b55c5b11e6856760ce4db51e0f770876e271 /vendor
parent981ba4c66c3a5e108746e743a58dc90face6aba5 (diff)
Bump github.com/fsmiamoto/git-todo-parser to latest main version
Diffstat (limited to 'vendor')
-rw-r--r--vendor/github.com/fsmiamoto/git-todo-parser/LICENSE7
-rw-r--r--vendor/github.com/fsmiamoto/git-todo-parser/todo/parse.go15
-rw-r--r--vendor/github.com/fsmiamoto/git-todo-parser/todo/todo.go35
-rw-r--r--vendor/github.com/fsmiamoto/git-todo-parser/todo/write.go92
-rw-r--r--vendor/modules.txt2
5 files changed, 133 insertions, 18 deletions
diff --git a/vendor/github.com/fsmiamoto/git-todo-parser/LICENSE b/vendor/github.com/fsmiamoto/git-todo-parser/LICENSE
new file mode 100644
index 000000000..56bc157ae
--- /dev/null
+++ b/vendor/github.com/fsmiamoto/git-todo-parser/LICENSE
@@ -0,0 +1,7 @@
+Copyright © 2023 Flavio Miamoto
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/vendor/github.com/fsmiamoto/git-todo-parser/todo/parse.go b/vendor/github.com/fsmiamoto/git-todo-parser/todo/parse.go
index 8203d3151..97c60db9d 100644
--- a/vendor/github.com/fsmiamoto/git-todo-parser/todo/parse.go
+++ b/vendor/github.com/fsmiamoto/git-todo-parser/todo/parse.go
@@ -13,6 +13,7 @@ var (
ErrMissingLabel = errors.New("missing label")
ErrMissingCommit = errors.New("missing commit")
ErrMissingExecCmd = errors.New("missing command for exec")
+ ErrMissingRef = errors.New("missing ref")
)
func Parse(f io.Reader) ([]Todo, error) {
@@ -55,9 +56,9 @@ func parseLine(line string) (Todo, error) {
fields := strings.Fields(line)
- for i := TodoCommand(Pick); i < Comment; i++ {
+ for i := Pick; i < Comment; i++ {
if isCommand(i, fields[0]) {
- todo.Command = TodoCommand(i)
+ todo.Command = i
fields = fields[1:]
break
}
@@ -90,6 +91,7 @@ func parseLine(line string) (Todo, error) {
if todo.Command == Merge {
if fields[0] == "-C" || fields[0] == "-c" {
+ todo.Flag = fields[0]
fields = fields[1:]
if len(fields) == 0 {
return todo, ErrMissingCommit
@@ -115,10 +117,19 @@ func parseLine(line string) (Todo, error) {
}
// Skip flags
if fields[0] == "-C" || fields[0] == "-c" {
+ todo.Flag = fields[0]
fields = fields[1:]
}
}
+ if todo.Command == UpdateRef {
+ if len(fields) == 0 {
+ return todo, ErrMissingRef
+ }
+ todo.Ref = fields[0]
+ return todo, nil
+ }
+
if len(fields) == 0 {
return todo, ErrMissingCommit
}
diff --git a/vendor/github.com/fsmiamoto/git-todo-parser/todo/todo.go b/vendor/github.com/fsmiamoto/git-todo-parser/todo/todo.go
index ce16652db..77bb5dc71 100644
--- a/vendor/github.com/fsmiamoto/git-todo-parser/todo/todo.go
+++ b/vendor/github.com/fsmiamoto/git-todo-parser/todo/todo.go
@@ -18,6 +18,7 @@ const (
NoOp
Drop
+ UpdateRef
Comment
)
@@ -27,10 +28,12 @@ const CommentChar = "#"
type Todo struct {
Command TodoCommand
Commit string
+ Flag string
Comment string
ExecCommand string
Label string
Msg string
+ Ref string
}
func (t TodoCommand) String() string {
@@ -38,23 +41,24 @@ func (t TodoCommand) String() string {
}
var commandToString = map[TodoCommand]string{
- Pick: "pick",
- Revert: "revert",
- Edit: "edit",
- Reword: "reword",
- Fixup: "fixup",
- Squash: "squash",
- Exec: "exec",
- Break: "break",
- Label: "label",
- Reset: "reset",
- Merge: "merge",
- NoOp: "noop",
- Drop: "drop",
- Comment: "comment",
+ Pick: "pick",
+ Revert: "revert",
+ Edit: "edit",
+ Reword: "reword",
+ Fixup: "fixup",
+ Squash: "squash",
+ Exec: "exec",
+ Break: "break",
+ Label: "label",
+ Reset: "reset",
+ Merge: "merge",
+ NoOp: "noop",
+ Drop: "drop",
+ UpdateRef: "update-ref",
+ Comment: "comment",
}
-var todoCommandInfo = [14]struct {
+var todoCommandInfo = [15]struct {
nickname string
cmd string
}{
@@ -72,4 +76,5 @@ var todoCommandInfo = [14]struct {
{"m", "merge"},
{"", "noop"},
{"d", "drop"},
+ {"u", "update-ref"},
}
diff --git a/vendor/github.com/fsmiamoto/git-todo-parser/todo/write.go b/vendor/github.com/fsmiamoto/git-todo-parser/todo/write.go
new file mode 100644
index 000000000..c96b06cc0
--- /dev/null
+++ b/vendor/github.com/fsmiamoto/git-todo-parser/todo/write.go
@@ -0,0 +1,92 @@
+package todo
+
+import (
+ "io"
+ "strings"
+)
+
+func Write(f io.Writer, todos []Todo) error {
+ for _, todo := range todos {
+ if err := writeTodo(f, todo); err != nil {
+ return err
+ }
+ }
+
+ return nil
+}
+
+func writeTodo(f io.Writer, todo Todo) error {
+ var sb strings.Builder
+ if todo.Command != Comment {
+ sb.WriteString(todo.Command.String())
+ }
+
+ switch todo.Command {
+ case NoOp:
+ return nil
+
+ case Comment:
+ sb.WriteString(CommentChar)
+ sb.WriteString(todo.Comment)
+
+ case Break:
+
+ case Label:
+ fallthrough
+ case Reset:
+ sb.WriteByte(' ')
+ sb.WriteString(todo.Label)
+
+ case Exec:
+ sb.WriteByte(' ')
+ sb.WriteString(todo.ExecCommand)
+
+ case Merge:
+ sb.WriteByte(' ')
+ if todo.Commit != "" {
+ sb.WriteString(todo.Flag)
+ sb.WriteByte(' ')
+ sb.WriteString(todo.Commit)
+ sb.WriteByte(' ')
+ }
+ sb.WriteString(todo.Label)
+ if todo.Msg != "" {
+ sb.WriteString(" # ")
+ sb.WriteString(todo.Msg)
+ }
+
+ case Fixup:
+ sb.WriteByte(' ')
+ if todo.Flag != "" {
+ sb.WriteString(todo.Flag)
+ sb.WriteByte(' ')
+ }
+ sb.WriteString(todo.Commit)
+
+ case UpdateRef:
+ sb.WriteByte(' ')
+ sb.WriteString(todo.Ref)
+
+ case Pick:
+ fallthrough
+ case Revert:
+ fallthrough
+ case Edit:
+ fallthrough
+ case Reword:
+ fallthrough
+ case Squash:
+ fallthrough
+ case Drop:
+ sb.WriteByte(' ')
+ sb.WriteString(todo.Commit)
+ if todo.Msg != "" {
+ sb.WriteByte(' ')
+ sb.WriteString(todo.Msg)
+ }
+ }
+
+ sb.WriteByte('\n')
+ _, err := f.Write([]byte(sb.String()))
+ return err
+}
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 788171757..06224918c 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -30,7 +30,7 @@ github.com/emirpasic/gods/utils
# github.com/fatih/color v1.9.0
## explicit; go 1.13
github.com/fatih/color
-# github.com/fsmiamoto/git-todo-parser v0.0.2
+# github.com/fsmiamoto/git-todo-parser v0.0.4-0.20230403011024-617a5a7ce980
## explicit; go 1.13
github.com/fsmiamoto/git-todo-parser/todo
# github.com/fsnotify/fsnotify v1.4.7