branch: elpa/vm
commit c722f20a7bd8327fed5875804fa917efc74eaef3
Merge: 55c45a9513b b646a8ea384
Author: Mark Diekhans <[email protected]>
Commit: Mark Diekhans <[email protected]>
Merge branch 'main' into 'main'
some treee cleanup
See merge request emacs-vm/vm!59
---
TODO => dev/docs/TODO-historic.txt | 0
.../docs}/design/elp-stuff-folder-data.txt | 0
{dev-docs => dev/docs}/design/passwords.org | 0
{dev-docs => dev/docs}/design/threading.txt | 0
.../docs}/design/virtual-revolution.txt | 0
{dev-docs => dev/docs}/releasing.org | 0
{dev-tools => dev/tools}/autoloads.py | 0
release.sh | 45 ----------------------
8 files changed, 45 deletions(-)
diff --git a/TODO b/dev/docs/TODO-historic.txt
similarity index 100%
rename from TODO
rename to dev/docs/TODO-historic.txt
diff --git a/dev-docs/design/elp-stuff-folder-data.txt
b/dev/docs/design/elp-stuff-folder-data.txt
similarity index 100%
rename from dev-docs/design/elp-stuff-folder-data.txt
rename to dev/docs/design/elp-stuff-folder-data.txt
diff --git a/dev-docs/design/passwords.org b/dev/docs/design/passwords.org
similarity index 100%
rename from dev-docs/design/passwords.org
rename to dev/docs/design/passwords.org
diff --git a/dev-docs/design/threading.txt b/dev/docs/design/threading.txt
similarity index 100%
rename from dev-docs/design/threading.txt
rename to dev/docs/design/threading.txt
diff --git a/dev-docs/design/virtual-revolution.txt
b/dev/docs/design/virtual-revolution.txt
similarity index 100%
rename from dev-docs/design/virtual-revolution.txt
rename to dev/docs/design/virtual-revolution.txt
diff --git a/dev-docs/releasing.org b/dev/docs/releasing.org
similarity index 100%
rename from dev-docs/releasing.org
rename to dev/docs/releasing.org
diff --git a/dev-tools/autoloads.py b/dev/tools/autoloads.py
similarity index 100%
rename from dev-tools/autoloads.py
rename to dev/tools/autoloads.py
diff --git a/release.sh b/release.sh
deleted file mode 100755
index f0eff8d8b77..00000000000
--- a/release.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env bash
-# -*- shell-script -*-
-
-. ./getversion.sh
-
-
-# now check for uncommitted changes
-if [ "$1" != "test" ]; then
- bzr diff || exit 1
-fi
-
-# check for an error less build
-if [ "$1" != "test" ]; then
- # make sure we delete the existing files containing version info
- rm -f lisp/version.txt info/version.texinfo
- make all || exit 1
-fi
-
-# just create the version-info, no bundle
-if [ "$1" == "version-info" ]; then
- exit 0
-fi
-
-dir="release/$rdir"
-rm -rf $dir
-mkdir -p release
-$bzr export $dir
-
-cp configure $dir
-# The following lines are useless and misguided. USR, 2010-03-13
-# mv lisp/version.txt $dir/lisp
-# mv info/version.texinfo $dir/info
-rm $dir/getversion.sh $dir/release.sh
-cd release
-tar cvfz $rdir.tgz $rdir
-cd ..
-
-if [ -n "$1" -a -e "$1" ]; then
- ./$1 $dir.tgz $nick $revno
-fi
-
-echo "Remember to push revisions!!!"
-# if [ "$1" != "test" ]; then
-# $bzr push --overwrite
-# fi