Received: by mail.netbsd.org (Postfix, from userid 605) id 0775B84DC2; Fri, 12 Mar 2021 15:02:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42AE084D0D for ; Fri, 12 Mar 2021 15:02:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0M41tK5mpMz7 for ; Fri, 12 Mar 2021 15:02:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id AFCD084CF1 for ; Fri, 12 Mar 2021 15:02:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A40E0FA95; Fri, 12 Mar 2021 15:02:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161556133357270" MIME-Version: 1.0 Date: Fri, 12 Mar 2021 15:02:13 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/oshu To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210312150213.A40E0FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161556133357270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Mar 12 15:02:13 UTC 2021 Modified Files: pkgsrc/games/oshu: Makefile PLIST Log Message: oshu: Disable non-minimal skin. It needs to download files during the build process and the website it downloads files from stopped existing, so the package stopped building. Maybe it should be a distfile when the file becomes available again. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/games/oshu/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/oshu/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161556133357270 Content-Disposition: inline Content-Length: 2340 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/oshu/Makefile diff -u pkgsrc/games/oshu/Makefile:1.6 pkgsrc/games/oshu/Makefile:1.7 --- pkgsrc/games/oshu/Makefile:1.6 Tue Aug 18 17:57:57 2020 +++ pkgsrc/games/oshu/Makefile Fri Mar 12 15:02:13 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2020/08/18 17:57:57 leot Exp $ +# $NetBSD: Makefile,v 1.7 2021/03/12 15:02:13 nia Exp $ DISTNAME= oshu-2.0.1 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_GITHUB:=fmang/} @@ -11,10 +11,10 @@ COMMENT= Fast osu! port LICENSE= gnu-gpl-v3 USE_TOOLS+= pkg-config -USE_LANGUAGES= c c++14 +USE_LANGUAGES= c c++ USE_CMAKE= yes -CMAKE_ARGS+= -DOSHU_SKINS="minimal;osu" +CMAKE_ARGS+= -DOSHU_SKINS="minimal" .include "../../devel/SDL2/buildlink3.mk" .include "../../devel/pango/buildlink3.mk" Index: pkgsrc/games/oshu/PLIST diff -u pkgsrc/games/oshu/PLIST:1.1 pkgsrc/games/oshu/PLIST:1.2 --- pkgsrc/games/oshu/PLIST:1.1 Sun Jun 23 16:02:00 2019 +++ pkgsrc/games/oshu/PLIST Fri Mar 12 15:02:13 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2019/06/23 16:02:00 nia Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/03/12 15:02:13 nia Exp $ bin/oshu bin/oshu-library man/man1/oshu-library.1 @@ -9,26 +9,4 @@ share/oshu/skins/default share/oshu/skins/minimal/drum-hitnormal.wav share/oshu/skins/minimal/normal-hitnormal.wav share/oshu/skins/minimal/soft-hitnormal.wav -share/oshu/skins/osu/README.md -share/oshu/skins/osu/drum-hitclap.wav -share/oshu/skins/osu/drum-hitfinish.wav -share/oshu/skins/osu/drum-hitnormal.wav -share/oshu/skins/osu/drum-hitwhistle.wav -share/oshu/skins/osu/drum-sliderslide.wav -share/oshu/skins/osu/drum-slidertick.wav -share/oshu/skins/osu/drum-sliderwhistle.wav -share/oshu/skins/osu/normal-hitclap.wav -share/oshu/skins/osu/normal-hitfinish.wav -share/oshu/skins/osu/normal-hitnormal.wav -share/oshu/skins/osu/normal-hitwhistle.wav -share/oshu/skins/osu/normal-sliderslide.wav -share/oshu/skins/osu/normal-slidertick.wav -share/oshu/skins/osu/normal-sliderwhistle.wav -share/oshu/skins/osu/soft-hitclap.wav -share/oshu/skins/osu/soft-hitfinish.wav -share/oshu/skins/osu/soft-hitnormal.wav -share/oshu/skins/osu/soft-hitwhistle.wav -share/oshu/skins/osu/soft-sliderslide.wav -share/oshu/skins/osu/soft-slidertick.wav -share/oshu/skins/osu/soft-sliderwhistle.wav share/oshu/web/style.css --_----------=_161556133357270--