summaryrefslogtreecommitdiff
path: root/debian/patches/0004-5127-fails-on-mips.patch
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@debian.org>2019-02-05 10:39:11 -0500
committerGravatar Benjamin Barenblat <bbaren@debian.org>2019-02-05 10:39:11 -0500
commit6786da162521427921379f05d064c7e47fc2a825 (patch)
treeb925e1cee982d6ddd3bdc5f369f602ee62b0e0bb /debian/patches/0004-5127-fails-on-mips.patch
parent4fd27468890065a9d529d0c58ceb6f4c19ce1f03 (diff)
Stop numbering patches
Keeping patches sequentially numbered produces a messy Git history with many renames for compaction. It’s also redundant with the series file.
Diffstat (limited to 'debian/patches/0004-5127-fails-on-mips.patch')
-rw-r--r--debian/patches/0004-5127-fails-on-mips.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/patches/0004-5127-fails-on-mips.patch b/debian/patches/0004-5127-fails-on-mips.patch
deleted file mode 100644
index 949c33a7..00000000
--- a/debian/patches/0004-5127-fails-on-mips.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: Enrico Tassi <gareuselesinge@debian.org>
-Date: Thu, 29 Dec 2016 08:56:45 +0100
-Subject: 5127 fails on mips
-
----
- test-suite/bugs/closed/5127.v | 15 ---------------
- 1 file changed, 15 deletions(-)
- delete mode 100644 test-suite/bugs/closed/5127.v
-
-diff --git a/test-suite/bugs/closed/5127.v b/test-suite/bugs/closed/5127.v
-deleted file mode 100644
-index 831e8fb..0000000
---- a/test-suite/bugs/closed/5127.v
-+++ /dev/null
-@@ -1,15 +0,0 @@
--Fixpoint arrow (n: nat) :=
-- match n with
-- | S n => bool -> arrow n
-- | O => bool
-- end.
--
--Fixpoint apply (n : nat) : arrow n -> bool :=
-- match n return arrow n -> bool with
-- | S n => fun f => apply _ (f true)
-- | O => fun x => x
-- end.
--
--Axiom f : arrow 10000.
--Definition v : bool := Eval compute in apply _ f.
--Definition w : bool := Eval vm_compute in v.