Package: guix-patches;
Reported by: Hilton Chain <hako <at> ultrarare.space>
Date: Sun, 19 Feb 2023 07:52:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
View this message in rfc822 format
From: help-debbugs <at> gnu.org (GNU bug Tracking System) To: Ludovic Courtès <ludo <at> gnu.org> Cc: tracker <at> debbugs.gnu.org Subject: bug#61614: closed ([PATCH] gnu: hyfetch: Update to 1.4.7.) Date: Mon, 27 Feb 2023 22:29:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Mon, 27 Feb 2023 23:28:33 +0100 with message-id <87sfeqg2um.fsf <at> gnu.org> and subject line Re: bug#61614: [PATCH] gnu: hyfetch: Update to 1.4.7. has caused the debbugs.gnu.org bug report #61614, regarding [PATCH] gnu: hyfetch: Update to 1.4.7. to be marked as done. (If you believe you have received this mail in error, please contact help-debbugs <at> gnu.org.) -- 61614: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=61614 GNU Bug Tracking System Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Hilton Chain <hako <at> ultrarare.space> To: guix-patches <at> gnu.org Subject: [PATCH] gnu: hyfetch: Update to 1.4.7. Date: Sun, 19 Feb 2023 15:51:30 +0800* gnu/packages/admin.scm (hyfetch): Update to 1.4.7. * gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch, * gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch: Remove files. * gnu/local.mk (dist_patch_DATA): Remove them. --- gnu/local.mk | 2 - gnu/packages/admin.scm | 9 +- ...-generator-script-quotation-escaping.patch | 115 ------------------ .../hyfetch-remove-old-catchy-os-py.patch | 48 -------- 4 files changed, 2 insertions(+), 172 deletions(-) delete mode 100644 gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch delete mode 100644 gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch diff --git a/gnu/local.mk b/gnu/local.mk index f3d8dfcac6..5da09a8e79 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1325,8 +1325,6 @@ dist_patch_DATA = \ %D%/packages/patches/hurd-cross.patch \ %D%/packages/patches/hurd-xattr.patch \ %D%/packages/patches/hwloc-1-test-btrfs.patch \ - %D%/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch \ - %D%/packages/patches/hyfetch-remove-old-catchy-os-py.patch \ %D%/packages/patches/i7z-gcc-10.patch \ %D%/packages/patches/icecat-makeicecat.patch \ %D%/packages/patches/icecat-avoid-bundled-libraries.patch \ diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index b79621e279..9bd00d45e3 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -3915,7 +3915,7 @@ (define-public neofetch (define-public hyfetch (package (name "hyfetch") - (version "1.4.6") + (version "1.4.7") (source (origin (method git-fetch) @@ -3923,14 +3923,9 @@ (define-public hyfetch (url "https://github.com/hykilpikonna/hyfetch") (commit version))) (file-name (git-file-name name version)) - (patches - (search-patches - ;; XXX: Cherry-picked from upstream, remove when updating. - "hyfetch-fix-generator-script-quotation-escaping.patch" - "hyfetch-remove-old-catchy-os-py.patch")) (sha256 (base32 - "1cnjvkil40bipia8gvs32q0lbqyi5j0nrsr7k4s0c55rh5bhkc3d")))) + "1w0wzai73rr7iliii77f15ck5ki03xcvrhgzbp72nn7xcpix9wqd")))) (build-system python-build-system) (inputs (list python-typing-extensions)) (home-page "https://github.com/hykilpikonna/HyFetch") diff --git a/gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch b/gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch deleted file mode 100644 index dc09864707..0000000000 --- a/gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch +++ /dev/null @@ -1,115 +0,0 @@ -From db69285ec161452c11ae490266e84211bec38c0d Mon Sep 17 00:00:00 2001 -From: Azalea Gui <me <at> hydev.org> -Date: Fri, 10 Feb 2023 23:05:23 -0500 -Subject: [PATCH] [F] Fix generator script quotation escaping #91 #90 - ---- - hyfetch/distros/debian.py | 4 ++-- - hyfetch/distros/haiku.py | 2 +- - hyfetch/distros/puffos.py | 2 +- - hyfetch/distros/skiffos.py | 2 +- - hyfetch/distros/trisquel.py | 4 ++-- - tools/list_distros.py | 4 +++- - 6 files changed, 10 insertions(+), 8 deletions(-) - -diff --git a/hyfetch/distros/debian.py b/hyfetch/distros/debian.py -index 8aab161d..7b4a2a9c 100644 ---- a/hyfetch/distros/debian.py -+++ b/hyfetch/distros/debian.py -@@ -4,7 +4,7 @@ from . import AsciiArt - debian = AsciiArt(match=r'''"Debian"*''', color='1 7 3', ascii=r""" - ${c2} _,met$$$$$gg. - ,g$$$$$$$$$$$$$$$P. -- ,g$$P" \"""Y$$.". -+ ,g$$P" "\""Y$$.". - ,$$P' `$$$. - ',$$P ,ggs. `$$b: - `d$$' ,$P"' ${c1}.${c2} $$$ -@@ -18,6 +18,6 @@ ${c2} `Y$$ - `$$b. - `Y$$b. - `"Y$b._ -- `\""" -+ `"\"" - """) - -\ No newline at end of file -diff --git a/hyfetch/distros/haiku.py b/hyfetch/distros/haiku.py -index cf10cfc5..198cd142 100644 ---- a/hyfetch/distros/haiku.py -+++ b/hyfetch/distros/haiku.py -@@ -15,6 +15,6 @@ ${c3} MMMM${c4} .cOMMMMM|/MMMMM/` - MM${c4}MMMMMMM/`:MMM/ ${c3}MMMM - MMMM MMMM - MMMM MMMM -- \"""" \"""" -+ "\"\"" "\"\"" - """) - -\ No newline at end of file -diff --git a/hyfetch/distros/puffos.py b/hyfetch/distros/puffos.py -index 789d3994..0e61def4 100644 ---- a/hyfetch/distros/puffos.py -+++ b/hyfetch/distros/puffos.py -@@ -7,7 +7,7 @@ ${c1} - ,/' '""; - / ". - ,'mmmMMMMmm. \ -- _/-"^^^^^\"""%#%mm, ; -+ _/-"^^^^^"\""%#%mm, ; - ,m,_,' "###) ;, - (###% \#/ ;##mm. - ^#/ __ ___ ; (######) -diff --git a/hyfetch/distros/skiffos.py b/hyfetch/distros/skiffos.py -index 49d311c0..93a846a7 100644 ---- a/hyfetch/distros/skiffos.py -+++ b/hyfetch/distros/skiffos.py -@@ -11,6 +11,6 @@ ${c2} - ${c2}*@@@@@@@@@@@@@@@@@@@@@@@@@p${c1}||||==, - ${c1}`'||LLL{{""${c2}@$B@@@@@@@@@@@@@@@p${c1}|| - ${c1}`~=|||||||||||L"${c2}$@@@@@@@@@@@ -- ${c1}````'\"""\""""${c2}'\"""\""""" -+ ${c1}````'"\"\""\"\""${c2}'"\"\""\"\"\"" - """) - -\ No newline at end of file -diff --git a/hyfetch/distros/trisquel.py b/hyfetch/distros/trisquel.py -index c92a5938..b15eb1f4 100644 ---- a/hyfetch/distros/trisquel.py -+++ b/hyfetch/distros/trisquel.py -@@ -3,7 +3,7 @@ from . import AsciiArt - - trisquel = AsciiArt(match=r'''"Trisquel"*''', color='4 6', ascii=r""" - ${c1} ,o$$$o. -- ,o$$Y\"""Y$$b -+ ,o$$Y"\""Y$$b - ,o$$$$$$o. ,$$' , Y$$b - ,o$$$$$$$$$$$$o. :$ b Y$$. - ,$$"' "Y$$$$o. 'b. ,b d$$$ -@@ -11,7 +11,7 @@ $$' .d$$$$b '$$$$o 'Y$$$Y d$$$' - $$' q' 'b '$$$$$o._ _.o$$$$' - .$$,_ _,d$ ,$$$$$$$$$$$$${c2}$$$$Y' - ${c1} '$$$$aaa$$$' .$$$$$$${c2}$$$$$$$$' --${c1} \"""" ${c2}d$$$$"' -+${c1} "\"\"" ${c2}d$$$$"' - d$$$' .d$$b. - $$$$ .$" 'a$. - $$$$ $b $$. -diff --git a/tools/list_distros.py b/tools/list_distros.py -index d781b581..63fb5288 100755 ---- a/tools/list_distros.py -+++ b/tools/list_distros.py -@@ -140,7 +140,9 @@ def export_distro(d: AsciiArt) -> str: - varname = varname.replace(s, '_') - - # Escape/unescape ascii -- ascii = d.ascii.replace('"""', '\\"""').replace("\\\\", "\\") -+ ascii = d.ascii.replace("\\\\", "\\") -+ while '"""' in ascii: -+ ascii = ascii.replace('"""', '"\\""') - - script = f""" - from . import AsciiArt --- -2.39.1 - diff --git a/gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch b/gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch deleted file mode 100644 index 253730ce22..0000000000 --- a/gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch +++ /dev/null @@ -1,48 +0,0 @@ -From be475f02112e75a7ff72a594f75eb63b0a5ac29b Mon Sep 17 00:00:00 2001 -From: Azalea Gui <me <at> hydev.org> -Date: Fri, 10 Feb 2023 23:25:16 -0500 -Subject: [PATCH] [-] Remove old catchy_os.py (Fixes #92) - ---- - hyfetch/distros/cachy_os.py | 28 ---------------------------- - 1 file changed, 28 deletions(-) - delete mode 100644 hyfetch/distros/cachy_os.py - -diff --git a/hyfetch/distros/cachy_os.py b/hyfetch/distros/cachy_os.py -deleted file mode 100644 -index 75df6106..00000000 ---- a/hyfetch/distros/cachy_os.py -+++ /dev/null -@@ -1,28 +0,0 @@ -- --from hyfetch.distro import AsciiArt -- --cachy_os = AsciiArt(match=r'''"Cachy OS"*''', color='2 8 6', ascii=r""" --${c3} ${c2}.${c3}-------------------------: --${c3} .${c1}+=${c3}========================. --${c3} :${c1}++${c3}===${c1}++===${c3}===============- :${c1}++${c3}- --${c3} :${c1}*++${c3}====${c1}+++++==${c3}===========- .==: --${c3} -${c1}*+++${c3}=====${c1}+***++=${c3}=========: --${c3} =${c1}*++++=${c3}=======------------: --${c3} =${c1}*+++++=${c3}====- ${c2}...${c3} --${c3} .${c1}+*+++++${c3}=-===: .${c1}=+++=${c3}: --${c3} :${c1}++++${c3}=====-==: -***${c1}**${c3}+ --${c3} :${c1}++=${c3}=======-=. .=+**+${c2}.${c3} --${c3}.${c1}+${c3}==========-. ${c2}.${c3} --${c3} :${c1}+++++++${c3}====- ${c2}.${c3}--==-${c2}.${c3} --${c3} :${c1}++${c3}==========. ${c2}:${c1}+++++++${c3}${c2}: --${c3} .-===========. =*****+*+ --${c3} .-===========: .+*****+: --${c3} -=======${c1}++++${c3}:::::::::::::::::::::::::-: ${c2}.${c3}---: --${c3} :======${c1}++++${c3}====${c1}+++******************=. --${c3} :=====${c1}+++${c3}==========${c1}++++++++++++++*- --${c3} .====${c1}++${c3}==============${c1}++++++++++*- --${c3} .===${c1}+${c3}==================${c1}+++++++: --${c3} .-=======================${c1}+++: --${c3} ${c2}.......................... --""") -- -\ No newline at end of file --- -2.39.1 - base-commit: 877df1765ad8440c81293f4943d1f4f44485ba0f -- 2.39.1
[Message part 3 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org> To: Hilton Chain <hako <at> ultrarare.space> Cc: 61614-done <at> debbugs.gnu.org Subject: Re: bug#61614: [PATCH] gnu: hyfetch: Update to 1.4.7. Date: Mon, 27 Feb 2023 23:28:33 +0100Hilton Chain <hako <at> ultrarare.space> skribis: > * gnu/packages/admin.scm (hyfetch): Update to 1.4.7. > * gnu/packages/patches/hyfetch-fix-generator-script-quotation-escaping.patch, > * gnu/packages/patches/hyfetch-remove-old-catchy-os-py.patch: Remove files. > * gnu/local.mk (dist_patch_DATA): Remove them. Applied, thanks!
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.