Browse Source
subrepo: subdir: "docbook-utils" merged: "1061e4c" upstream: origin: "gitea@gitea.artixlinux.org:packagesD/docbook-utils.git" branch: "master" commit: "1061e4c" git-subrepo: version: "0.4.0" origin: "???" commit: "???"master
9 changed files with 213 additions and 0 deletions
@ -0,0 +1,5 @@
|
||||
%YAML 1.2 |
||||
--- |
||||
|
||||
label: master |
||||
|
@ -0,0 +1,33 @@
|
||||
# ---> ArchLinuxPackages |
||||
*.tar |
||||
*.tar.* |
||||
*.jar |
||||
*.exe |
||||
*.msi |
||||
*.zip |
||||
*.tgz |
||||
*.log |
||||
*.log.* |
||||
*.sig |
||||
|
||||
pkg/ |
||||
src/ |
||||
|
||||
|
||||
# ---> Archives |
||||
*.7z |
||||
*.rar |
||||
*.gz |
||||
*.bzip |
||||
*.bz2 |
||||
*.xz |
||||
*.lzma |
||||
*.cab |
||||
|
||||
# ---> systemd |
||||
*.service |
||||
*.socket |
||||
*.timer |
||||
|
||||
# ---> snap |
||||
*.snap |
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing) |
||||
; |
||||
; This subdirectory is a git "subrepo", and this file is maintained by the |
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme |
||||
; |
||||
[subrepo] |
||||
remote = gitea@gitea.artixlinux.org:packagesD/docbook-utils.git |
||||
branch = master |
||||
commit = 1061e4c4081b7583ea0bd0f294a5967880f9bac4 |
||||
parent = b69a1d6c549804c3466e7a72957c227333eee01d |
||||
method = merge |
||||
cmdver = 0.4.0 |
@ -0,0 +1,3 @@
|
||||
@Library('artix-ci') import org.artixlinux.RepoPackage |
||||
|
||||
PackagePipeline(new RepoPackage(this)) |
@ -0,0 +1,46 @@
|
||||
# Maintainer: Andreas Radke <andyrtr@archlinux.org> |
||||
|
||||
# Contributor: Chris Severance aur.severach aATt spamgourmet dott com |
||||
# Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net> |
||||
# Contributor: Suat SARIALP <muhendis.suat@gmail.com> |
||||
|
||||
pkgname=docbook-utils |
||||
pkgver=0.6.14 |
||||
pkgrel=9 |
||||
pkgdesc='Shell scripts to manage DocBook documents' |
||||
arch=('any') |
||||
url="https://www.sourceware.org/docbook-tools/" |
||||
license=('GPL2') |
||||
depends=('openjade' 'docbook-dsssl' 'docbook-sgml31') |
||||
makedepends=('perl-sgmls') |
||||
optdepends=('perl-sgmls: for conversion to man and texinfo' |
||||
'lynx: for conversion to txt' |
||||
'texlive-htmlxml: for conversion to pdf') |
||||
conflicts=('docbook2x') |
||||
source=(ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/${pkgname}-${pkgver}.tar.gz |
||||
docbook-utils-0.6.14-grep_fix-1.patch) |
||||
sha256sums=('48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9' |
||||
'ddf0ddca0a540fd4f34f38b7b9090f96746e37da12b4e2bf8f4174c5ad61f54a') |
||||
|
||||
prepare() { |
||||
cd "${pkgname}-${pkgver}" |
||||
patch -Np1 -i ${srcdir}/docbook-utils-0.6.14-grep_fix-1.patch |
||||
} |
||||
|
||||
build() { |
||||
cd "${pkgname}-${pkgver}" |
||||
./configure --prefix=/usr \ |
||||
--sysconfdir=/etc \ |
||||
--mandir=/usr/share/man |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd "${pkgname}-${pkgver}" |
||||
make install DESTDIR="${pkgdir}" htmldir="/usr/share/doc/${pkgname}/html" |
||||
|
||||
#common alternative names |
||||
for doctype in 'html' 'ps' 'dvi' 'man' 'pdf' 'rtf' 'tex' 'texi' 'txt'; do |
||||
ln -svf "docbook2${doctype}" "${pkgdir}/usr/bin/db2${doctype}" |
||||
done |
||||
} |
@ -0,0 +1,33 @@
|
||||
Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
|
||||
Date: 2011-01-01
|
||||
Initial Package Version: 0.6.14
|
||||
Upstream Status: unknown
|
||||
Origin: fedora
|
||||
Description: Grep-2.7 errors out on the 'space' syntax, causing
|
||||
docbook2html to fail. Fixed up by hand (the fedora version depends
|
||||
on a different patch which adds --color=never).
|
||||
|
||||
diff -Naur docbook-utils-0.6.14.orig/bin/jw.in docbook-utils-0.6.14//bin/jw.in
|
||||
--- docbook-utils-0.6.14.orig/bin/jw.in 2003-04-30 17:21:49.000000000 +0100
|
||||
+++ docbook-utils-0.6.14//bin/jw.in 2011-01-01 18:43:21.558959786 +0000
|
||||
@@ -80,9 +80,9 @@
|
||||
SGML_CATALOGS_DIR="/etc/sgml"
|
||||
if [ -f "$SGML_CONF" ]
|
||||
then
|
||||
- RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
- RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
fi
|
||||
|
||||
@@ -312,7 +312,7 @@
|
||||
SGML_CATALOG_FILES=$SGML_CENTRALIZED_CATALOG
|
||||
else
|
||||
SGML_CATALOG_FILES=`find $SGML_BASE_DIR -name catalog`
|
||||
- SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [:space:] :`
|
||||
+ SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [[:space:]] :`
|
||||
fi
|
||||
;;
|
||||
no) SGML_CATALOG_FILES=""
|
@ -0,0 +1,46 @@
|
||||
# Maintainer: Andreas Radke <andyrtr@archlinux.org> |
||||
|
||||
# Contributor: Chris Severance aur.severach aATt spamgourmet dott com |
||||
# Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net> |
||||
# Contributor: Suat SARIALP <muhendis.suat@gmail.com> |
||||
|
||||
pkgname=docbook-utils |
||||
pkgver=0.6.14 |
||||
pkgrel=9 |
||||
pkgdesc='Shell scripts to manage DocBook documents' |
||||
arch=('any') |
||||
url="https://www.sourceware.org/docbook-tools/" |
||||
license=('GPL2') |
||||
depends=('openjade' 'docbook-dsssl' 'docbook-sgml31') |
||||
makedepends=('perl-sgmls') |
||||
optdepends=('perl-sgmls: for conversion to man and texinfo' |
||||
'lynx: for conversion to txt' |
||||
'texlive-htmlxml: for conversion to pdf') |
||||
conflicts=('docbook2x') |
||||
source=(ftp://sources.redhat.com/pub/docbook-tools/new-trials/SOURCES/${pkgname}-${pkgver}.tar.gz |
||||
docbook-utils-0.6.14-grep_fix-1.patch) |
||||
sha256sums=('48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df2e92e9' |
||||
'ddf0ddca0a540fd4f34f38b7b9090f96746e37da12b4e2bf8f4174c5ad61f54a') |
||||
|
||||
prepare() { |
||||
cd "${pkgname}-${pkgver}" |
||||
patch -Np1 -i ${srcdir}/docbook-utils-0.6.14-grep_fix-1.patch |
||||
} |
||||
|
||||
build() { |
||||
cd "${pkgname}-${pkgver}" |
||||
./configure --prefix=/usr \ |
||||
--sysconfdir=/etc \ |
||||
--mandir=/usr/share/man |
||||
make |
||||
} |
||||
|
||||
package() { |
||||
cd "${pkgname}-${pkgver}" |
||||
make install DESTDIR="${pkgdir}" htmldir="/usr/share/doc/${pkgname}/html" |
||||
|
||||
#common alternative names |
||||
for doctype in 'html' 'ps' 'dvi' 'man' 'pdf' 'rtf' 'tex' 'texi' 'txt'; do |
||||
ln -svf "docbook2${doctype}" "${pkgdir}/usr/bin/db2${doctype}" |
||||
done |
||||
} |
@ -0,0 +1,33 @@
|
||||
Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
|
||||
Date: 2011-01-01
|
||||
Initial Package Version: 0.6.14
|
||||
Upstream Status: unknown
|
||||
Origin: fedora
|
||||
Description: Grep-2.7 errors out on the 'space' syntax, causing
|
||||
docbook2html to fail. Fixed up by hand (the fedora version depends
|
||||
on a different patch which adds --color=never).
|
||||
|
||||
diff -Naur docbook-utils-0.6.14.orig/bin/jw.in docbook-utils-0.6.14//bin/jw.in
|
||||
--- docbook-utils-0.6.14.orig/bin/jw.in 2003-04-30 17:21:49.000000000 +0100
|
||||
+++ docbook-utils-0.6.14//bin/jw.in 2011-01-01 18:43:21.558959786 +0000
|
||||
@@ -80,9 +80,9 @@
|
||||
SGML_CATALOGS_DIR="/etc/sgml"
|
||||
if [ -f "$SGML_CONF" ]
|
||||
then
|
||||
- RE='^[:space:]*SGML_BASE_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_BASE_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_BASE_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
- RE='^[:space:]*SGML_CATALOGS_DIR[:space:]*=[:space:]*'
|
||||
+ RE='^[[:space:]]*SGML_CATALOGS_DIR[[:space:]]*=[[:space:]]*'
|
||||
SGML_CATALOGS_DIR=`grep $RE $SGML_CONF | sed "s/$RE//"`
|
||||
fi
|
||||
|
||||
@@ -312,7 +312,7 @@
|
||||
SGML_CATALOG_FILES=$SGML_CENTRALIZED_CATALOG
|
||||
else
|
||||
SGML_CATALOG_FILES=`find $SGML_BASE_DIR -name catalog`
|
||||
- SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [:space:] :`
|
||||
+ SGML_CATALOG_FILES=`echo "$SGML_CATALOG_FILES" | tr [[:space:]] :`
|
||||
fi
|
||||
;;
|
||||
no) SGML_CATALOG_FILES=""
|
Loading…
Reference in new issue