app-emacs/mediawiki: drop old 2.2.9-r1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć 2025-07-30 19:03:09 +02:00
parent 2d51152308
commit d8da661d72
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
3 changed files with 0 additions and 46 deletions

View File

@ -1,2 +1 @@
DIST mediawiki-2.2.9.tar.gz 36595 BLAKE2B a044008115e545d043045e943762072981b5bcc7776e5f38480a2170168929989b990d90b225f3416a8ce9052d3a310bb77ac6ac1d273f112180ff2bddeb850c SHA512 7586558b953c3e2a41b792db55ba9b3520b07377a555c2dd38829c0be24f3388313dfaa049520c632d6fd3a471cb777ba662f723c56cd59c307b68faf9d8adb0
DIST mediawiki-2.3.1.tar.gz 36613 BLAKE2B d37ff59fd2685445cc30f8faf26f95eafbdae682acee68a8f4061d9d042ff2bd7cfa85fd1999e4ddc31e659605bc244d10b4d2477991015c09840809f936e357 SHA512 d2fe0c76e3d856131a3876a062a333e75d3d2c84c9e88865b1cf9516f8888ad81b4d90d9fc576fe14e051390c1504349c9f3b7cac71a34b8d59ed4824a434efd

View File

@ -1,25 +0,0 @@
Fix "(wrong-type-argument stringp default)" in url-compat-retrieve.
https://github.com/hexmode/mediawiki-el/issues/27
--- mediawiki-el-2.2.9-orig/mediawiki.el
+++ mediawiki-el-2.2.9/mediawiki.el
@@ -414,10 +414,15 @@
POST-PROCESS is the function to call for post-processing.
BUFFER is the buffer to store the result in. CALLBACK will be
called in BUFFER with CBARGS, if given."
- (let ((url-user-agent (concat (string-trim (if (functionp url-user-agent)
- (funcall url-user-agent)
- url-user-agent))
- " mediawiki.el " mediawiki-version "\r\n")))
+ (let ((url-user-agent
+ (if (eq url-user-agent 'default)
+ 'default
+ (concat (string-trim (if (functionp url-user-agent)
+ (funcall url-user-agent)
+ url-user-agent))
+ " mediawiki.el " mediawiki-version "\r\n")))
+ (url-package-name "mediawiki.el")
+ (url-package-version mediawiki-version))
(cond ((boundp 'url-be-asynchronous) ; Sniff w3 lib capability
(if callback
(setq url-be-asynchronous t)

View File

@ -1,20 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit elisp
MY_PN="${PN}-el"
DESCRIPTION="MediaWiki client for Emacs"
HOMEPAGE="https://github.com/hexmode/mediawiki-el"
SRC_URI="https://github.com/hexmode/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_PN}-${PV}"
ELISP_PATCHES="${P}-user-agent.patch"
SITEFILE="50${PN}-gentoo-${PV}.el"
DOCS="README.mediawiki"