notmuch.git  about / heads / tags
Unnamed repository; edit this file 'description' to name the repository.
   commit c5504cb04398eeeb595cfebe84714ba982ef00e6 (patch)
   parent 40b75f50 release: call python3 instead of python
     tree f1271553ddf2a688b516b739058e50dbd6ced14b
   author David Bremner <david@tethera.net>  2020-11-08 10:08:00 -0400
committer David Bremner <david@tethera.net>  2020-11-08 10:08:00 -0400

Commit Debian 3.0 (quilt) metadata

[dgit (9.12) quilt-fixup]
---
 debian/patches/debian-changes | 34 ++++++++++++++++++++++++++++++++++
 debian/patches/series         |  1 +
 2 files changed, 35 insertions(+)

diff --git a/debian/patches/debian-changes b/debian/patches/debian-changes
new file mode 100644
index 00000000..de0f871b
--- /dev/null
+++ b/debian/patches/debian-changes
@@ -0,0 +1,34 @@
+This is an autogenerated patch header for a single-debian-patch file. The
+delta against upstream is either kept as a single patch, or maintained
+in some VCS, and exported as a single patch instead of more manageable
+atomic patches.
+
+--- notmuch-0.31.1.orig/devel/release-checks.sh
++++ notmuch-0.31.1/devel/release-checks.sh
+@@ -29,7 +29,7 @@ append_emsg ()
+ 	emsgs="${emsgs:+$emsgs\n}  $1"
+ }
+ 
+-for f in ./version debian/changelog NEWS "$PV_FILE"
++for f in ./version.txt debian/changelog NEWS "$PV_FILE"
+ do
+ 	if   [ ! -f "$f" ]; then append_emsg "File '$f' is missing"
+ 	elif [ ! -r "$f" ]; then append_emsg "File '$f' is unreadable"
+@@ -53,7 +53,7 @@ then
+ else
+ 	echo "Reading './version' file failed (surprisingly!)"
+ 	exit 1
+-fi < ./version
++fi < ./version.txt
+ 
+ readonly VERSION
+ 
+@@ -109,7 +109,7 @@ else
+ fi
+ 
+ echo -n "Checking that python bindings version is $VERSION... "
+-py_version=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
++py_version=`python3 -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
+ if [ "$py_version" = "$VERSION" ]
+ then
+ 	echo Yes.
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 00000000..7bb82529
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+debian-changes


glossary
--------
Commit objects reference one tree, and zero or more parents.

Single parent commits can typically generate a patch in
unified diff format via `git format-patch'.

Multiple parents means the commit is a merge.

Root commits have no ancestor.  Note that it is
possible to have multiple root commits when merging independent histories.

Every commit references one top-level tree object.

git clone https://yhetil.org/notmuch.git