Chih-Hsuan Yen pushed to branch main at Arch Linux / Packaging / Packages / gcin
Commits: 090f7a1b by Chih-Hsuan Yen at 2024-11-30T12:07:24+08:00 Update to 2.9.2 The build issue remains and gets worse. Now -Wno-error=int-conversion is also needed. That warning was also turned into an error in GCC 14: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106416 - - - - - 2 changed files: - .SRCINFO - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -1,7 +1,7 @@ pkgbase = gcin pkgdesc = Input method server supporting various input methods - pkgver = 2.9.0 - pkgrel = 6 + pkgver = 2.9.2 + pkgrel = 1 url = https://hyperrate.com/dir.php?eid=67 arch = x86_64 license = LGPL @@ -24,9 +24,9 @@ pkgbase = gcin optdepends = anthy: support for anthy input method optdepends = curl: for downloading and uploading vocabulary databases via ts-edit optdepends = bash: for various scripts - source = https://hyperrate.com/gcin-source/gcin-2.9.0.tar.xz + source = https://hyperrate.com/gcin-source/gcin-2.9.2.tar.xz source = fix-gtk-immodules-path.patch - sha512sums = f8ce9407e2cfce2b3ba6e6ba6ccca8eb9dacf5c0124438df525e1a9fb692a7aea3cb685965708091b0fdedf3b00efa77fb6cdfbd33cdb50e1938e9f3fcf7a5d6 + sha512sums = b42c3ba6afbde30dc3f37cd9a6cac8242b29d1429b57d8e76624a99688ed6339e6635c2442821d03a0f8d82b4fa337e4e6c178adcccc09a96b111ccfccefb312 sha512sums = 54e90b04de45acf9f8821c92234b9708281907cbdf24ebb29f9820945615669d82a8443e49fd49d6c08be4a7b9f2857c8e763f170ef879c8fab1f232bb67e85d pkgname = gcin ===================================== PKGBUILD ===================================== @@ -5,8 +5,8 @@ # Contributor: damir <da...@archlinux.org> pkgname=gcin -pkgver=2.9.0 -pkgrel=6 +pkgver=2.9.2 +pkgrel=1 pkgdesc='Input method server supporting various input methods' url='https://hyperrate.com/dir.php?eid=67' license=('LGPL') @@ -23,7 +23,7 @@ optdepends=('qt5-base: support for qt5 input method' 'bash: for various scripts') source=("https://hyperrate.com/gcin-source/${pkgname}-${pkgver}.tar.xz" fix-gtk-immodules-path.patch) -sha512sums=('f8ce9407e2cfce2b3ba6e6ba6ccca8eb9dacf5c0124438df525e1a9fb692a7aea3cb685965708091b0fdedf3b00efa77fb6cdfbd33cdb50e1938e9f3fcf7a5d6' +sha512sums=('b42c3ba6afbde30dc3f37cd9a6cac8242b29d1429b57d8e76624a99688ed6339e6635c2442821d03a0f8d82b4fa337e4e6c178adcccc09a96b111ccfccefb312' '54e90b04de45acf9f8821c92234b9708281907cbdf24ebb29f9820945615669d82a8443e49fd49d6c08be4a7b9f2857c8e763f170ef879c8fab1f232bb67e85d') prepare() { @@ -48,7 +48,7 @@ prepare() { build() { cd "${srcdir}/${pkgname}-${pkgver}" # Workarounds for GCC 14, see https://hyperrate.com/thread.php?tid=35294 - CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types" \ + CFLAGS="$CFLAGS -Wno-error=implicit-function-declaration -Wno-error=incompatible-pointer-types -Wno-error=int-conversion" \ ./configure --prefix=/usr --use_i18n=Y make -j1 } View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/gcin/-/commit/090f7a1b5fbec6269b6cc54943aa489f05a80c05 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/gcin/-/commit/090f7a1b5fbec6269b6cc54943aa489f05a80c05 You're receiving this email because of your account on gitlab.archlinux.org.