Skip to content

Commit

Permalink
Repository path update
Browse files Browse the repository at this point in the history
- New repository is located at https://github.com/nextmn/upf
- Update depends
  • Loading branch information
louisroyer committed Jan 9, 2024
1 parent d707d58 commit 786c8fc
Show file tree
Hide file tree
Showing 6 changed files with 1,941 additions and 43 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
nextmn-upf
upf
!bash-completion/completions/nextmn-upf
!bash-completion/completions/upf
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ update:
go get -u github.com/louisroyer/go-pfcp-networking@master
go mod tidy
install:
$(INSTALL) nextmn-upf $(DESTDIR)$(bindir)/nextmn-upf
$(INSTALL) bash-completion/completions/nextmn-upf $(DESTDIR)$(BASHCOMPLETIONSDIR)/nextmn-upf
$(INSTALL) upf $(DESTDIR)$(bindir)/upf
$(INSTALL) bash-completion/completions/upf $(DESTDIR)$(BASHCOMPLETIONSDIR)/upf
@echo "================================="
@echo ">> Now run the following command:"
@echo "\tsource $(DESTDIR)$(BASHCOMPLETIONSDIR)/nextmn-upf"
@echo "\tsource $(DESTDIR)$(BASHCOMPLETIONSDIR)/upf"
@echo "================================="
uninstall:
$(RM) $(DESTDIR)$(bindir)/nextmn-upf
$(RM) $(DESTDIR)$(BASHCOMPLETIONSDIR)/nextmn-upf
$(RM) $(DESTDIR)$(bindir)/upf
$(RM) $(DESTDIR)$(BASHCOMPLETIONSDIR)/upf
File renamed without changes.
19 changes: 9 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
module github.com/louisroyer/nextmn-upf
module github.com/nextmn/upf

go 1.15

require (
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
github.com/google/gopacket v1.1.19
github.com/louisroyer/go-pfcp-networking v0.0.23
github.com/louisroyer/go-pfcp-networking v0.0.24
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/urfave/cli/v2 v2.3.0
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74 // indirect
github.com/wmnsk/go-gtp v0.8.2-0.20220222134719-cf2a2c41232a
github.com/wmnsk/go-pfcp v0.0.16-0.20220415105220-d1e74d0d7288
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
github.com/urfave/cli/v2 v2.27.1
github.com/wmnsk/go-gtp v0.8.9
github.com/wmnsk/go-pfcp v0.0.23
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
golang.org/x/net v0.20.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)
Loading

0 comments on commit 786c8fc

Please sign in to comment.