From 3b558de7811a765c3295a58bd53e2156eca0e32e Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Wed, 21 Apr 2010 17:23:49 -0700
Subject: [PATCH] Move everything down into a bindings/python directory.

In preparation for merging the python bindings into the notmuch
repository.
---
 MANIFEST.in => bindings/python/MANIFEST.in        | 0
 README => bindings/python/README                  | 0
 {debian => bindings/python/debian}/changelog      | 0
 {debian => bindings/python/debian}/compat         | 0
 {debian => bindings/python/debian}/control        | 0
 {debian => bindings/python/debian}/copyright      | 0
 {debian => bindings/python/debian}/docs           | 0
 {debian => bindings/python/debian}/rules          | 0
 {docs => bindings/python/docs}/COPYING            | 0
 {docs => bindings/python/docs}/Makefile           | 0
 {docs => bindings/python/docs}/source/conf.py     | 0
 {docs => bindings/python/docs}/source/index.rst   | 0
 {docs => bindings/python/docs}/source/notmuch.rst | 0
 notmuch.py => bindings/python/notmuch.py          | 0
 {notmuch => bindings/python/notmuch}/__init__.py  | 0
 {notmuch => bindings/python/notmuch}/database.py  | 0
 {notmuch => bindings/python/notmuch}/globals.py   | 0
 {notmuch => bindings/python/notmuch}/message.py   | 0
 {notmuch => bindings/python/notmuch}/tag.py       | 0
 {notmuch => bindings/python/notmuch}/thread.py    | 0
 setup.py => bindings/python/setup.py              | 0
 {test => bindings/python/test}/notmuch-test       | 0
 22 files changed, 0 insertions(+), 0 deletions(-)
 rename MANIFEST.in => bindings/python/MANIFEST.in (100%)
 rename README => bindings/python/README (100%)
 rename {debian => bindings/python/debian}/changelog (100%)
 rename {debian => bindings/python/debian}/compat (100%)
 rename {debian => bindings/python/debian}/control (100%)
 rename {debian => bindings/python/debian}/copyright (100%)
 rename {debian => bindings/python/debian}/docs (100%)
 rename {debian => bindings/python/debian}/rules (100%)
 rename {docs => bindings/python/docs}/COPYING (100%)
 rename {docs => bindings/python/docs}/Makefile (100%)
 rename {docs => bindings/python/docs}/source/conf.py (100%)
 rename {docs => bindings/python/docs}/source/index.rst (100%)
 rename {docs => bindings/python/docs}/source/notmuch.rst (100%)
 rename notmuch.py => bindings/python/notmuch.py (100%)
 rename {notmuch => bindings/python/notmuch}/__init__.py (100%)
 rename {notmuch => bindings/python/notmuch}/database.py (100%)
 rename {notmuch => bindings/python/notmuch}/globals.py (100%)
 rename {notmuch => bindings/python/notmuch}/message.py (100%)
 rename {notmuch => bindings/python/notmuch}/tag.py (100%)
 rename {notmuch => bindings/python/notmuch}/thread.py (100%)
 rename setup.py => bindings/python/setup.py (100%)
 rename {test => bindings/python/test}/notmuch-test (100%)

diff --git a/MANIFEST.in b/bindings/python/MANIFEST.in
similarity index 100%
rename from MANIFEST.in
rename to bindings/python/MANIFEST.in
diff --git a/README b/bindings/python/README
similarity index 100%
rename from README
rename to bindings/python/README
diff --git a/debian/changelog b/bindings/python/debian/changelog
similarity index 100%
rename from debian/changelog
rename to bindings/python/debian/changelog
diff --git a/debian/compat b/bindings/python/debian/compat
similarity index 100%
rename from debian/compat
rename to bindings/python/debian/compat
diff --git a/debian/control b/bindings/python/debian/control
similarity index 100%
rename from debian/control
rename to bindings/python/debian/control
diff --git a/debian/copyright b/bindings/python/debian/copyright
similarity index 100%
rename from debian/copyright
rename to bindings/python/debian/copyright
diff --git a/debian/docs b/bindings/python/debian/docs
similarity index 100%
rename from debian/docs
rename to bindings/python/debian/docs
diff --git a/debian/rules b/bindings/python/debian/rules
similarity index 100%
rename from debian/rules
rename to bindings/python/debian/rules
diff --git a/docs/COPYING b/bindings/python/docs/COPYING
similarity index 100%
rename from docs/COPYING
rename to bindings/python/docs/COPYING
diff --git a/docs/Makefile b/bindings/python/docs/Makefile
similarity index 100%
rename from docs/Makefile
rename to bindings/python/docs/Makefile
diff --git a/docs/source/conf.py b/bindings/python/docs/source/conf.py
similarity index 100%
rename from docs/source/conf.py
rename to bindings/python/docs/source/conf.py
diff --git a/docs/source/index.rst b/bindings/python/docs/source/index.rst
similarity index 100%
rename from docs/source/index.rst
rename to bindings/python/docs/source/index.rst
diff --git a/docs/source/notmuch.rst b/bindings/python/docs/source/notmuch.rst
similarity index 100%
rename from docs/source/notmuch.rst
rename to bindings/python/docs/source/notmuch.rst
diff --git a/notmuch.py b/bindings/python/notmuch.py
similarity index 100%
rename from notmuch.py
rename to bindings/python/notmuch.py
diff --git a/notmuch/__init__.py b/bindings/python/notmuch/__init__.py
similarity index 100%
rename from notmuch/__init__.py
rename to bindings/python/notmuch/__init__.py
diff --git a/notmuch/database.py b/bindings/python/notmuch/database.py
similarity index 100%
rename from notmuch/database.py
rename to bindings/python/notmuch/database.py
diff --git a/notmuch/globals.py b/bindings/python/notmuch/globals.py
similarity index 100%
rename from notmuch/globals.py
rename to bindings/python/notmuch/globals.py
diff --git a/notmuch/message.py b/bindings/python/notmuch/message.py
similarity index 100%
rename from notmuch/message.py
rename to bindings/python/notmuch/message.py
diff --git a/notmuch/tag.py b/bindings/python/notmuch/tag.py
similarity index 100%
rename from notmuch/tag.py
rename to bindings/python/notmuch/tag.py
diff --git a/notmuch/thread.py b/bindings/python/notmuch/thread.py
similarity index 100%
rename from notmuch/thread.py
rename to bindings/python/notmuch/thread.py
diff --git a/setup.py b/bindings/python/setup.py
similarity index 100%
rename from setup.py
rename to bindings/python/setup.py
diff --git a/test/notmuch-test b/bindings/python/test/notmuch-test
similarity index 100%
rename from test/notmuch-test
rename to bindings/python/test/notmuch-test
-- 
2.45.2