Move py/ directory from eden/ to eden/fs

Summary: [edenfs] Move py/ directory from eden/ to eden/fs

Reviewed By: simpkins

Differential Revision: D20479925

fbshipit-source-id: 36abf7fe208c283f01c9bf415e2fcb1a8f4bdbae
This commit is contained in:
Ratnadeep Joshi 2020-03-24 11:36:36 -07:00 committed by Facebook GitHub Bot
parent 2678dd7c2b
commit 17fd33424d
12 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,6 @@ set_property(
add_subdirectory(eden/cli)
add_subdirectory(eden/fs)
add_subdirectory(eden/integration)
add_subdirectory(eden/py)
add_subdirectory(eden/scm/edenscm/hgext/extlib)
add_subdirectory(eden/scm/edenscm/mercurial)
add_subdirectory(eden/scm/lib)

View File

@ -42,6 +42,7 @@ add_subdirectory(store)
add_subdirectory(telemetry)
add_subdirectory(utils)
add_subdirectory(testharness)
add_subdirectory(py)
# Platform specific code

View File

@ -803,7 +803,7 @@ class fetchbuilddeps(Command):
"thrift/util/tests/__init__.py",
],
),
fbsourcepylibrary("eden", "../../eden/py/eden"),
fbsourcepylibrary("eden", "../../eden/fs/py/eden"),
]
pyassets += [
edenpythrift(name="eden-rust-deps-e0fd3d6d06542b491712b6e7fdedfae9b6e7ad15.zip")

View File

@ -704,7 +704,7 @@ class fetchbuilddeps(Command):
"thrift/util/tests/__init__.py",
],
),
fbsourcepylibrary("eden", "../../eden/py/eden"),
fbsourcepylibrary("eden", "../../eden/fs/py/eden"),
edenpythrift(
name="eden-rust-deps-e0fd3d6d06542b491712b6e7fdedfae9b6e7ad15.zip"
),

View File

@ -31,7 +31,7 @@ DEPS = ["future", "six", "toml"]
# python sources are found, and the rhs is the destination path
MODULES = [
# Eden python libraries
("eden/py/eden", "eden"),
("eden/fs/py/eden", "eden"),
# The cli
("eden/cli", "eden/cli"),
]