mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
- pkg/archive: deprecate, and add aliases
Keeping the tests in this commit; also moves various utilities
into a _test.go file, as they were now only used in tests.
- pkg/chrootarchive: deprecate and add aliase
deprecate pkg/archive and add aliases
keeping the tests in this commit
- Add temporary exceptions for deprecation linting errors, because
this commit is to verify everything works with the aliases.
- remove tests that depend on un-exported types
=== RUN TestDisablePigz
--- FAIL: TestDisablePigz (0.00s)
panic: interface conversion: io.Reader is *archive.readCloserWrapper, not *archive.readCloserWrapper (types from different packages) [recovered]
- pkg/archive, pkg/chrootarchive: remove test files
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Derek McGowan <derek@mcg.dev>
25 lines
812 B
Go
25 lines
812 B
Go
package chrootarchive
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/docker/docker/pkg/archive"
|
|
"github.com/moby/go-archive/chrootarchive"
|
|
)
|
|
|
|
// ApplyLayer parses a diff in the standard layer format from `layer`,
|
|
// and applies it to the directory `dest`.
|
|
//
|
|
// Deprecated: use [chrootarchive.ApplyLayer] insteead.
|
|
func ApplyLayer(dest string, layer io.Reader) (size int64, err error) {
|
|
return chrootarchive.ApplyLayer(dest, layer)
|
|
}
|
|
|
|
// ApplyUncompressedLayer parses a diff in the standard layer format from
|
|
// `layer`, and applies it to the directory `dest`.
|
|
//
|
|
// Deprecated: use [chrootarchive.ApplyUncompressedLayer] insteead.
|
|
func ApplyUncompressedLayer(dest string, layer io.Reader, options *archive.TarOptions) (int64, error) {
|
|
return chrootarchive.ApplyUncompressedLayer(dest, layer, archive.ToArchiveOpt(options))
|
|
}
|