1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/pkg
Christopher Jones 069fdc8a08
[project] change syscall to /x/sys/unix|windows
Changes most references of syscall to golang.org/x/sys/
Ones aren't changes include, Errno, Signal and SysProcAttr
as they haven't been implemented in /x/sys/.

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>

[s390x] switch utsname from unsigned to signed

per 33267e036f
char in s390x in the /x/sys/unix package is now signed, so
change the buildtags

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
2017-07-11 08:00:32 -04:00
..
aaparser
archive [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
authorization
broadcaster
chrootarchive [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
devicemapper [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
directory
discovery
filenotify
fileutils
fsutils [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
homedir
idtools
ioutils
jsonlog
jsonmessage
listeners
locker
longpath
loopback [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
mount [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
namesgenerator
parsers [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
pidfile [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
platform [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
plugingetter
plugins
pools
progress
promise
pubsub
reexec [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
registrar
signal [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
stdcopy
streamformatter
stringid
stringutils
symlink [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
sysinfo [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
system [project] change syscall to /x/sys/unix|windows 2017-07-11 08:00:32 -04:00
tailfile
tarsum
templates
term
testutil
tlsconfig
truncindex
urlutil
useragent
README.md

pkg/ is a collection of utility packages used by the Docker project without being specific to its internals.

Utility packages are kept separate from the docker core codebase to keep it as small and concise as possible. If some utilities grow larger and their APIs stabilize, they may be moved to their own repository under the Docker organization, to facilitate re-use by other projects. However that is not the priority.

The directory pkg is named after the same directory in the camlistore project. Since Brad is a core Go maintainer, we thought it made sense to copy his methods for organizing Go code :) Thanks Brad!

Because utility packages are small and neatly separated from the rest of the codebase, they are a good place to start for aspiring maintainers and contributors. Get in touch if you want to help maintain them!