[CRIU] [PATCH] build: pycriu -- Move into lib/py
Tycho Andersen
tycho.andersen at canonical.com
Thu Feb 18 07:24:01 PST 2016
On Thu, Feb 18, 2016 at 05:58:14PM +0300, Cyrill Gorcunov wrote:
> As was intended from the scratch.
Oh whoops, sorry, I didn't know you could remap these things with
setuptools. Thanks!
Acked-by: Tycho Andersen <tycho.andersen at canonical.com>
> Signed-off-by: Cyrill Gorcunov <gorcunov at openvz.org>
> ---
> lib/Makefile | 4 ++--
> lib/{pycriu => py}/.gitignore | 0
> lib/{pycriu => py}/Makefile | 0
> lib/{pycriu => py}/__init__.py | 0
> lib/{pycriu => py}/criu.py | 0
> lib/{pycriu => py}/images/.gitignore | 0
> lib/{pycriu => py}/images/Makefile | 0
> lib/{pycriu => py}/images/__init__.py | 0
> lib/{pycriu => py}/images/images.py | 0
> lib/{pycriu => py}/images/pb2dict.py | 0
> scripts/crit-setup.py | 1 +
> 11 files changed, 3 insertions(+), 2 deletions(-)
> rename lib/{pycriu => py}/.gitignore (100%)
> rename lib/{pycriu => py}/Makefile (100%)
> rename lib/{pycriu => py}/__init__.py (100%)
> rename lib/{pycriu => py}/criu.py (100%)
> rename lib/{pycriu => py}/images/.gitignore (100%)
> rename lib/{pycriu => py}/images/Makefile (100%)
> rename lib/{pycriu => py}/images/__init__.py (100%)
> rename lib/{pycriu => py}/images/images.py (100%)
> rename lib/{pycriu => py}/images/pb2dict.py (100%)
>
> diff --git a/lib/Makefile b/lib/Makefile
> index df2907eded31..1c7847feabe5 100644
> --- a/lib/Makefile
> +++ b/lib/Makefile
> @@ -22,7 +22,7 @@ PHONY += lib-c
> # Python bindings.
> lib-py:
> $(call msg-gen, $@)
> - $(Q) $(MAKE) -C pycriu/images all
> + $(Q) $(MAKE) -C py/images all
> PHONY += lib-py
>
> clean:
> @@ -31,7 +31,7 @@ clean:
> $(Q) $(RM) c/$(CRIU_SO)
> $(Q) $(RM) c/criu.pc
> $(call msg-clean, lib-py)
> - $(Q) $(MAKE) -C pycriu/images $@
> + $(Q) $(MAKE) -C py/images $@
>
> all: $(PHONY)
> @true
> diff --git a/lib/pycriu/.gitignore b/lib/py/.gitignore
> similarity index 100%
> rename from lib/pycriu/.gitignore
> rename to lib/py/.gitignore
> diff --git a/lib/pycriu/Makefile b/lib/py/Makefile
> similarity index 100%
> rename from lib/pycriu/Makefile
> rename to lib/py/Makefile
> diff --git a/lib/pycriu/__init__.py b/lib/py/__init__.py
> similarity index 100%
> rename from lib/pycriu/__init__.py
> rename to lib/py/__init__.py
> diff --git a/lib/pycriu/criu.py b/lib/py/criu.py
> similarity index 100%
> rename from lib/pycriu/criu.py
> rename to lib/py/criu.py
> diff --git a/lib/pycriu/images/.gitignore b/lib/py/images/.gitignore
> similarity index 100%
> rename from lib/pycriu/images/.gitignore
> rename to lib/py/images/.gitignore
> diff --git a/lib/pycriu/images/Makefile b/lib/py/images/Makefile
> similarity index 100%
> rename from lib/pycriu/images/Makefile
> rename to lib/py/images/Makefile
> diff --git a/lib/pycriu/images/__init__.py b/lib/py/images/__init__.py
> similarity index 100%
> rename from lib/pycriu/images/__init__.py
> rename to lib/py/images/__init__.py
> diff --git a/lib/pycriu/images/images.py b/lib/py/images/images.py
> similarity index 100%
> rename from lib/pycriu/images/images.py
> rename to lib/py/images/images.py
> diff --git a/lib/pycriu/images/pb2dict.py b/lib/py/images/pb2dict.py
> similarity index 100%
> rename from lib/pycriu/images/pb2dict.py
> rename to lib/py/images/pb2dict.py
> diff --git a/scripts/crit-setup.py b/scripts/crit-setup.py
> index 38a71c33aa13..74368da2811c 100644
> --- a/scripts/crit-setup.py
> +++ b/scripts/crit-setup.py
> @@ -6,6 +6,7 @@ setup(name = "crit",
> author = "CRIU team",
> author_email = "criu at openvz.org",
> url = "https://github.com/xemul/criu",
> + package_dir = {'pycriu': 'py'},
> packages = ["pycriu", "pycriu.images"],
> scripts = ["../crit/crit"]
> )
> --
> 2.5.0
>
> _______________________________________________
> CRIU mailing list
> CRIU at openvz.org
> https://lists.openvz.org/mailman/listinfo/criu
More information about the CRIU
mailing list