Skip to content

Commit

Permalink
chore: transfer repository owner from MaineK00n to vulsio (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaineK00n authored Nov 17, 2021
1 parent d714736 commit 479441b
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
uses: sue445/go-mod-tidy-pr@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
git_user_name: MaineK00n
git_user_email: mainek00n.1229@gmail.com
git_user_name: kotakanbe
git_user_email: kotakanbe@gmail.com
go_version: 1.17.x
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
project_name: go-kev
release:
github:
owner: MaineK00n
owner: vulsio
name: go-kev
builds:
- goos:
- linux
goarch:
- amd64
main: .
ldflags: -s -w -X github.com/MaineK00n/go-kev/config.Version={{.Version}} -X github.com/MaineK00n/go-kev/config.Revision={{.Commit}}
ldflags: -s -w -X github.com/vulsio/go-kev/config.Version={{.Version}} -X github.com/vulsio/go-kev/config.Revision={{.Commit}}
binary: go-kev
archives:
- name_template: '{{ .Binary }}_{{.Version}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk add --no-cache \
gcc \
musl-dev

ENV REPOSITORY github.com/MaineK00n/go-kev
ENV REPOSITORY github.com/vulsio/go-kev
COPY . $GOPATH/src/$REPOSITORY
RUN cd $GOPATH/src/$REPOSITORY && make install

Expand Down
4 changes: 2 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ PKGS = $(shell go list ./...)
VERSION := $(shell git describe --tags --abbrev=0)
REVISION := $(shell git rev-parse --short HEAD)
BUILDTIME := $(shell date "+%Y%m%d_%H%M%S")
LDFLAGS := -X 'github.com/MaineK00n/go-kev/config.Version=$(VERSION)' \
-X 'github.com/MaineK00n/go-kev/config.Revision=$(REVISION)'
LDFLAGS := -X 'github.com/vulsio/go-kev/config.Version=$(VERSION)' \
-X 'github.com/vulsio/go-kev/config.Revision=$(REVISION)'
GO := GO111MODULE=on go
GO_OFF := GO111MODULE=off go

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 MaineK00n
Copyright (c) 2021 vulsio

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions commands/fetch-kevuln.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"github.com/spf13/viper"
"golang.org/x/xerrors"

"github.com/MaineK00n/go-kev/db"
"github.com/MaineK00n/go-kev/fetcher"
"github.com/MaineK00n/go-kev/models"
"github.com/MaineK00n/go-kev/utils"
"github.com/vulsio/go-kev/db"
"github.com/vulsio/go-kev/fetcher"
"github.com/vulsio/go-kev/models"
"github.com/vulsio/go-kev/utils"
)

var fetchCatalogCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/viper"

"github.com/MaineK00n/go-kev/utils"
"github.com/vulsio/go-kev/utils"
)

var cfgFile string
Expand Down
6 changes: 3 additions & 3 deletions commands/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"github.com/spf13/viper"
"golang.org/x/xerrors"

"github.com/MaineK00n/go-kev/db"
"github.com/MaineK00n/go-kev/server"
"github.com/MaineK00n/go-kev/utils"
"github.com/vulsio/go-kev/db"
"github.com/vulsio/go-kev/server"
"github.com/vulsio/go-kev/utils"
)

// serverCmd represents the server command
Expand Down
2 changes: 1 addition & 1 deletion commands/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/MaineK00n/go-kev/config"
"github.com/vulsio/go-kev/config"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"golang.org/x/xerrors"

"github.com/MaineK00n/go-kev/models"
"github.com/vulsio/go-kev/models"
)

// DB :
Expand Down
4 changes: 2 additions & 2 deletions db/rdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"gorm.io/gorm"
"gorm.io/gorm/logger"

"github.com/MaineK00n/go-kev/config"
"github.com/MaineK00n/go-kev/models"
"github.com/vulsio/go-kev/config"
"github.com/vulsio/go-kev/models"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions db/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/spf13/viper"
"golang.org/x/xerrors"

"github.com/MaineK00n/go-kev/config"
"github.com/MaineK00n/go-kev/models"
"github.com/vulsio/go-kev/config"
"github.com/vulsio/go-kev/models"
)

/**
Expand Down
4 changes: 2 additions & 2 deletions fetcher/kevuln.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/gocarina/gocsv"
"github.com/inconshreveable/log15"

"github.com/MaineK00n/go-kev/models"
"github.com/MaineK00n/go-kev/utils"
"github.com/vulsio/go-kev/models"
"github.com/vulsio/go-kev/utils"
)

var utf8Bom = []byte{239, 187, 191}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/MaineK00n/go-kev
module github.com/vulsio/go-kev

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/MaineK00n/go-kev/commands"
"github.com/vulsio/go-kev/commands"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/spf13/viper"
"golang.org/x/xerrors"

"github.com/MaineK00n/go-kev/db"
"github.com/vulsio/go-kev/db"
)

// Start :
Expand Down

0 comments on commit 479441b

Please sign in to comment.