Received: by mail.netbsd.org (Postfix, from userid 605) id 4CB8E84E73; Tue, 20 Feb 2024 01:11:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708391476; bh=A1qau8A1rK/n5/2iPn1RTQzK07io0wsz2CxcI/OSro0=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=bhHRJqR97UJos1PlFla9Zb2fupm4Ygmf0grNF3EubVQKkqc730Kq09jiJly05pF3T AcgkaThbIY7Gb0nXZMxBcmq/bb+QXCXh9xtcg/BErZ0BbucxPu2RTdi9CVJypW5f6l NI8calTlfjFe0KlUr5yMdXjDEdgvmlfTMM2MtgpA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CC0184E55 for ; Tue, 20 Feb 2024 01:11:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 egbuOGo244lD for ; Tue, 20 Feb 2024 01:11:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 85F2384CD9 for ; Tue, 20 Feb 2024 01:11:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1708391474; bh=A1qau8A1rK/n5/2iPn1RTQzK07io0wsz2CxcI/OSro0=; h=Date:From:Subject:To:Reply-To; b=fVXf5zJT7Ui7wgYZACTSlUNRRQvvSuba9x6xDp6cOANwG/nZNHqpTa35m2y0BmkXG LTVeWvH7XSgBbITCszDdZbUyb8D9wSOIxId41RZczebRWFjP0eFHdZg5M3uuhRXmZ8 691/5Rq6Y+UFO5HqwH+Q5znt5q19+Ioea+DlcDzM= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 76044F9F4; Tue, 20 Feb 2024 01:11:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1708391474220770" MIME-Version: 1.0 Date: Tue, 20 Feb 2024 01:11:14 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/misc/exercism To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20240220011114.76044F9F4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1708391474220770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Tue Feb 20 01:11:14 UTC 2024 Modified Files: pkgsrc/misc/exercism: Makefile Log Message: exercism: change PKGNAME to match. This SUPERSEDES "exercism-cli" (oops). To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/misc/exercism/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1708391474220770 Content-Disposition: inline Content-Length: 740 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/exercism/Makefile diff -u pkgsrc/misc/exercism/Makefile:1.16 pkgsrc/misc/exercism/Makefile:1.17 --- pkgsrc/misc/exercism/Makefile:1.16 Thu Feb 15 19:08:53 2024 +++ pkgsrc/misc/exercism/Makefile Tue Feb 20 01:11:14 2024 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.16 2024/02/15 19:08:53 schmonz Exp $ +# $NetBSD: Makefile,v 1.17 2024/02/20 01:11:14 schmonz Exp $ DISTNAME= exercism-cli-3.3.0 +PKGNAME= ${DISTNAME:S/-cli-/-/} CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_GITHUB:=exercism/} GITHUB_PROJECT= cli @@ -11,6 +12,8 @@ HOMEPAGE= https://exercism.org/ COMMENT= Command line tool for exercism.org LICENSE= mit +SUPERSEDES+= exercism-cli-[0-9]* + AUTO_MKDIRS= yes post-install: --_----------=_1708391474220770--