From owner-svn-ports-head@freebsd.org Sun Sep 13 06:23:17 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 6A67B3EE167; Sun, 13 Sep 2020 06:23:17 +0000 (UTC) (envelope-from jbeich@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 4BpzvT2CbDz3Wrb; Sun, 13 Sep 2020 06:23:17 +0000 (UTC) (envelope-from jbeich@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 2F20421CFD; Sun, 13 Sep 2020 06:23:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08D6NHvm091485; Sun, 13 Sep 2020 06:23:17 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08D6NG81091482; Sun, 13 Sep 2020 06:23:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202009130623.08D6NG81091482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 13 Sep 2020 06:23:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548457 - in head: . graphics graphics/dssim graphics/libdssim X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: . graphics graphics/dssim graphics/libdssim X-SVN-Commit-Revision: 548457 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.33 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: Sun, 13 Sep 2020 06:23:17 -0000 Author: jbeich Date: Sun Sep 13 06:23:16 2020 New Revision: 548457 URL: https://svnweb.freebsd.org/changeset/ports/548457 Log: graphics/libdssim: drop in favor of CARGO_CRATES $ cat /usr/local/include/dssim/dssim.h #define DSSIM_MAJOR 2 #define DSSIM_MINOR 11 #define DSSIM_PATCH 3 #include #include #include #include $ nm -D /usr/local/lib/libdssim.so w _Jv_RegisterClasses U _Unwind_GetDataRelBase U _Unwind_GetIPInfo U _Unwind_GetLanguageSpecificData U _Unwind_GetRegionStart U _Unwind_GetTextRelBase U _Unwind_SetGR U _Unwind_SetIP w __cxa_finalize 0000000000003920 T rust_eh_personality $ cat /usr/local/libdata/pkgconfig/dssim.pc prefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: dssim Description: Tool that measures structural similarity between images using a multi-scale variant of the SSIM algorithm. Version: 2.11.3 Libs: -L${libdir} -ldssim Cflags: -I${includedir}/dssim Libs.private: -lexecinfo -lpthread -lgcc_s -lc -lm -lrt -lpthread -lutil -lutil Deleted: head/graphics/libdssim/ Modified: head/MOVED head/graphics/Makefile (contents, props changed) head/graphics/dssim/Makefile (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Sun Sep 13 06:21:44 2020 (r548456) +++ head/MOVED Sun Sep 13 06:23:16 2020 (r548457) @@ -15428,3 +15428,4 @@ x11-wm/e-module-rmb||2020-09-09|Removed x11-wm/e-module-wlan||2020-09-09|Removed x11-wm/e-modules||2020-09-09|Removed net/frr6|net/frr7|2020-09-10|Has expired: Uses deprecated version of python and upstream no longer maintained +graphics/libdssim||2020-09-13|Removed: C API is empty, only usable from Rust Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Sep 13 06:21:44 2020 (r548456) +++ head/graphics/Makefile Sun Sep 13 06:23:16 2020 (r548457) @@ -435,7 +435,6 @@ SUBDIR += libchamplain SUBDIR += libdmtx SUBDIR += libdrm - SUBDIR += libdssim SUBDIR += libecwj2 SUBDIR += libemf SUBDIR += libepoxy Modified: head/graphics/dssim/Makefile ============================================================================== --- head/graphics/dssim/Makefile Sun Sep 13 06:21:44 2020 (r548456) +++ head/graphics/dssim/Makefile Sun Sep 13 06:23:16 2020 (r548457) @@ -2,7 +2,6 @@ PORTNAME= dssim DISTVERSION= 2.11.3 -PORTREVISION?= 0 CATEGORIES= graphics MASTER_SITES= CRATESIO # XXX Teach USES=cargo to have proper default @@ -15,7 +14,7 @@ LICENSE= AGPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo -PLIST_FILES?= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= adler-0.2.3 \ arrayvec-0.5.1 \