diff options
author | Guilhem Saurel | 2021-10-03 11:58:12 +0200 |
---|---|---|
committer | Guilhem Saurel | 2021-10-03 11:58:12 +0200 |
commit | 5866c1350f37c481f44277c63ccfd08261246da4 (patch) | |
tree | 5b5c28800bc4b4b60e7d5e2ac57281f0494011e9 /PKGBUILD | |
parent | 75775bc657348704bcb067ad09da0a4b4f7cb614 (diff) | |
download | aur-5866c1350f37c481f44277c63ccfd08261246da4.tar.gz |
fix format warning
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ pkgname=pythonqt pkgver=3.2 -pkgrel=7 +pkgrel=8 pkgdesc='A dynamic Python binding for Qt applications' arch=('i686' 'x86_64') url='http://pythonqt.sourceforge.net/' @@ -19,11 +19,12 @@ replaces=("${pkgname}-qt5") source=( "http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/PythonQt-${pkgver}/PythonQt${pkgver}.zip" - "fix_python.patch" + "fix_python.patch" "fix_format_security.patch" ) sha512sums=( '1ee0f50f5035568b38e945108f5496ba64355c6357c1ea8dfc17ad90fa360540769f94e0b3e0e398176e8a21c8afe139607f0b5a2e82c63f1cbd40201a25e0f0' '548252508347f58dc4ff0f23a85973d1e799c6f4ce96b434b1f845feb1538ac85715d7e86bcea756f08ec31c21d9911bc6cfa6b99223ed0b1b0e96cc414b412f' + '2b514b17f6bce129656e7e8cf56434eebc1fa557f854c7a757f6a0ba8c142a8c18d28e81f7fbe77a391f425b43f6cf52dc6fc9229b70739ddcb52180c675eaa0' ) prepare() { @@ -33,6 +34,7 @@ prepare() { cp -R ../PythonQt${pkgver}/* ./ patch -p0 -i ../fix_python.patch + patch -p0 -i ../fix_format_security.patch } build() { |