-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test for restricted prefixes in package names
Co-authored-by: Shon Feder <[email protected]>
- Loading branch information
1 parent
6bbdc3c
commit 97d42b7
Showing
3 changed files
with
134 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
From 00dbea20350d84b089ff1c1014252fa31babcb2a Mon Sep 17 00:00:00 2001 | ||
From: benmandrew <[email protected]> | ||
Date: Mon, 19 Feb 2024 14:25:05 +0100 | ||
Subject: [PATCH] b | ||
|
||
--- | ||
packages/b/b.0.0.1/opam | 13 +++++++++++++ | ||
packages/b/b.0.0.2/opam | 13 +++++++++++++ | ||
packages/b/b.0.0.3/opam | 13 +++++++++++++ | ||
3 files changed, 39 insertions(+) | ||
create mode 100644 packages/b/b.0.0.1/opam | ||
create mode 100644 packages/b/b.0.0.2/opam | ||
create mode 100644 packages/b/b.0.0.3/opam | ||
|
||
diff --git a/packages/b/b.0.0.1/opam b/packages/b/b.0.0.1/opam | ||
new file mode 100644 | ||
index 0000000..69040f4 | ||
index 0000000..3697498 | ||
--- /dev/null | ||
+++ b/packages/b/b.0.0.1/opam | ||
@@ -0,0 +1,13 @@ | ||
|
@@ -33,7 +19,7 @@ index 0000000..69040f4 | |
+] | ||
diff --git a/packages/b/b.0.0.2/opam b/packages/b/b.0.0.2/opam | ||
new file mode 100644 | ||
index 0000000..1581508 | ||
index 0000000..a47aabf | ||
--- /dev/null | ||
+++ b/packages/b/b.0.0.2/opam | ||
@@ -0,0 +1,15 @@ | ||
|
@@ -54,10 +40,10 @@ index 0000000..1581508 | |
+] | ||
diff --git a/packages/b/b.0.0.3/opam b/packages/b/b.0.0.3/opam | ||
new file mode 100644 | ||
index 0000000..5ec1dc4 | ||
index 0000000..5bab63e | ||
--- /dev/null | ||
+++ b/packages/b/b.0.0.3/opam | ||
@@ -0,0 +1,15 @@ | ||
@@ -0,0 +1,18 @@ | ||
+opam-version: "2.0" | ||
+synopsis: "Synopsis" | ||
+description: "Description" | ||
|
@@ -72,6 +58,27 @@ index 0000000..5ec1dc4 | |
+depends: [ | ||
+ "a-1" {< "0.0.2"} | ||
+] | ||
+conflict-class: [ | ||
+ "ocaml-host-arch" | ||
+] | ||
+pin-depends: [ "foo.~dev" "git+https://github.com/bar/foo" ] | ||
-- | ||
2.43.0 | ||
diff --git a/packages/system-b/system-b.0.0.1/opam b/packages/system-b/system-b.0.0.1/opam | ||
new file mode 100644 | ||
index 0000000..0808e56 | ||
--- /dev/null | ||
+++ b/packages/system-b/system-b.0.0.1/opam | ||
@@ -0,0 +1,14 @@ | ||
+opam-version: "2.0" | ||
+synopsis: "Synopsis" | ||
+description: "Description" | ||
+maintainer: "Maintainer" | ||
+author: "Author" | ||
+license: "Apache-2.0" | ||
+homepage: "https://github.com/ocurrent/opam-repo-ci" | ||
+bug-reports: "https://github.com/ocurrent/opam-repo-ci/issues" | ||
+dev-repo: "git+https://github.com/ocurrent/opam-repo-ci.git" | ||
+doc: "https://ocurrent.github.io/ocurrent/" | ||
+build: [] | ||
+depends: [ | ||
+ "a-1" {>= "0.0.2"} | ||
+] |