From: Michael Hanke Date: Thu, 27 Dec 2012 09:17:10 +0000 (+0100) Subject: Replace a good chunk of code with the new bigmess X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2c039d67396a329a04fd02caab5aa4134c701983;p=neurodebian.git Replace a good chunk of code with the new bigmess --- diff --git a/Makefile b/Makefile index 7829c85..0bf8ada 100644 --- a/Makefile +++ b/Makefile @@ -36,15 +36,20 @@ distclean: clean source: source-stamp -source-stamp: build/db.db - PYTHONPATH=.:$(PYTHONPATH) python neurodebian/dde.py \ - --cfg neurodebian.cfg \ - --db build/db.db \ - --outdir build/src \ - --pkgaddenum pkgs \ - --extracts /home/www/neuro.debian.net/www/debian/extracts \ - commandisirrelevant - rm -f html-stamp +source-stamp: + mkdir -p build/src/pkgs/ + mkdir -p build/src/lists/ + PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genpkgs -d build/src/pkgs/ + PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genaptlists -d build/src/lists/ + PYTHONPATH=.:../bigmess:$(PYTHONPATH) ../bigmess/bin/bigmess genmirrorselect > build/src/sources_lists +# PYTHONPATH=.:$(PYTHONPATH) python neurodebian/dde.py \ +# --cfg neurodebian.cfg \ +# --db build/db.db \ +# --outdir build/src \ +# --pkgaddenum pkgs \ +# --extracts /home/www/neuro.debian.net/www/debian/extracts \ +# commandisirrelevant +# rm -f html-stamp touch $@