Release preparation.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 5 Jun 2017 18:06:39 +0000 (14:06 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 5 Jun 2017 18:06:39 +0000 (14:06 -0400)
.shipper [new file with mode: 0644]
Makefile
control
index.adoc [deleted file]

diff --git a/.shipper b/.shipper
new file mode 100644 (file)
index 0000000..3b4619f
--- /dev/null
+++ b/.shipper
@@ -0,0 +1,3 @@
+extralines="""
+<p>Code coverage analysis: http://esr.gitlab.io/open-adventure/coverage/</p>
+"""
index 4685fa4c54ecdd46e0c35355271c1efe8629b798..961332bb38d9b4b71249813c95658130026e6d37 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -40,8 +40,6 @@ database.c database.h: compile adventure.text
        ./compile
        $(CC) $(CCFLAGS) $(DBX) -c database.c
 
-html: index.html advent.html history.html hints.html
-
 clean:
        rm -f *.o advent *.html database.[ch] compile *.gcno *.gcda
        rm -f README advent.6 MANIFEST
@@ -61,15 +59,16 @@ check: advent
        asciidoc $<
 
 # README.adoc exists because that filename is magic on GitLab.
-DOCS=COPYING NEWS README.adoc TODO \
-       advent.adoc history.adoc index.adoc hints.adoc advent.6
+DOCS=COPYING NEWS README.adoc TODO advent.adoc history.adoc hints.adoc advent.6
 
-# Can't use GNU tar's --transform, needs to build under Alpine Linux
 advent-$(VERS).tar.gz: $(SOURCES) $(DOCS)
-       @ls $(SOURCES) $(DOCS) | sed s:^:advent-$(VERS)/: >MANIFEST
-       @(ln -s . advent-$(VERS))
-       (tar -T MANIFEST -czvf advent-$(VERS).tar.gz)
-       @(rm advent-$(VERS))
+       tar --transform='s:^:advent-$(VERS)/:' --show-transformed-names -cvzf advent-$(VERS).tar.gz $(SOURCES) $(DOCS)
+
+release: advent-$(VERS).tar.gz advent.html history.html hints.html
+       shipper version=$(VERS) | sh -e -x
+
+refresh: advent.html
+       shipper -N -w version=$(VERS) | sh -e -x
 
 dist: advent-$(VERS).tar.gz
 
diff --git a/control b/control
index 02bdd6bda1b614e6c10acf6686d3efc4e56924b8..7a2aecf38ede7603244dbfe045c1e50943cf5ea7 100644 (file)
--- a/control
+++ b/control
@@ -17,6 +17,10 @@ XBS-HTML-Target: index.html
 
 XBS-Repository-URL: https://gitlab.com/esr/open-adventure
 
-#XBS-Project-Tags: Games/Entertainment
+XBS-IRC-Channel: irc://chat.freenode.net/#open-adventure
+
+XBS-Project-Tags: Games/Entertainment
 
 XBS-VC-Tag-Template: %(version)s
+
+XBS-Validate: make check
diff --git a/index.adoc b/index.adoc
deleted file mode 100644 (file)
index dacdf44..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-= Open Adventure =
-
-Open Adventure is an open-source port of Colossal Cave Adventure
-approved by its original authors, Will Crowther and Don Woods. It is
-based not on the original 350-point version from 1977 with 15
-treasures, but on the 430-point version with 20 treasures that was the
-last one Don Woods released in 1995.
-
-You can read:
-
-* a web rendering of its link:advent.html[manual page].
-
-* a link:history.html[a more detailed history] of the game.
-
-* a file of link:hints.html[hints].  And these are hints, not spoilers.
-
-* the latest link:coverage[code coverage analysis].
-
-// end