Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thibaut Pérami
stdpp
Commits
4b6af89c
Commit
4b6af89c
authored
7 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
no more opam.pins
parent
01d4aff9
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
Makefile
+16
-12
16 additions, 12 deletions
Makefile
build/opam-pins.sh
+0
-26
0 additions, 26 deletions
build/opam-pins.sh
opam
+1
-3
1 addition, 3 deletions
opam
opam.pins
+0
-0
0 additions, 0 deletions
opam.pins
with
18 additions
and
41 deletions
.gitignore
+
1
−
0
View file @
4b6af89c
...
@@ -12,3 +12,4 @@
...
@@ -12,3 +12,4 @@
Makefile.coq*
Makefile.coq*
*.crashcoqide
*.crashcoqide
html/
html/
build-dep/
This diff is collapsed.
Click to expand it.
Makefile
+
16
−
12
View file @
4b6af89c
# Process flags
ifeq
($(Y), 1)
YFLAG
=
-y
endif
# Forward most targets to Coq makefile (with some trick to make this phony)
# Forward most targets to Coq makefile (with some trick to make this phony)
%
:
Makefile.coq phony
%
:
Makefile.coq phony
+@make
-f
Makefile.coq
$@
+@make
-f
Makefile.coq
$@
...
@@ -15,18 +10,27 @@ clean: Makefile.coq
...
@@ -15,18 +10,27 @@ clean: Makefile.coq
find theories
\(
-name
"*.v.d"
-o
-name
"*.vo"
-o
-name
"*.aux"
-o
-name
"*.cache"
-o
-name
"*.glob"
-o
-name
"*.vio"
\)
-print
-delete
find theories
\(
-name
"*.v.d"
-o
-name
"*.vo"
-o
-name
"*.aux"
-o
-name
"*.cache"
-o
-name
"*.glob"
-o
-name
"*.vio"
\)
-print
-delete
rm
-f
Makefile.coq
rm
-f
Makefile.coq
# Create Coq Makefile. POSIX awk can't do in-place editing, but coq_makefile wants the real filename, so we do some file gymnastics.
# Create Coq Makefile. POSIX awk can't do in-place editing, but coq_makefile wants the real
# filename, so we do some file gymnastics.
Makefile.coq
:
_CoqProject Makefile awk.Makefile
Makefile.coq
:
_CoqProject Makefile awk.Makefile
coq_makefile
-f
_CoqProject
-o
Makefile.coq
coq_makefile
-f
_CoqProject
-o
Makefile.coq
mv
Makefile.coq Makefile.coq.tmp
&&
awk
-f
awk.Makefile Makefile.coq.tmp
>
Makefile.coq
&&
rm
Makefile.coq.tmp
mv
Makefile.coq Makefile.coq.tmp
&&
awk
-f
awk.Makefile Makefile.coq.tmp
>
Makefile.coq
&&
rm
Makefile.coq.tmp
# Install build-dependencies
# Install build-dependencies
build-dep
:
build-dep
:
phony
build/opam-pins.sh < opam.pins
@
# We want opam to not just instal the build-deps now, but to also keep satisfying these
opam upgrade
$(
YFLAG
)
# it is not nice that we upgrade *all* packages here, but I found no nice way to upgrade only those that we pinned
@
# constraints. Otherwise, `opam upgrade` may well update some packages to versions
opam pin add opam-builddep-temp
"
$$(
pwd
)
#HEAD"
-k
git
-n
-y
@
# that are incompatible with our build requirements.
opam
install
opam-builddep-temp
--deps-only
$(
YFLAG
)
@
# To achieve this, we create a fake opam package that has our build-dependencies as
opam pin remove opam-builddep-temp
@
# dependencies, but does not actually install anything.
mkdir
-p
build-dep
# Create the build-dep package, add the pin and
(
re
)
install
it.
@
sed
<opam
's/^\(build\|install\|remove\):.*/\1: []/; s/^name: *"\(.*\)" */name: "\1-builddep"/'
>
build-dep/opam
@
fgrep builddep build-dep/opam
>
/dev/null
||
(
echo
"sed failed to fix the package name"
&&
exit
1
)
# sanity check
@
# Reinstallation is needed in case the pin already exists, but the builddep package changed.
@
BUILD_DEP_PACKAGE
=
"
$$(
egrep "
^name:
" build-dep/opam | sed 's/^name: *"
\(
.
*
\)
" */
\1
/'
)
"
;
\
opam pin add
"
$$
BUILD_DEP_PACKAGE"
"
$$(
pwd
)
/build-dep"
-k
path
$(
OPAMFLAGS
)
&&
\
opam reinstall
"
$$
BUILD_DEP_PACKAGE"
# Some files that do *not* need to be forwarded to Makefile.coq
# Some files that do *not* need to be forwarded to Makefile.coq
Makefile
:
;
Makefile
:
;
...
...
This diff is collapsed.
Click to expand it.
build/opam-pins.sh
deleted
100755 → 0
+
0
−
26
View file @
01d4aff9
#!/bin/bash
set
-e
## Process an opam.pins file from stdin: Add all the given pins, but don't install anything.
## Usage:
## ./opam-pins.sh < opam.pins
if
!
which curl
>
/dev/null
;
then
echo
"opam-pins needs curl. Please install curl and try again."
exit
1
fi
# Process stdin
while
read
PACKAGE URL HASH
;
do
if
echo
"
$URL
"
| egrep
'^https://gitlab\.mpi-sws\.org'
>
/dev/null
;
then
echo
"[opam-pins] Recursing into
$URL
"
# an MPI URL -- try doing recursive pin processing
curl
-f
"
$URL
/raw/
$HASH
/opam.pins"
2>/dev/null |
"
$0
"
fi
if
opam pin list | fgrep
"
$PACKAGE
.dev.
$HASH
"
>
/dev/null
;
then
echo
"[opam-pins]
$PACKAGE
already at commit
$HASH
"
else
echo
"[opam-pins] Applying pin:
$PACKAGE
->
$URL
#
$HASH
"
opam pin add
"
$PACKAGE
.dev.
$HASH
"
"
$URL
#
$HASH
"
-k
git
-y
-n
echo
fi
done
This diff is collapsed.
Click to expand it.
opam
+
1
−
3
View file @
4b6af89c
...
@@ -7,9 +7,7 @@ authors: "Robbert Krebbers, Jacques-Henri Jourdan, Ralf Jung"
...
@@ -7,9 +7,7 @@ authors: "Robbert Krebbers, Jacques-Henri Jourdan, Ralf Jung"
bug-reports: "https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp/issues"
bug-reports: "https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp/issues"
license: "BSD"
license: "BSD"
dev-repo: "https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp.git"
dev-repo: "https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp.git"
build: [
build: [make "-j%{jobs}%"]
[make "-j%{jobs}%"]
]
install: [make "install"]
install: [make "install"]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/stdpp'" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/stdpp'" ]
depends: [
depends: [
...
...
This diff is collapsed.
Click to expand it.
opam.pins
deleted
100644 → 0
+
0
−
0
View file @
01d4aff9
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment