diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2020-05-05 12:19:10 -0400 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-05-05 18:28:39 +0200 |
commit | a19cd07adbed08cfd33fbf0beeb6f9cee181fa39 (patch) | |
tree | e807b28b0e243436868998df554ef4537b82683a /libre/icu-parabola/PKGBUILD | |
parent | ab74e5ea19b1e103daa1d3325f8afc490bf672a3 (diff) | |
download | abslibre-a19cd07adbed08cfd33fbf0beeb6f9cee181fa39.tar.gz abslibre-a19cd07adbed08cfd33fbf0beeb6f9cee181fa39.tar.bz2 abslibre-a19cd07adbed08cfd33fbf0beeb6f9cee181fa39.zip |
icu-parabola: tighten the icu package dependency version
It must be be greater than icu-parabola, because we do not want to
install the same version and get file conflicts.
In the idea case, icu-parabola will never conflict with icu, because it
will always be rebuilt in sync with icu. In the non-ideal case, if they
ever provide the same then the user will be informed of the need to
remove icu-parabola (as it will not be needed at that time).
Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/icu-parabola/PKGBUILD')
-rw-r--r-- | libre/icu-parabola/PKGBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libre/icu-parabola/PKGBUILD b/libre/icu-parabola/PKGBUILD index 8cbed9676..86ae232d4 100644 --- a/libre/icu-parabola/PKGBUILD +++ b/libre/icu-parabola/PKGBUILD @@ -85,7 +85,9 @@ arch+=(armv7h i686) url="http://site.icu-project.org/home" license=('custom:icu') depends=('gcc-libs' 'sh') -depends+=('icu') +# require the main ICU version always be > this one +depends+=("icu>$pkgver") +conflicts=("icu<=$pkgver") makedepends=('python') provides=(libicu{data,i18n,io,test,tu,uc}.so) source=(https://github.com/unicode-org/icu/releases/download/release-${pkgver//./-}/${_pkgname}4c-${pkgver//./_}-src.tgz{,.asc} |