diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-03-05 16:49:24 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-03-05 17:25:16 +0300 |
commit | 22e35bf80cea95dc1edce22e729199f61a6fedcd (patch) | |
tree | e8b00be480a8a1b57641f23e1f7d09fb0a8bad1a /tests/pkg-drop.test | |
parent | cdbc374bc16ed0db1a4a206064bb090ac935d89d (diff) |
Add .manifest extension to repositories, packages and signature files
Diffstat (limited to 'tests/pkg-drop.test')
-rw-r--r-- | tests/pkg-drop.test | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/pkg-drop.test b/tests/pkg-drop.test index 9e63470..0bc52b2 100644 --- a/tests/pkg-drop.test +++ b/tests/pkg-drop.test @@ -9,28 +9,28 @@ # pkg-drop # |-- t4a # | |-- libfoo-1.1.0.tar.gz -# | `-- repositories +# | `-- repositories.manifest # |-- t4b -> t4a (prerequisite) # | |-- libbar-1.1.0.tar.gz -> libfoo == 1.1.0 -# | `-- repositories +# | `-- repositories.manifest # |-- t4c -> t4b (prerequisite) # | |-- libbaz-1.1.0.tar.gz -> libfoo, libbar # | |-- libfoo-1.0.0.tar.gz -# | `-- repositories +# | `-- repositories.manifest # `-- t4d -> t4c (complement) # |-- libbiz-1.0.0.tar.gz -> libfox, libfoo, libbaz # |-- libfox-1.0.0.tar.gz -# `-- repositories +# `-- repositories.manifest # Prepare repositories used by tests if running in the local mode. # +if ($remote != true) rep_create += 2>! - cp -r $src/t4a $out/t4a && $rep_create $out/t4a &$out/t4a/packages - cp -r $src/t4b $out/t4b && $rep_create $out/t4b &$out/t4b/packages - cp -r $src/t4c $out/t4c && $rep_create $out/t4c &$out/t4c/packages - cp -r $src/t4d $out/t4d && $rep_create $out/t4d &$out/t4d/packages + cp -r $src/t4a $out/t4a && $rep_create $out/t4a &$out/t4a/packages.manifest + cp -r $src/t4b $out/t4b && $rep_create $out/t4b &$out/t4b/packages.manifest + cp -r $src/t4c $out/t4c && $rep_create $out/t4c &$out/t4c/packages.manifest + cp -r $src/t4d $out/t4d && $rep_create $out/t4d &$out/t4d/packages.manifest end pkg_build += -d cfg --yes 2>! |