-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix opam files and add make-opam-files script
- Loading branch information
Showing
7 changed files
with
29 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Abhishek Anand <[email protected]>" | ||
"Simon Boulier <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Abhishek Anand <[email protected]>" | ||
"Simon Boulier <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Abhishek Anand <[email protected]>" | ||
"Simon Boulier <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#master" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Abhishek Anand <[email protected]>" | ||
"Simon Boulier <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Simon Boulier <[email protected]>" | ||
"Cyril Cohen <[email protected]>" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ opam-version: "2.0" | |
version: "8.15.dev" | ||
maintainer: "[email protected]" | ||
homepage: "https://metacoq.github.io/metacoq" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11" | ||
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" | ||
bug-reports: "https://github.com/MetaCoq/metacoq/issues" | ||
authors: ["Abhishek Anand <[email protected]>" | ||
"Simon Boulier <[email protected]>" | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#/usr/bin/env bash | ||
echo "Target directory: " $1 | ||
echo "Target version: " $2 | ||
echo "Releases package: " $3 | ||
|
||
wget $3 | ||
archive=`basename $3` | ||
hash=`shasum -a 512 $archive | cut -f 1 -d " "` | ||
|
||
echo "Shasum = " $hash | ||
|
||
for f in *.opam; | ||
do | ||
opamf=${f/.opam/}; | ||
target=$1/$opamf/$opamf.$2/opam; | ||
echo $opamf; | ||
mkdir $1/$opamf/$opamf.$2 | ||
gsed -e "/^version:.*/d" $f > $target | ||
echo url { >> $target | ||
echo " src:" \"$3\" >> $target | ||
echo " checksum:" \"sha512=$hash\" >> $target | ||
echo } >> $target | ||
done |