Skip to content

Commit 10c77b1

Browse files
authored
Initial module for rules_pkg_providers. (#8723)
For context: - bazelbuild/rules_pkg#996 - bazelbuild/rules_pkg#1032 - https://github.com/bazelbuild/rules_pkg/releases/tag/rules_pkg_providers-0.0.1 Starting at 0.0.1 because I am certain there will be something that needs fixing before 1.0.0.
1 parent 238be33 commit 10c77b1

4 files changed

Lines changed: 51 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module(
2+
name = "rules_pkg_providers",
3+
version = "0.0.1", # set by release pipeline from version.bzl.
4+
compatibility_level = 1,
5+
repo_name = "rules_pkg_providers",
6+
)
7+
8+
# Do not update to newer versions until you need a specific new feature.
9+
bazel_dep(name = "rules_license", version = "1.0.0")
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- macos
5+
- windows
6+
bazel:
7+
- 9.x
8+
tasks:
9+
verify_targets:
10+
name: Verify build targets
11+
platform: ${{ platform }}
12+
bazel: ${{ bazel }}
13+
build_targets:
14+
- '@rules_pkg_providers//...'
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"url": "https://github.com/bazelbuild/rules_pkg/releases/download/rules_pkg_providers-0.0.1/rules_pkg_providers-0.0.1.tgz",
3+
"integrity": "sha256-6EOHPTTPxUKIVJU2278WEc1PWzqnF/f4U6yV20QRaRY="
4+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"homepage": "https://github.com/bazelbuild/rules_pkg.git",
3+
"maintainers": [
4+
{
5+
"email": "chuck.grindel@gmail.com",
6+
"github": "cgrindel",
7+
"name": "Chuck Grindel",
8+
"github_user_id": 159968
9+
},
10+
{
11+
"email": "tony@aiuto.dev",
12+
"name": "Tony Aiuto",
13+
"github": "aiuto",
14+
"github_user_id": 3044252
15+
}
16+
],
17+
"repository": [
18+
"github:bazelbuild/rules_pkg"
19+
],
20+
"versions": [
21+
"0.0.1"
22+
],
23+
"yanked_versions": {}
24+
}

0 commit comments

Comments
 (0)