Commit c8891dc6 authored by Vitaly Lipatov's avatar Vitaly Lipatov

just import winetricks-20230120.tar with rpmgs script

parent 630e7502
......@@ -123,7 +123,7 @@ chmod +x update_winetricks
su root sh -c 'mv update_winetricks /usr/bin/'
```
To use ```curl``` instead of ```wget```: subsitute all ```wget``` calls with ```curl -O```, in the winetricks update script.
To use ```curl``` instead of ```wget```: substitute all ```wget``` calls with ```curl -O```, in the winetricks update script.
# Updating
......
......@@ -46,7 +46,7 @@ qqintl QQ International Instant Messenger 2.11 (Tencent, 2014)
safari Safari (Apple, 2010) [downloadable]
sketchup SketchUp 8 (Google, 2012) [downloadable]
steam Steam (Valve, 2010) [downloadable]
uplay Uplay (Ubisoft, 2013) [downloadable]
ubisoftconnect Ubisoft Connect (Ubisoft, 2020) [downloadable]
utorrent µTorrent 2.2.1 (BitTorrent, 2011)
utorrent3 µTorrent 3.4 (BitTorrent, 2011) [downloadable]
vc2005express MS Visual C++ 2005 Express (Microsoft, 2005) [downloadable]
......
......@@ -45,7 +45,7 @@ qqintl QQ International Instant Messenger 2.11 (Tencent, 2014)
safari Safari (Apple, 2010) [downloadable]
sketchup SketchUp 8 (Google, 2012) [downloadable]
steam Steam (Valve, 2010) [downloadable]
uplay Uplay (Ubisoft, 2013) [downloadable]
ubisoftconnect Ubisoft Connect (Ubisoft, 2020) [downloadable]
utorrent µTorrent 2.2.1 (BitTorrent, 2011)
utorrent3 µTorrent 3.4 (BitTorrent, 2011) [downloadable]
vc2005express MS Visual C++ 2005 Express (Microsoft, 2005) [downloadable]
......
......@@ -357,10 +357,10 @@ tmnationsforever
trebuchet
trine_demo_steam
trine_steam
ubisoftconnect
uff
unifont
updspapi
uplay
urlmon
usp10
utorrent3
......
This is a list of what files are in the helper verbs (i.e., DirectX / Service Packs)
Checking into git makes it a lost easier to search without having to manually extract
Checking into git makes it a lot easier to search without having to manually extract
the files just to see if a native one is easily available.
......@@ -101,7 +101,7 @@ crawl_one() {
base=${urlfile%.url}
url="$(cat "${urlfile}")"
curl --connect-timeout 10 --retry 6 -s -S -I "${url}" 2>&1 |
curl --connect-timeout 60 --retry-connrefused --retry 10 -s -S -I "${url}" 2>&1 |
tr -d '\015' |
grep . |
sort > "${base}.log"
......
......@@ -96,13 +96,13 @@ fi
git archive --prefix="winetricks-${version}/" -o "${tmpdir}/${version}.tar.gz" "${version}"
# create a detached signature of the tarball
gpg --armor --default-key 0x053F0749 --detach-sign "${tmpdir}/${version}.tar.gz"
gpg --armor --default-key 0x267BCC1F053F0749 --detach-sign "${tmpdir}/${version}.tar.gz"
# upload the detached signature to github:
if [ ${nopush} = 1 ] ; then
echo "--no-push used, not uploading signature file"
else
python3 src/github-api-releases.py "${tmpdir}/${version}.tar.gz.asc" Winetricks winetricks "${version}"
python3 src/github-api-releases.py "${tmpdir}/${version}.tar.gz.asc" Winetricks winetricks "${version}"
rm -rf "${tmpdir}"
fi
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -58,7 +58,7 @@ test_bashate() {
# Can't ignore individual things for now, filed bug:
# https://bugs.launchpad.net/bash8/+bug/1698088
# E006=line length check
# E044=Use [[ for non-POSIX comparisions
# E044=Use [[ for non-POSIX comparisons
echo "Checking ${shellscript} with bashate:"
w_try "${bashate}" -i E006,E044 "${shellscript}"
}
......@@ -106,7 +106,7 @@ test_linkcheck() {
# Check for uses of variables in w_download when w_linkcheck_ignore isn't set
# Using w_download https://example.com/${file1} breaks src/linkcheck.sh
# FIXME: technically '$' is valid in a URL, if there's actually a URL using it this will need a tweak
if grep "^ *w_download " src/winetricks | grep -E "ftp|http" | grep -v "w_linkcheck_ignore=1" | sed "s/^ *//" | tr -d "\\\\" | cut -d " " -f2 | grep "\\$"; then
if grep "^ *w_download " src/winetricks | grep -E "ftp|http" | grep -v "w_linkcheck_ignore=1" | sed "s/^ *//" | tr -d "\\\\" | grep "\\$"; then
w_die "Do not use variables in these URLs, it breaks src/linkcheck.sh"
else
echo "linkcheck checks passed"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment