Skip to content

Commit

Permalink
update repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
stormymcstorm committed Apr 17, 2023
1 parent dd0f159 commit 3a834f1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 27 deletions.
23 changes: 11 additions & 12 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@ load("@rules_pkg//pkg:mappings.bzl", "pkg_attributes", "pkg_files", "pkg_mklink"
load("@rules_pkg//pkg:deb.bzl", "pkg_deb")
load("@rules_pkg//pkg:tar.bzl", "pkg_tar")

# distribution(
# name = "dist",
# bin = "//jesture",
# deb_package_desc = "TODO",
# deb_package_name = "jesture",
# maintainer = "TODO",
# product_name = "jesture",
# version = "0.5.0",
# )

VERSION = "0.5.0"

dist_vars(
Expand Down Expand Up @@ -60,8 +50,17 @@ pkg_tar(
pkg_deb(
name = "jesture_deb",
data = ":jesture_linux_tar",
description = "TODO",
maintainer = "",
depends = [
"qt6-base-dev",
"qt6-wayland",
"qt6-declarative-dev",
"qt6-multimedia-dev",
"libqt6svg6-dev",
"libx11-dev",
"libopencv-dev",
],
description = "Application to control you computer through hand gestures",
maintainer = "[email protected]",
package = "jesture",
package_file_name = "{product_name}-{version}-{arch}.deb",
package_variables = ":jesture_dist_vars",
Expand Down
24 changes: 9 additions & 15 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,23 @@ def jesture_repositories():
)

maybe(
git_repository,
http_archive,
name = "actions",
remote = "[email protected]:jesture/actions.git",
commit = "0a2b9cbfb9fd579b1581c31241543bffdc305a69",
strip_prefix = "Actions-1.0.0",
url = "https://github.com/JestureApp/Actions/archive/refs/tags/v1.0.0.zip",
)

# maybe(
# native.local_repository,
# name = "actions",
# path = "../Actions",
# )

maybe(
git_repository,
http_archive,
name = "jesturepipe",
remote = "[email protected]:jesture/jesturepipe.git",
commit = "632ca3728f1d4c94f1f5714876d78e85475218fb",
strip_prefix = "JesturePipe-1.0.0",
url = "https://github.com/JestureApp/JesturePipe/archive/refs/tags/v1.0.0.zip",
)

# maybe(
# native.local_repository,
# git_repository,
# name = "jesturepipe",
# path = "../JesturePipe",
# remote = "[email protected]:jesture/jesturepipe.git",
# commit = "632ca3728f1d4c94f1f5714876d78e85475218fb",
# )

http_archive(
Expand Down

0 comments on commit 3a834f1

Please sign in to comment.