From owner-svn-ports-head@freebsd.org Tue Nov 17 08:36:26 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 83A222D4B42; Tue, 17 Nov 2020 08:36:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZzn63HvRz3rm5; Tue, 17 Nov 2020 08:36:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 63F351CD5C; Tue, 17 Nov 2020 08:36:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AH8aQUA092660; Tue, 17 Nov 2020 08:36:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AH8aPiA092658; Tue, 17 Nov 2020 08:36:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011170836.0AH8aPiA092658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 17 Nov 2020 08:36:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555541 - in head/astro/siril: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/astro/siril: . files X-SVN-Commit-Revision: 555541 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2020 08:36:26 -0000 Author: yuri Date: Tue Nov 17 08:36:25 2020 New Revision: 555541 URL: https://svnweb.freebsd.org/changeset/ports/555541 Log: astro/siril: Fix run-time error: Undefined symbol "cblas_dcopy" This was because math/gsl installs 2 libraries, libgsl.so and libgslcblas.so, the former of which should depend on the latter one. Instead, the gsl package through its pkg-config script asks users to link to both libraries. This fails when the link line also has -Wl,--as-needed which causes the linker to drop the second library. In such case the above error is triggered at runtime. Also update WWW. PR: 251206 Submitted by: Ned Leitch MFH: 2020Q4 Added: head/astro/siril/files/patch-meson.build (contents, props changed) Deleted: head/astro/siril/files/patch-Makefile.am Modified: head/astro/siril/Makefile head/astro/siril/pkg-descr Modified: head/astro/siril/Makefile ============================================================================== --- head/astro/siril/Makefile Tue Nov 17 06:53:47 2020 (r555540) +++ head/astro/siril/Makefile Tue Nov 17 08:36:25 2020 (r555541) @@ -2,6 +2,7 @@ PORTNAME= siril DISTVERSION= 0.99.6 +PORTREVISION= 1 CATEGORIES= astro graphics MASTER_SITES= https://free-astro.org/download/ Added: head/astro/siril/files/patch-meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/siril/files/patch-meson.build Tue Nov 17 08:36:25 2020 (r555541) @@ -0,0 +1,10 @@ +--- meson.build.orig 2020-09-22 20:01:48 UTC ++++ meson.build +@@ -123,6 +123,7 @@ if platform_linux + elif platform_bsd + siril_link_arg += '-rdynamic' + siril_link_arg += '-lexecinfo' ++ siril_link_arg += '-Wl,--no-as-needed' # workaround for https://gitlab.com/free-astro/siril/-/issues/614 (Bug#251206) + elif platform_windows + #TODO: Do Meson provide more elegant way? + siril_link_arg += '-Wl,--export-all-symbols' Modified: head/astro/siril/pkg-descr ============================================================================== --- head/astro/siril/pkg-descr Tue Nov 17 06:53:47 2020 (r555540) +++ head/astro/siril/pkg-descr Tue Nov 17 08:36:25 2020 (r555541) @@ -8,4 +8,4 @@ interface than Iris' command line as well as more mode algorithms, but it is not yet as automated as DeepSkyStacker or Registax. It also provides a basic command line to access various processing functions. -WWW: https://free-astro.org/index.php/Siril +WWW: https://www.siril.org/