summaryrefslogtreecommitdiff
path: root/dev-python/pyfiglet/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/pyfiglet/files
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-python/pyfiglet/files')
-rw-r--r--dev-python/pyfiglet/files/pyfiglet-1.0.2-fix-test.patch70
1 files changed, 0 insertions, 70 deletions
diff --git a/dev-python/pyfiglet/files/pyfiglet-1.0.2-fix-test.patch b/dev-python/pyfiglet/files/pyfiglet-1.0.2-fix-test.patch
deleted file mode 100644
index a1b97bed1413..000000000000
--- a/dev-python/pyfiglet/files/pyfiglet-1.0.2-fix-test.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-https://github.com/pwaller/pyfiglet/commit/b5bb37142ce49ac5376b7f89a0b5508962c6672e
-From: Lyes Saadi <dev@lyes.eu>
-Date: Wed, 27 Dec 2023 20:18:32 +0100
-Subject: [PATCH] Use slant instead of doh to use only fonts-contrib
-
---- a/pyfiglet/tests/test_cli.py
-+++ b/pyfiglet/tests/test_cli.py
-@@ -11,24 +11,13 @@ def test_font_dir():
-
-
- def test_strip():
-- command = "pyfiglet -f doh -s 0"
-+ command = "pyfiglet -f slant -s 0"
- expected = '''\
-- 000000000
-- 00:::::::::00
-- 00:::::::::::::00
--0:::::::000:::::::0
--0::::::0 0::::::0
--0:::::0 0:::::0
--0:::::0 0:::::0
--0:::::0 000 0:::::0
--0:::::0 000 0:::::0
--0:::::0 0:::::0
--0:::::0 0:::::0
--0::::::0 0::::::0
--0:::::::000:::::::0
-- 00:::::::::::::00
-- 00:::::::::00
-- 000000000
-+ ____
-+ / __ \\
-+ / / / /
-+/ /_/ /
-+\\____/
- '''
- result = subprocess.run(command, shell=True, stdout=subprocess.PIPE)
- assert result.stdout.decode() == expected
-@@ -58,25 +47,14 @@ def test_strip_strange_font(test_font_dir):
-
- # normalize is just strip with padding
- def test_normalize():
-- command = "pyfiglet -f doh -n 0"
-+ command = "pyfiglet -f slant -n 0"
- expected = '''\
-
-- 000000000
-- 00:::::::::00
-- 00:::::::::::::00
--0:::::::000:::::::0
--0::::::0 0::::::0
--0:::::0 0:::::0
--0:::::0 0:::::0
--0:::::0 000 0:::::0
--0:::::0 000 0:::::0
--0:::::0 0:::::0
--0:::::0 0:::::0
--0::::::0 0::::::0
--0:::::::000:::::::0
-- 00:::::::::::::00
-- 00:::::::::00
-- 000000000
-+ ____
-+ / __ \\
-+ / / / /
-+/ /_/ /
-+\\____/
-
- '''
- result = subprocess.run(command, shell=True, stdout=subprocess.PIPE)