aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2015-02-07 19:27:14 +0100
committerMoritz Lenz <moritz@faui2k3.org>2015-02-07 19:27:14 +0100
commit320f22d022fdf6bb48fa6dfa584c813d766d38c4 (patch)
treef45993dad977e73d244ced70f3b69a6e107a3ad9
parentb4d018213a08040212309f5466423dc827a2f846 (diff)
remove Makefile.old
it seems not to be in use, and I see no benefit in keeping dead code around. git has all the old revisions anyway.
-rw-r--r--tools/star/Makefile.old109
1 files changed, 0 insertions, 109 deletions
diff --git a/tools/star/Makefile.old b/tools/star/Makefile.old
deleted file mode 100644
index 9dd42ba..0000000
--- a/tools/star/Makefile.old
+++ /dev/null
@@ -1,109 +0,0 @@
-PARROT_VER = 4.6.0
-PARROT_REL = supported/$(PARROT_VER)
-NQP_VER = 2012.08
-RAKUDO_VER = 2012.08
-
-DISTDIR = rakudo-star-$(VERSION)
-BUILD_DIR = $(DISTDIR)/build
-
-PARROT = parrot-$(PARROT_VER)
-PARROT_TGZ = $(PARROT).tar.gz
-PARROT_DIR = $(DISTDIR)/$(PARROT)
-
-NQP = nqp-$(NQP_VER)
-NQP_TGZ = $(NQP).tar.gz
-NQP_DIR = $(DISTDIR)/$(NQP)
-
-RAKUDO = rakudo-$(RAKUDO_VER)
-RAKUDO_TGZ = $(RAKUDO).tar.gz
-RAKUDO_DIR = $(DISTDIR)/$(RAKUDO)
-
-
-## If you add a module here, don't forget to update MODULES
-## in skel/tools/build/Makefile.in to actually install it
-MODULES_DIR = $(DISTDIR)/modules
-MODULES = \
- git://github.com/masak/ufo \
- git://github.com/jnthn/zavolaj \
- git://github.com/masak/xml-writer \
- git://github.com/moritz/svg \
- git://github.com/moritz/Math-RungeKutta \
- git://github.com/moritz/svg-plot \
- git://github.com/moritz/Math-Model \
- git://github.com/tadzik/perl6-Term-ANSIColor \
- git://github.com/jnthn/test-mock \
- git://github.com/perlpilot/Grammar-Profiler-Simple \
- git://github.com/jnthn/grammar-debugger \
- git://github.com/moritz/json \
- git://github.com/snarkyboojum/Perl6-MIME-Base64 \
- git://github.com/cosimo/perl6-digest-md5 \
- git://github.com/tadzik/perl6-File-Tools \
- git://github.com/tadzik/panda \
- git://github.com/supernovus/perl6-http-status \
- git://github.com/supernovus/perl6-http-easy \
- git://github.com/tadzik/Template-Mojo \
- git://github.com/tadzik/Bailador \
- git://github.com/perl6/DBIish \
- git://github.com/ihrd/uri \
- git://github.com/cosimo/perl6-lwp-simple \
- git://github.com/bbkr/jsonrpc \
- git://github.com/perl6/Pod-To-HTML \
- git://github.com/perl6/doc \
-
-DISTTARGETS = \
- $(PARROT_DIR) \
- $(NQP_DIR) \
- $(RAKUDO_DIR) \
- $(MODULES_DIR) \
- star-patches \
- $(DISTDIR)/MANIFEST \
-
-dist: version_check $(DISTDIR) $(DISTTARGETS)
-
-version_check:
- @[ -n "$(VERSION)" ] || ( echo "\nTry 'make release VERSION=yyyy.mm'\n\n"; exit 1)
-
-always:
-
-$(DISTDIR): always
- mkdir -p $(DISTDIR)
- echo $(VERSION) >$(DISTDIR)/VERSION
- cp -av skel/. $(DISTDIR)
- perl build/skel-template.pl $(DISTDIR)
-
-$(PARROT_DIR): $(PARROT_TGZ)
- tar -C $(DISTDIR) -xvzf $(PARROT_TGZ)
-
-$(PARROT_TGZ):
- wget http://ftp.parrot.org/releases/$(PARROT_REL)/$(PARROT_TGZ)
-
-$(NQP_DIR): $(NQP_TGZ)
- tar -C $(DISTDIR) -xvzf $(NQP_TGZ)
-
-$(NQP_TGZ):
- wget --no-check-certificate https://github.com/downloads/perl6/nqp/$(NQP_TGZ)
-
-$(RAKUDO_DIR): $(RAKUDO_TGZ)
- tar -C $(DISTDIR) -xvzf $(RAKUDO_TGZ)
-
-$(RAKUDO_TGZ):
- wget --no-check-certificate https://github.com/downloads/rakudo/rakudo/$(RAKUDO_TGZ)
-
-$(MODULES_DIR): always
- mkdir -p $(MODULES_DIR)
- cd $(MODULES_DIR); for repo in $(MODULES); do git clone $$repo.git; done
- # cd $(MODULES_DIR)/yaml-pm6; git checkout rakudo-star-1
- cd $(MODULES_DIR)/panda; git checkout 04b67556b56edd0c4599fc20c9c7e49a292b0cc1
-
-star-patches:
- [ ! -f build/$(VERSION)-patch.pl ] || DISTDIR=$(DISTDIR) perl build/$(VERSION)-patch.pl
-
-$(DISTDIR)/MANIFEST:
- touch $(DISTDIR)/MANIFEST
- find $(DISTDIR) -name '.git' -prune -o -type f -print | sed -e 's|^[^/]*/||' | sort >$(DISTDIR)/MANIFEST
-
-release: dist tarball
-
-tarball:
- perl -ne 'print "$(DISTDIR)/$$_"' $(DISTDIR)/MANIFEST |\
- tar -zcv -T - -f $(DISTDIR).tar.gz