Commit fc29adfb authored by Rusty Russell's avatar Rusty Russell

web: create "versioned" tarballs.

Fixes: https://github.com/rustyrussell/ccan/issues/90Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 03fb6fe6
...@@ -18,6 +18,7 @@ JUNKPAGES=$(JUNKDIRS:%=$(WEBDIR)/%.html) ...@@ -18,6 +18,7 @@ JUNKPAGES=$(JUNKDIRS:%=$(WEBDIR)/%.html)
JUNKBALLS=$(JUNKDIRS:%=$(WEBDIR)/%.tar.bz2) JUNKBALLS=$(JUNKDIRS:%=$(WEBDIR)/%.tar.bz2)
PRETTIFY=$(WEBDIR)/prettify/src/run_prettify.js $(WEBDIR)/prettify/src/prettify.css PRETTIFY=$(WEBDIR)/prettify/src/run_prettify.js $(WEBDIR)/prettify/src/prettify.css
VERSION_NUM := $(shell git describe | cut -d- -f2)
clean-tree: clean-tree:
[ "$(WEBDEV)" ] || ! git status --porcelain | grep . [ "$(WEBDEV)" ] || ! git status --porcelain | grep .
...@@ -40,14 +41,17 @@ $(WEBDIR)/junkcode/%.html: $(WEBDIR)/junkcode/%.tar.bz2 ...@@ -40,14 +41,17 @@ $(WEBDIR)/junkcode/%.html: $(WEBDIR)/junkcode/%.tar.bz2
cd $(WEBDIR) && tar xfj junkcode/$*.tar.bz2 cd $(WEBDIR) && tar xfj junkcode/$*.tar.bz2
URLPREFIX=../ $(PHP) web/staticjunkcode.php junkcode/$* $* > $@ URLPREFIX=../ $(PHP) web/staticjunkcode.php junkcode/$* $* > $@
$(WEBDIR)/ccan.tar.bz2: $(WEBDIR)/ccan-$(VERSION_NUM).tar.bz2
ln -sf ccan-$(VERSION_NUM).tar.bz2 ccan.tar.bz2
# We want tarball to contain ccan/; we put junkcode in, but don't depend on it. # We want tarball to contain ccan/; we put junkcode in, but don't depend on it.
$(WEBDIR)/ccan.tar.bz2: config.h Makefile $(shell git ls-files ccan tools licenses) $(WEBDIR)/ccan-$(VERSION_NUM).tar.bz2: config.h Makefile $(shell git ls-files ccan tools licenses)
DIR=`pwd` && cd /tmp && ln -sf "$$DIR" ccan && tar cvfj $@ `for f in $^; do echo ccan/$$f; done` ccan/junkcode && rm ccan DIR=`pwd` && cd /tmp && ln -sf "$$DIR" ccan && tar cvfj $@ `for f in $^; do echo ccan/$$f; done` ccan/junkcode && rm ccan
$(ALL_PAGES): tools/doc_extract web/staticmoduleinfo.php $(ALL_PAGES): tools/doc_extract web/staticmoduleinfo.php
$(WEBDIR)/list.html: web/staticall.php tools/doc_extract $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2 $(JUNKBALLS) $(WEBDIR)/list.html: web/staticall.php tools/doc_extract $(DIRECT_TARBALLS) $(DEPEND_TARBALLS) $(WEBDIR)/ccan.tar.bz2 $(JUNKBALLS)
$(PHP) web/staticall.php ccan/ junkcode/ $(WEBDIR) $(MODS) > $@ $(PHP) web/staticall.php ccan/ junkcode/ $(WEBDIR) ccan-$(VERSION_NUM).tar.bz2 $(MODS) > $@
$(WEBDIR)/upload.html: web/staticupload.php $(WEBDIR)/upload.html: web/staticupload.php
$(PHP) web/staticupload.php > $@ $(PHP) web/staticupload.php > $@
...@@ -57,7 +61,7 @@ $(WEBDIR)/uploader.php: web/uploader.php.cpp ...@@ -57,7 +61,7 @@ $(WEBDIR)/uploader.php: web/uploader.php.cpp
cpp -w -C -P $< | grep . > $@ cpp -w -C -P $< | grep . > $@
$(WEBDIR)/index.html: web/staticindex.php $(WEBDIR)/index.html: web/staticindex.php
$(PHP) web/staticindex.php > $@ $(PHP) web/staticindex.php ccan-$(VERSION_NUM).tar.bz2 > $@
$(WEBDIR)/example-config.h: config.h $(WEBDIR)/example-config.h: config.h
cp $< $@ cp $< $@
......
...@@ -4,7 +4,7 @@ include('logo.html'); ...@@ -4,7 +4,7 @@ include('logo.html');
include('menulist.html'); include('menulist.html');
include('static-configuration'); include('static-configuration');
$tarballsize=round((filesize($argv[3]."/ccan.tar.bz2") + 1023) / 1024); $tarballsize=round((filesize($argv[3]."/".$argv[4]) + 1023) / 1024);
?> ?>
<div class='content'> <div class='content'>
<h1> List of all CCAN modules: </h1> <h1> List of all CCAN modules: </h1>
...@@ -16,7 +16,7 @@ download. ...@@ -16,7 +16,7 @@ download.
</p> </p>
<p> <p>
Or you can just download the <a href="ccan.tar.bz2">tarball of everything including CCAN tools (<?=$tarballsize?>K)</a>. Or you can just download the <a href="<?=$argv[4]?>">tarball of everything including CCAN tools (<?=$tarballsize?>K)</a>.
</p> </p>
<table align="center" cellpadding="3" cellspacing="1"> <table align="center" cellpadding="3" cellspacing="1">
...@@ -25,7 +25,7 @@ Or you can just download the <a href="ccan.tar.bz2">tarball of everything includ ...@@ -25,7 +25,7 @@ Or you can just download the <a href="ccan.tar.bz2">tarball of everything includ
<th align="right">Download</th> <th align="right">Download</th>
<?php <?php
$modules = array_slice($argv, 4); $modules = array_slice($argv, 5);
sort($modules); sort($modules);
foreach ($modules as $module) { foreach ($modules as $module) {
......
...@@ -21,7 +21,7 @@ for Perl code development and sharing. ...@@ -21,7 +21,7 @@ for Perl code development and sharing.
<h2>Get The Code</h2> <h2>Get The Code</h2>
<p> You can get each module as a tarball (<a href="list.html">see <p> You can get each module as a tarball (<a href="list.html">see
list</a>), get a tarball of <a href="ccan.tar.bz2">the whole repository</a> with tools, list</a>), get a tarball of <a href="<?=$argv[1]?>">the whole repository</a> with tools,
or clone our <a href="http://git.ozlabs.org/?p=ccan">git repository</a> (<tt>git clone git://git.ozlabs.org/~ccan/ccan</tt>) or the one on <a href="http://github.com/rustyrussell/ccan/">github</a>. or clone our <a href="http://git.ozlabs.org/?p=ccan">git repository</a> (<tt>git clone git://git.ozlabs.org/~ccan/ccan</tt>) or the one on <a href="http://github.com/rustyrussell/ccan/">github</a>.
</p> </p>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment