metaleap / go-xsd

[stable since 2013] a lib for loading XML Schema Definition (XSD) files ➜ plus, a tool `makepkg` to code-generate from any *.xsd your Go package with all needed `struct`s to readily `xml.Unmarshal()` documents into, based on the XSD's schema definitions. NOT REALLY MAINTAINED FOR YEARS NOW: try the forks if running into issues.
http://www.reddit.com/r/golang/comments/12g6sl/is_there_a_tool_that_generates_go_source_code_for/
MIT License
216 stars 66 forks source link

go get issue: cannot get go-forks/fsnotify #25

Closed ssa21 closed 7 years ago

ssa21 commented 7 years ago

Hi,

I am new to Go, and I was trying to clone the repo with following command

env GIT_TERMINAL_PROMPT=1 go get -u github.com/metaleap/go-xsd/xsd-makepkg

I am getting the following error:

Cloning into '$GOPATH/src/github.com/go-forks/fsnotify'...

remote: Repository not found. fatal: repository 'https://github.com/go-forks/fsnotify/' not found package github.com/go-forks/fsnotify: exit status 128

Not sure how to resolve this issue. Would appreciate any pointers..

Thanks...

metaleap commented 7 years ago

I should really find a maintainer for these old Go packages 🤣 well now that I moved numerous repos I better fix the import paths.. I'm on it

metaleap commented 7 years ago

Just updated outdated import paths in all these "legacy" packages.. most probably still won't even compile without numerous tweaks nowadays as the years have passed, but keeping them on for instructional/reference/nostalgic reasons of course. You're probably best-advised to look into the various forks of this particular package (then create your own in case those too go offline in the future)..

ssa21 commented 7 years ago

Thanks..