diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-10-14 20:37:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-10-14 20:37:53 +0300 |
commit | 6163f829355b6ceae21060eb7a33f3107477d899 (patch) | |
tree | 061108c7fa03325b2d2a3d3649f539f52b26490b | |
parent | 8c3da8abdb16ecad007dc60068deb90e151737ea (diff) |
Adapt to renaming bpkg-rep project/package to bpkg-util
-rw-r--r-- | brep/handler/buildfile | 2 | ||||
-rw-r--r-- | brep/handler/handler.bash.in | 10 | ||||
-rw-r--r-- | manifest | 2 | ||||
-rw-r--r-- | repositories.manifest | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/brep/handler/buildfile b/brep/handler/buildfile index 00c072e..b76b465 100644 --- a/brep/handler/buildfile +++ b/brep/handler/buildfile @@ -3,7 +3,7 @@ import mods = libbutl.bash%bash{manifest-parser} import mods += libbutl.bash%bash{manifest-serializer} -import mods += bpkg-rep%bash{package-archive} +import mods += bpkg-util%bash{package-archive} ./: bash{handler} submit/ ci/ diff --git a/brep/handler/handler.bash.in b/brep/handler/handler.bash.in index 0aa3f69..e073711 100644 --- a/brep/handler/handler.bash.in +++ b/brep/handler/handler.bash.in @@ -12,8 +12,8 @@ fi @import libbutl/manifest-parser@ @import libbutl/manifest-serializer@ -bpkg_rep_bpkg=bpkg -@import bpkg-rep/package-archive@ +bpkg_util_bpkg=bpkg +@import bpkg-util/package-archive@ # Diagnostics. # @@ -152,6 +152,6 @@ function manifest_serialize () # <name> <value> printf "%s:%s\0" "$1" "$2" >&"$manifest_serializer_ifd" } -function pkg_verify_archive () { bpkg_rep_pkg_verify_archive "$@"; } -function pkg_find_archives () { bpkg_rep_pkg_find_archives "$@"; } -function pkg_find_archive () { bpkg_rep_pkg_find_archive "$@"; } +function pkg_verify_archive () { bpkg_util_pkg_verify_archive "$@"; } +function pkg_find_archives () { bpkg_util_pkg_find_archives "$@"; } +function pkg_find_archive () { bpkg_util_pkg_find_archive "$@"; } @@ -33,4 +33,4 @@ depends: libbutl [0.14.0-a.0.1 0.14.0-a.1) depends: libbpkg [0.14.0-a.0.1 0.14.0-a.1) depends: libbbot [0.14.0-a.0.1 0.14.0-a.1) depends: libbutl.bash [0.14.0-a.0.1 0.14.0-a.1) -depends: bpkg-rep [0.14.0-a.0.1 0.14.0-a.1) +depends: bpkg-util [0.14.0-a.0.1 0.14.0-a.1) diff --git a/repositories.manifest b/repositories.manifest index dccde57..da9ee2b 100644 --- a/repositories.manifest +++ b/repositories.manifest @@ -19,7 +19,7 @@ location: ../libbutl.bash.git##HEAD : role: prerequisite -location: ../bpkg-rep.git##HEAD +location: ../bpkg-util.git##HEAD : role: prerequisite |