Commit 2e13678e authored by Vitaly Lipatov's avatar Vitaly Lipatov

20230505-eter1

- new version (20230505) with rpmgs script
parents 5f50d069 661db676
%define oname winetricks
Name: wine-etersoft-winetricks
Version: 20230212
Release: alt1
Version: 20230505
Release: eter1
Summary: Work around common problems in Wine
......@@ -33,6 +33,8 @@ Conflicts: wine-vanilla < 3.18
Conflicts: wine < 3.18
Conflicts: wine-etersoft < 4.0
Conflicts: winetricks
Provides: %oname = %EVR
Conflicts: %oname < %EVR
......@@ -79,6 +81,12 @@ desktop-file-validate %buildroot%_desktopdir/%oname.desktop
#exclude %_datadir/appdata/%name.appdata.xml
%changelog
* Sat May 20 2023 Vitaly Lipatov <lav@altlinux.ru> 20230505-eter1
- new version (20230505) with rpmgs script
* Sat Mar 11 2023 Vitaly Lipatov <lav@altlinux.ru> 20230310-alt1
- new version 20230310 (with rpmrb script)
* Sun Feb 12 2023 Vitaly Lipatov <lav@altlinux.ru> 20230212-alt1
- new version 20230212 (with rpmrb script)
......
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '09 18 * * *'
jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- name: checkout project
uses: actions/checkout@v2
- name: run linkcheck
run: ./src/linkcheck.sh crawl
......@@ -19,7 +19,7 @@ Depends:
unzip,
Recommends:
fuseiso | archivemount,
policykit-1 | gksu | kde-cli-tools | kdesudo,
pkexec | policykit-1 | gksu | kde-cli-tools | kdesudo,
sudo,
wine,
xdg-utils,
......
......@@ -600,6 +600,7 @@ vsm=1 Set MaxShaderModelVS to 1
vsm=2 Set MaxShaderModelVS to 2
vsm=3 Set MaxShaderModelVS to 3
win10 Set Windows version to Windows 10
win11 Set Windows version to Windows 11
win20 Set Windows version to Windows 2.0
win2k Set Windows version to Windows 2000
win2k3 Set Windows version to Windows 2003
......
......@@ -90,6 +90,7 @@ vsm=1 Set MaxShaderModelVS to 1
vsm=2 Set MaxShaderModelVS to 2
vsm=3 Set MaxShaderModelVS to 3
win10 Set Windows version to Windows 10
win11 Set Windows version to Windows 11
win20 Set Windows version to Windows 2.0
win2k Set Windows version to Windows 2000
win2k3 Set Windows version to Windows 2003
......
......@@ -41,6 +41,14 @@ fi
datadir="${TOP}/output/links.d"
mkdir -p "${datadir}"
# This is used by url-script-fragment.tmp below in extract_all()
# shellcheck disable=SC2317
w_download() {
url="${1}"
urlkey="$(echo "${url}" | tr / _)"
echo "${url}" > "${datadir}/${urlkey}.url"
}
# Extract list of URLs from winetricks
extract_all() {
# w_linkcheck_ignore=1 is a stupid hack to tell linkcheck.sh to ignore a URL (e.g., because it contains a variable)
......
......@@ -93,7 +93,9 @@ else
fi
# create local tarball, identical to github's generated one
git archive --prefix="winetricks-${version}/" -o "${tmpdir}/${version}.tar.gz" "${version}"
git -c tar.tar.gz.command='gzip -cn' \
archive --format=tar.gz --prefix="winetricks-${version}/" \
-o "${tmpdir}/${version}.tar.gz" "${version}"
# create a detached signature of the tarball
gpg --armor --default-key 0x267BCC1F053F0749 --detach-sign "${tmpdir}/${version}.tar.gz"
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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