From owner-svn-ports-all@freebsd.org Sat Oct 3 15:44:46 2020 Return-Path: Delivered-To: svn-ports-all@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 E921A4319DE; Sat, 3 Oct 2020 15:44:46 +0000 (UTC) (envelope-from thierry@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 4C3WQ65y3Dz4Vdh; Sat, 3 Oct 2020 15:44:46 +0000 (UTC) (envelope-from thierry@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 AF7E3159B6; Sat, 3 Oct 2020 15:44:46 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 093Fikv2020393; Sat, 3 Oct 2020 15:44:46 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 093FikYX020390; Sat, 3 Oct 2020 15:44:46 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202010031544.093FikYX020390@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 3 Oct 2020 15:44:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551323 - head/math/nauty X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/math/nauty X-SVN-Commit-Revision: 551323 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Oct 2020 15:44:47 -0000 Author: thierry Date: Sat Oct 3 15:44:46 2020 New Revision: 551323 URL: https://svnweb.freebsd.org/changeset/ports/551323 Log: - Upgrade to 2.7 (27r1) Changelog at - Install libnauty (static lib only ATM) so that it can be used by Sage-9.2. Modified: head/math/nauty/Makefile head/math/nauty/distinfo Modified: head/math/nauty/Makefile ============================================================================== --- head/math/nauty/Makefile Sat Oct 3 15:43:52 2020 (r551322) +++ head/math/nauty/Makefile Sat Oct 3 15:44:46 2020 (r551323) @@ -2,35 +2,44 @@ # $FreeBSD$ PORTNAME= nauty -PORTVERSION= 2.6r12 +PORTVERSION= 27r1 CATEGORIES= math MASTER_SITES= http://cs.anu.edu.au/~bdm/nauty/ \ http://pallini.di.uniroma1.it/ DISTNAME= ${PORTNAME}${PORTVERSION:S!.!!} MAINTAINER= ports@FreeBSD.org -COMMENT= Brendan McKay's graph isomorphism tester +COMMENT= Nauty & Traces are programs for graph automorphisms LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYRIGHT USES= gmake GNU_CONFIGURE= yes +CFLAGS+= -fPIC MAKEFILE= makefile +TEST_TARGET= check -PROGRAMS= addedgeg amtog biplabg catg complg converseg copyg countg \ - cubhamg deledgeg delptg directg dreadnaut dretodot dretog genbg \ - genbgL geng genquarticg genrang genspecialg gentourng gentreeg \ - hamheuristic labelg linegraphg listg multig newedgeg NRswitchg \ - pickg planarg ranlabg shortg showg subdivideg twohamg vcolg \ - watercluster2 +PROGRAMS= addedgeg amtog assembleg biplabg catg complg converseg copyg \ + countg cubhamg deledgeg delptg directg dreadnaut dretodot dretog\ + edgetransg genbg genbgL geng gengL genquarticg genrang \ + genspecialg gentourng gentreeg hamheuristic labelg linegraphg \ + listg multig newedgeg NRswitchg pickg planarg ranlabg shortg \ + showg subdivideg twohamg underlyingg vcolg watercluster2 -PORTDOCS= nug26.pdf -PLIST_FILES= ${PROGRAMS:S!^!bin/!} +PORTDOCS= nug27.pdf +PLIST_FILES= include/nauty/nauty.h lib/libnauty.a ${PROGRAMS:S!^!bin/!} OPTIONS_DEFINE= DOCS +post-extract: + ${RM} ${WRKSRC}/*.a + do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/nauty + ${INSTALL_DATA} ${WRKSRC}/nauty.h ${STAGEDIR}${PREFIX}/include/nauty + # Do not use ${INSTALL_LIB} to strip the library! + ${INSTALL_DATA} ${WRKSRC}/nauty.a ${STAGEDIR}${PREFIX}/lib/libnauty.a .for i in ${PROGRAMS} ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin .endfor Modified: head/math/nauty/distinfo ============================================================================== --- head/math/nauty/distinfo Sat Oct 3 15:43:52 2020 (r551322) +++ head/math/nauty/distinfo Sat Oct 3 15:44:46 2020 (r551323) @@ -1,3 +1,3 @@ -TIMESTAMP = 1586023265 -SHA256 (nauty26r12.tar.gz) = 862ae0dc3656db34ede6fafdb0999f7b875b14c7ab4fedbb3da4f28291eb95dc -SIZE (nauty26r12.tar.gz) = 1660980 +TIMESTAMP = 1601648114 +SHA256 (nauty27r1.tar.gz) = 76ca5d196e402c83a987f90c28ff706bcc5a333bb4a8fbb979a62d3b99c34e77 +SIZE (nauty27r1.tar.gz) = 3428473