-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libksba (1.6.6-1 -> 1.6.7-1) openssh (9.7p1-1 -> 9.8p1-1) perl-HTTP-Message (6.45-1 -> 6.46-1) perl-URI (5.21-1 -> 5.28-1) perl-libwww (6.72-1 -> 6.77-1) xmlto (0.0.28-4 -> 0.0.29-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
- Loading branch information
Git for Windows Build Agent
committed
Jul 2, 2024
1 parent
e4296fb
commit 8b41be9
Showing
200 changed files
with
1,207 additions
and
642 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/usr/bin/bash | ||
# | ||
# xmlto - apply an XSL stylesheet to an XML document | ||
# Copyright (C) 2001, 2002, 2003 Tim Waugh <[email protected]> | ||
|
@@ -17,16 +17,16 @@ | |
# along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
|
||
# Utilities that we need that aren't everywhere | ||
FIND=find # This must be GNU find (need -maxdepth) | ||
MKTEMP=mktemp # See http://www.mktemp.org if missing on your system | ||
BASH=/bin/sh # GNU bash, for running the format scripts | ||
GETOPT=getopt # a getopt that supports --longoptions | ||
TAIL=/usr/bin/tail # a tail that supports -n (posix) | ||
GREP=/usr/bin/grep # GNU grep, for searching patterns | ||
SED=/usr/bin/sed # GNU sed, for modification of patterns | ||
FIND=find # This must be GNU find (need -maxdepth) | ||
MKTEMP=mktemp # See http://www.mktemp.org if missing on your system | ||
BASH=/usr/bin/bash # GNU bash, for running the format scripts | ||
GETOPT=getopt # a getopt that supports --longoptions | ||
TAIL=/usr/bin/tail # a tail that supports -n (posix) | ||
GREP=/usr/bin/grep # GNU grep, for searching patterns | ||
SED=/usr/bin/sed # GNU sed, for modification of patterns | ||
|
||
version () { | ||
echo "xmlto version 0.0.28" | ||
echo "xmlto version 0.0.29" | ||
} | ||
|
||
usage () { | ||
|
@@ -272,13 +272,13 @@ then | |
USE_BACKEND=DEFAULT | ||
fi | ||
|
||
LINKS_PATH=elinks | ||
W3M_PATH=w3m | ||
LYNX_PATH=lynx | ||
GCP_PATH=/usr/bin/cp | ||
SED_PATH=/usr/bin/sed | ||
GREP_PATH=/usr/bin/grep | ||
ZIP_PATH=zip | ||
LINKS_PATH=$(command -v elinks || command -v links) | ||
W3M_PATH=$(command -v w3m) | ||
LYNX_PATH=$(command -v lynx) | ||
GCP_PATH=$(command -v cp) | ||
SED_PATH=$(command -v sed) | ||
GREP_PATH=$(command -v grep) | ||
ZIP_PATH=$(command -v zip) | ||
|
||
# Process any options | ||
ARGS=$(${GETOPT} \ | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.