From owner-svn-ports-all@freebsd.org Fri Feb 19 20:33:30 2021 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 04B2F53AC62; Fri, 19 Feb 2021 20:33:30 +0000 (UTC) (envelope-from ehaupt@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Dj3F56pL0z3F6k; Fri, 19 Feb 2021 20:33:29 +0000 (UTC) (envelope-from ehaupt@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 DC5A4126B2; Fri, 19 Feb 2021 20:33:29 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11JKXTog081053; Fri, 19 Feb 2021 20:33:29 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11JKXScf081048; Fri, 19 Feb 2021 20:33:28 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202102192033.11JKXScf081048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Fri, 19 Feb 2021 20:33:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566099 - in head/audio/spc2it: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/audio/spc2it: . files X-SVN-Commit-Revision: 566099 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.34 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: Fri, 19 Feb 2021 20:33:30 -0000 Author: ehaupt Date: Fri Feb 19 20:33:28 2021 New Revision: 566099 URL: https://svnweb.freebsd.org/changeset/ports/566099 Log: audio/spc2it: Update to 0.4.0 Added: head/audio/spc2it/files/patch-meson.build (contents, props changed) Modified: head/audio/spc2it/Makefile head/audio/spc2it/distinfo (contents, props changed) head/audio/spc2it/files/patch-spc2it.1 (contents, props changed) Modified: head/audio/spc2it/Makefile ============================================================================== --- head/audio/spc2it/Makefile Fri Feb 19 20:22:55 2021 (r566098) +++ head/audio/spc2it/Makefile Fri Feb 19 20:33:28 2021 (r566099) @@ -3,7 +3,7 @@ PORTNAME= spc2it DISTVERSIONPREFIX= v -DISTVERSION= 0.3-14-gd4f165e +DISTVERSION= 0.4.0 CATEGORIES= audio converters MAINTAINER= ehaupt@FreeBSD.org @@ -11,15 +11,16 @@ COMMENT= Convert SPC files to IT (Impulse Tracker) fil LICENSE= GPLv2 -USES= cmake:insource +USES= meson USE_GITHUB= yes GH_ACCOUNT= uyjulian -PLIST_FILES= bin/spc2it man/man1/spc2it.1.gz +PLIST_FILES= bin/spc2it \ + man/man1/spc2it.1.gz do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${MESON_BUILD_DIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include Modified: head/audio/spc2it/distinfo ============================================================================== --- head/audio/spc2it/distinfo Fri Feb 19 20:22:55 2021 (r566098) +++ head/audio/spc2it/distinfo Fri Feb 19 20:33:28 2021 (r566099) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536864840 -SHA256 (uyjulian-spc2it-v0.3-14-gd4f165e_GH0.tar.gz) = 6853d16b5e8540cf0182a09ccf0ada20d03237026e4bada98e6d5af9557ad882 -SIZE (uyjulian-spc2it-v0.3-14-gd4f165e_GH0.tar.gz) = 42150 +TIMESTAMP = 1613765569 +SHA256 (uyjulian-spc2it-v0.4.0_GH0.tar.gz) = 5f30b0d88a8120ad30cc3a0052441c3d605ee9f165d863bcbeef7c915562a9fa +SIZE (uyjulian-spc2it-v0.4.0_GH0.tar.gz) = 43744 Added: head/audio/spc2it/files/patch-meson.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/spc2it/files/patch-meson.build Fri Feb 19 20:33:28 2021 (r566099) @@ -0,0 +1,11 @@ +--- meson.build.orig 2021-02-19 18:21:16 UTC ++++ meson.build +@@ -19,7 +19,7 @@ if target_machine.system() == 'windows' + '-static', + ] + endif +-if target_machine.system() == 'linux' ++if target_machine.system() == 'linux' or target_machine.system() == 'freebsd' + spc2it_ldflags += [ + '-lm', + ] Modified: head/audio/spc2it/files/patch-spc2it.1 ============================================================================== --- head/audio/spc2it/files/patch-spc2it.1 Fri Feb 19 20:22:55 2021 (r566098) +++ head/audio/spc2it/files/patch-spc2it.1 Fri Feb 19 20:33:28 2021 (r566099) @@ -1,6 +1,9 @@ ---- spc2it.1.orig 2018-09-13 18:57:56 UTC +--- spc2it.1.orig 2021-02-19 18:21:16 UTC +++ spc2it.1 -@@ -0,0 +1,27 @@ +@@ -25,3 +25,30 @@ Specify IT rows per pattern [200 default] + .BR adplay (1), + .BR schismtracker (1). + .br +.TH spc2it "1" "September 10 2018" "User Commands" +.SH NAME +spc2it \- converts SPC700 sound files to the Impulse Tracker format