Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] terminal_markdown_viewer: remove package
@ 2022-02-25 16:51 TinfoilSubmarine
  2022-02-25 16:57 ` [PR PATCH] [Merged]: " ahesford
  0 siblings, 1 reply; 2+ messages in thread
From: TinfoilSubmarine @ 2022-02-25 16:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1308 bytes --]

There is a new pull request by TinfoilSubmarine against master on the void-packages repository

https://github.com/TinfoilSubmarine/void-packages terminal_markdown_viewer
https://github.com/void-linux/void-packages/pull/35842

terminal_markdown_viewer: remove package
Does not support Python >=3.9, no releases since 2016.
https://github.com/axiros/terminal_markdown_viewer/issues/86

<!-- Uncomment relevant sections and delete options which are not applicable -->

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/35842.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-terminal_markdown_viewer-35842.patch --]
[-- Type: text/x-diff, Size: 2811 bytes --]

From 3d5ec14501a1ff17dd975a52a1514f9850c26909 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 25 Feb 2022 11:47:41 -0500
Subject: [PATCH] terminal_markdown_viewer: remove package

Does not support Python >=3.9, no releases since 2016.
https://github.com/axiros/terminal_markdown_viewer/issues/86
---
 srcpkgs/removed-packages/template             |  1 +
 .../patches/unichr.patch                      | 22 -------------------
 srcpkgs/terminal_markdown_viewer/template     | 18 ---------------
 3 files changed, 1 insertion(+), 40 deletions(-)
 delete mode 100644 srcpkgs/terminal_markdown_viewer/patches/unichr.patch
 delete mode 100644 srcpkgs/terminal_markdown_viewer/template

diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template
index 2f2c9c4fe497..81b43de4f622 100644
--- a/srcpkgs/removed-packages/template
+++ b/srcpkgs/removed-packages/template
@@ -340,6 +340,7 @@ replaces="
  srw<=0.7_1
  tagainijisho<=1.0.3_1
  taizen<=0.0.0.20180808_4
+ terminal_markdown_viewer<=1.6.3_4
  tlsdate<=0.0.13_16
  traverso<=0.49.6_2
  ttyload-git<=20141117_4
diff --git a/srcpkgs/terminal_markdown_viewer/patches/unichr.patch b/srcpkgs/terminal_markdown_viewer/patches/unichr.patch
deleted file mode 100644
index 235e44e12901..000000000000
--- a/srcpkgs/terminal_markdown_viewer/patches/unichr.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- a/mdv/markdownviewer.py
-+++ b/mdv/markdownviewer.py
-@@ -129,6 +129,9 @@
- import io
- import os
- import sys
-+
-+PY3 = True if sys.version_info[0] > 2 else False
-+
- import textwrap
- is_app = 0
- # code analysis for hilite:
-@@ -158,6 +161,9 @@
-     from HTMLParser import HTMLParser
- envget = os.environ.get
- 
-+if PY3:
-+    unichr = chr
-+
- # ---------------------------------------------------------------------- Config
- hr_sep, txt_block_cut, code_pref, list_pref, bquote_pref, hr_ends = \
-     '─', '✂', '| ', '- ', '|', '◈'
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
deleted file mode 100644
index cf6dc4cbaa6c..000000000000
--- a/srcpkgs/terminal_markdown_viewer/template
+++ /dev/null
@@ -1,18 +0,0 @@
-# Template file for 'terminal_markdown_viewer'
-pkgname=terminal_markdown_viewer
-version=1.6.3
-revision=4
-build_style=python3-module
-pycompile_module="mdv"
-hostmakedepends="python3-setuptools"
-depends="python3-docopt python3-Markdown python3-Pygments python3-tabulate python3-yaml"
-short_desc="Styled Terminal Markdown Viewer"
-maintainer="Andrew Benson <abenson@gmail.com>"
-license="BSD-3-Clause"
-homepage="https://github.com/axiros/terminal_markdown_viewer"
-distfiles="${homepage}/archive/${version}.tar.gz"
-checksum=58dbdf8c051a2d7f8c00e4dc13c655c335cbc2bc96851dd0388d73a21c4507b6
-
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Merged]: terminal_markdown_viewer: remove package
  2022-02-25 16:51 [PR PATCH] terminal_markdown_viewer: remove package TinfoilSubmarine
@ 2022-02-25 16:57 ` ahesford
  0 siblings, 0 replies; 2+ messages in thread
From: ahesford @ 2022-02-25 16:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1122 bytes --]

There's a merged pull request on the void-packages repository

terminal_markdown_viewer: remove package
https://github.com/void-linux/void-packages/pull/35842

Description:
Does not support Python >=3.9, no releases since 2016.
https://github.com/axiros/terminal_markdown_viewer/issues/86

<!-- Uncomment relevant sections and delete options which are not applicable -->

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-25 16:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-25 16:51 [PR PATCH] terminal_markdown_viewer: remove package TinfoilSubmarine
2022-02-25 16:57 ` [PR PATCH] [Merged]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).