Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/community/exa/exa-ascii-deprecated.patch
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-06-30 18:43:30 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-06-30 18:43:30 +0200
commitb02a04bc6caff7c08251092c44cf5483912c7ad1 (patch)
tree001b34a1e27e8bc2a5466e4a279c49f09a3cb588 /community/exa/exa-ascii-deprecated.patch
parent2e3a761d188938b1e2d16b9ba9ff1eac908fe346 (diff)
community/exa: removed local patching, added workarounds for rust and pandoc
Diffstat (limited to 'community/exa/exa-ascii-deprecated.patch')
-rw-r--r--community/exa/exa-ascii-deprecated.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/community/exa/exa-ascii-deprecated.patch b/community/exa/exa-ascii-deprecated.patch
deleted file mode 100644
index e4cddd6a..00000000
--- a/community/exa/exa-ascii-deprecated.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rauN exa/src/fs/file.rs exa-ascii-deprecated-patch/src/fs/file.rs
---- exa/src/fs/file.rs 2018-12-09 12:48:21.137587385 +0100
-+++ exa-ascii-deprecated-patch/src/fs/file.rs 2018-12-09 12:59:07.048431583 +0100
-@@ -95,8 +95,6 @@
- /// against a pre-compiled list of extensions which are known to only exist
- /// within ASCII, so it’s alright.
- fn ext(path: &Path) -> Option<String> {
-- use std::ascii::AsciiExt;
--
- let name = match path.file_name() {
- Some(f) => f.to_string_lossy().to_string(),
- None => return None,