summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig)2022-10-12 19:53:04 +0200
committerJan Alexander Steffens (heftig)2022-10-12 19:55:11 +0200
commitb2a1b1ed1d695cb8270b3dddc0ac8e83f644b759 (patch)
treeac449cbac9d9083d3733fec0a28e10798ed60084
parent2f3a7f2a021151786e3004b49d999629eeba0156 (diff)
downloadaur-b2a1b1ed1d695cb8270b3dddc0ac8e83f644b759.tar.gz
2022.10.10.00-2: Drop libgcc hack; seems to be unneeded now
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD8
2 files changed, 4 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ad41d329504a..d5a87db2935e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = watchman-bin
pkgdesc = An inotify-based file watching and job triggering command line utility
pkgver = 2022.10.10.00
- pkgrel = 1
+ pkgrel = 2
url = https://facebook.github.io/watchman/
install = watchman.install
arch = x86_64
@@ -9,7 +9,7 @@ pkgbase = watchman-bin
makedepends = patchelf
makedepends = python
depends = openssl
- depends = gcc11-libs
+ depends = gcc-libs
provides = watchman=2022.10.10.00
conflicts = watchman
options = !strip
diff --git a/PKGBUILD b/PKGBUILD
index 91970001da04..457801f555e2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,12 +2,12 @@
pkgname=watchman-bin
pkgver=2022.10.10.00
-pkgrel=1
+pkgrel=2
pkgdesc="An inotify-based file watching and job triggering command line utility"
url="https://facebook.github.io/watchman/"
arch=(x86_64)
license=(MIT)
-depends=(openssl gcc11-libs)
+depends=(openssl gcc-libs)
makedepends=(patchelf python)
provides=("watchman=$pkgver")
conflicts=(watchman)
@@ -43,10 +43,6 @@ END
bin/* lib/*
patchelf --set-rpath /usr/lib/watchman bin/* lib/*
-
- # Use libgcc from gcc11-libs to avoid a crash
- # https://github.com/facebook/watchman/issues/1019
- patchelf --add-rpath /usr/lib/gcc/x86_64-pc-linux-gnu/11.3.0 bin/* lib/*
}
package() {