asciidoc: update to 10.2.0

This commit is contained in:
مهدي شينون (Mehdi Chinoune)
2022-12-02 09:53:37 +01:00
committed by GitHub
parent 6c1b47cc35
commit e63f88b1a7
2 changed files with 9 additions and 39 deletions

View File

@@ -1,15 +0,0 @@
--- asciidoc-8.6.7/asciidoc.py.orig 2012-03-14 03:07:34 +0400
+++ asciidoc-8.6.7/asciidoc.py 2012-03-27 18:16:41 +0400
@@ -4556,6 +4556,12 @@
APP_FILE = os.path.realpath(cmd)
global APP_DIR
APP_DIR = os.path.dirname(APP_FILE)
+ global CONF_DIR
+ if not os.path.isdir (CONF_DIR) and os.name == 'nt':
+ app_dir_real = os.path.realpath (APP_DIR)
+ app_prefix, app_last_dir = os.path.split (app_dir_real)
+ if len (app_prefix) > 0 and app_last_dir == 'bin':
+ CONF_DIR = os.path.join (app_prefix, 'etc', 'asciidoc')
global USER_DIR
USER_DIR = userdir()
if USER_DIR is not None:

View File

@@ -1,13 +1,14 @@
# Maintainer: Alexey Pavlov <alexpux@gmail.com>
pkgname=asciidoc
pkgver=9.1.1
pkgrel=2
pkgver=10.2.0
pkgrel=1
pkgdesc='Text document format for short documents, articles, books and UNIX man pages.'
arch=('any')
url='https://asciidoc.org/'
license=('GPL')
depends=('python' 'libxslt' 'docbook-xsl' 'autotools')
depends=('python' 'libxslt' 'docbook-xsl')
makedepends=('python-setuptools' 'gcc')
# optdepends=('lilypond: music-filter'
# 'imagemagick: music-filter (used in conjunction with lilypond)'
# 'source-highlight: source-highlight-filter'
@@ -15,35 +16,19 @@ depends=('python' 'libxslt' 'docbook-xsl' 'autotools')
# 'fop: alternative pdf generation'
# 'lynx: text generation'
# 'w3m: text generation (alternative to lynx)')
source=("https://github.com/asciidoc/asciidoc-py3/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz"
0001-W32-confdir.msys2.patch)
sha256sums=('ea39760ac2739496c14002902571592dc2ae2fa673296ec141a9e491d9c11fca'
'71f44b513f627b133afead38576fcb8a5460d0514174a4ce219c6ea761d8b40c')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -p1 -i ${srcdir}/0001-W32-confdir.msys2.patch
}
source=("https://github.com/asciidoc-py/asciidoc-py/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
sha256sums=('237b2ba5c35c0ae7ccd4cd44ebf1d87c20b2695dae01798954416d492ef7fa0e')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
autoreconf -fi
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
/usr/bin/python setup.py build
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make install DESTDIR=${pkgdir}
/usr/bin/python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
local _pyver=$(/usr/bin/python -c "import sys;sys.stdout.write('.'.join(map(str, sys.version_info[:2])))")
install -Dm644 asciidocapi.py \
${pkgdir}/usr/lib/python${_pyver}/site-packages/asciidocapi.py
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/asciidoc/LICENSE"
}