Remove RPM spec file and scripts.

The RPM spec file now lives in the `packaging' repository.

.mercury-compiler.spec.in:
tools/build_rpm:
tools/invoke_build_rpm:
	Delete these files.

.gitignore:
Mmakefile:
compiler/notes/release_checklist.html:
	Remove all evidence.

	Delete outdated instructions for building Debian packages.
This commit is contained in:
Peter Wang
2013-04-18 16:46:26 +10:00
parent 31c0fb8291
commit 1cf15258d9
6 changed files with 1 additions and 338 deletions

View File

@@ -226,7 +226,7 @@ depend_deep_profiler:
# it is required.
.PHONY: all
all: $(GENERATED_DOCS) mercury-compiler.spec util_no_rt $(SUBDIRS)
all: $(GENERATED_DOCS) util_no_rt $(SUBDIRS)
.PHONY: util_no_rt
util_no_rt: scripts
@@ -405,18 +405,6 @@ WORK_IN_PROGRESS: compiler/notes/work_in_progress.html
TODO: compiler/notes/todo.html
$(HTML_TO_TEXT) compiler/notes/todo.html > TODO
mercury-compiler.spec: .mercury-compiler.spec.in VERSION
version_with_underscores=`echo $(VERSION) | sed 's/-/_/g'`; \
beta_dir=`expr "$(VERSION)" : '\(.*beta\).*'`; \
maybe_beta=`case $(VERSION) in \
rotd*) echo "beta-releases/rotd/" ;; \
*beta*) echo "beta-releases/$$beta_dir/" ;; \
esac`; \
sed -e "s/@VERSION@/$(VERSION)/g" \
-e "s/@VERSION_WITH_UNDERSCORES@/$$version_with_underscores/g" \
-e "s^@MAYBE_BETA@^$$maybe_beta^g" \
.mercury-compiler.spec.in > mercury-compiler.spec
#-----------------------------------------------------------------------------#
# Generally you should do a `mmake realclean' before doing `mmake tar'.