Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
verimag
synchrone
lutin
Commits
7df2c3ba
Commit
7df2c3ba
authored
Jun 13, 2016
by
Erwan Jahier
Browse files
just a commit to increment the version number to make sure it works
parent
f7ce4deb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile.dev
View file @
7df2c3ba
...
...
@@ -76,13 +76,17 @@ $(WWW)/pool/$(PACKNAME).tgz: $(PACKNAME).tgz
mv
$^
$@
OPAM_FILE
=
`
find
$(WWW)
/opam-repository/packages
-name
opam
-cmin
-1
|
sed
-e
's/^./\U&/'
`
opam
:
$(WWW)/pool/$(PACKNAME).tgz
cd
$(WWW)
/opam-repository/packages
&&
\
oasis2opam
$(HTTP)
/pool/
$(PACKNAME)
.tgz
&&
\
echo
"OPAM_FILE=
$(OPAM_FILE)
"
&&
\
cat
$(OPAM_FILE)
| ocaml
$(PWD)
/utils/fixopam_file.ml
>
$(OPAM_FILE)
-fixed
&&
\
cp
$(OPAM_FILE)
-fixed
$(OPAM_FILE)
&&
\
cd
..
;
opam-admin check
&&
opam-admin make
-g
.PHONY
:
install
.PHONY
:
install
$(WWW)/pool/$(PACKNAME).tgz
oi
:
install
or
:
reinstall
ob
:
build
...
...
lutin/src/version.ml
View file @
7df2c3ba
let
str
=
"2.4"
let
sha
=
"
5a14494
"
let
sha
=
"
f7ce4de
"
utils/fixopam_file.ml
0 → 100755
View file @
7df2c3ba
(* Time-stamp: <modified the 13/06/2016 (at 11:00) by Erwan Jahier> *)
(* Replace
build: [ * ]
by
build: [ ["make"] ]
*)
let
removing
=
ref
false
let
_
=
try
while
true
do
let
line
=
read_line
()
in
if
!
removing
then
()
else
print_string
(
line
^
"
\n
"
);
if
String
.
length
line
>
5
&&
String
.
sub
line
0
6
=
"build:"
then
removing
:=
true
;
if
!
removing
&&
line
.
[
0
]
=
'
]
'
then
(
removing
:=
false
;
print_string
" [
\"
make
\"
]
\n
]
\n
"
);
done
with
End_of_file
->
flush
stdout
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment