diff options
| author | David Bremner <bremner@debian.org> | 2018-06-12 22:39:33 -0300 |
|---|---|---|
| committer | David Bremner <bremner@debian.org> | 2018-06-12 22:39:33 -0300 |
| commit | 045f0e455ac94e2393d0d729c9bbdf3459a4860f (patch) | |
| tree | 8d8b46ecba2c3c128365f16ece54377b987dbe58 /test/test-databases | |
Import notmuch_0.27.orig.tar.gz
[dgit import orig notmuch_0.27.orig.tar.gz]
Diffstat (limited to 'test/test-databases')
| -rw-r--r-- | test/test-databases/.gitignore | 1 | ||||
| -rw-r--r-- | test/test-databases/Makefile | 7 | ||||
| -rw-r--r-- | test/test-databases/Makefile.local | 20 | ||||
| -rw-r--r-- | test/test-databases/database-v1.tar.xz.sha256 | 1 |
4 files changed, 29 insertions, 0 deletions
diff --git a/test/test-databases/.gitignore b/test/test-databases/.gitignore new file mode 100644 index 00000000..9452199f --- /dev/null +++ b/test/test-databases/.gitignore @@ -0,0 +1 @@ +/*.tar.xz diff --git a/test/test-databases/Makefile b/test/test-databases/Makefile new file mode 100644 index 00000000..b250a8be --- /dev/null +++ b/test/test-databases/Makefile @@ -0,0 +1,7 @@ +# See Makefile.local for the list of files to be compiled in this +# directory. +all: + $(MAKE) -C ../.. all + +.DEFAULT: + $(MAKE) -C ../.. $@ diff --git a/test/test-databases/Makefile.local b/test/test-databases/Makefile.local new file mode 100644 index 00000000..7aedff70 --- /dev/null +++ b/test/test-databases/Makefile.local @@ -0,0 +1,20 @@ +# -*- makefile -*- + +TEST_DATABASE_MIRROR=https://notmuchmail.org/releases/test-databases + +dir := test/test-databases + +test_databases := $(dir)/database-v1.tar.xz + +%.tar.xz: + @exec 1>&2 ;\ + if command -v wget >/dev/null ;\ + then set -x; wget -nv -O $@ ${TEST_DATABASE_MIRROR}/$(notdir $@) ;\ + elif command -v curl >/dev/null ;\ + then set -x; curl -L -s -o $@ ${TEST_DATABASE_MIRROR}/$(notdir $@) ;\ + else echo Cannot fetch databases, no wget nor curl available; exit 1 ;\ + fi + +download-test-databases: ${test_databases} + +DATACLEAN := $(DATACLEAN) ${test_databases} diff --git a/test/test-databases/database-v1.tar.xz.sha256 b/test/test-databases/database-v1.tar.xz.sha256 new file mode 100644 index 00000000..2cc4f965 --- /dev/null +++ b/test/test-databases/database-v1.tar.xz.sha256 @@ -0,0 +1 @@ +4299e051b10e1fa7b33ea2862790a09ebfe96859681804e5251e130f800e69d2 database-v1.tar.xz |
