[arch-commits] Commit in ilmbase/trunk (PKGBUILD)
    Christian Hesse 
    eworm at archlinux.org
       
    Mon Jun 25 07:35:05 UTC 2018
    
    
  
    Date: Monday, June 25, 2018 @ 07:35:05
  Author: eworm
Revision: 327539
upgpkg: ilmbase 2.2.1-4
Looks like glu is still a required dependency for ilmbase:
# /usr/bin/pkg-config --short-errors --print-errors --exists 'OpenEXR >= 1.6.1'
# echo $?
0
but...
# /usr/bin/pkg-config --short-errors --print-errors --cflags --libs 'OpenEXR >= 1.6.1'
Package 'gl', required by 'IlmBase', not found 
Package 'glu', required by 'IlmBase', not found
# echo $?
1
Fixes FS#59129
Modified:
  ilmbase/trunk/PKGBUILD
----------+
 PKGBUILD |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD	2018-06-25 06:43:07 UTC (rev 327538)
+++ PKGBUILD	2018-06-25 07:35:05 UTC (rev 327539)
@@ -3,8 +3,8 @@
 
 pkgname=ilmbase
 pkgver=2.2.1
-pkgrel=3
-depends=('gcc-libs')
+pkgrel=4
+depends=('gcc-libs' 'glu')
 pkgdesc="Base libraries from ILM for OpenEXR"
 arch=(x86_64)
 url="http://www.openexr.com"
    
    
More information about the arch-commits
mailing list