Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=0bbiDPzL; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=i8QAuHF+ Received: by mail.netbsd.org (Postfix, from userid 605) id 41C1284EC4; Wed, 17 Apr 2024 11:59:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713355171; bh=D3TLGahtKUHUC5c21V9zA/KaGpiKRwypF+jX3GSnx1k=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=0bbiDPzLp67I3jOE+hjORf+1lh+WYipd37MCQ6GeBQRmRV8P59JtiTdid0Cx9x5Wq 0kiNXVfOBUTtQBrdN1Kyd/sLz/RU8v7lcnb/EcVifMFFcdDoIXcmBVq+bD6OuQ40ah 1RLVNvwH6HTSDXoXzCMDrf2fz7UFSliavSS8XkVw= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 302FE84EC3 for ; Wed, 17 Apr 2024 11:59:30 +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 inG2nAcxyY90 for ; Wed, 17 Apr 2024 11:59:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 820D584D01 for ; Wed, 17 Apr 2024 11:59:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713355169; bh=D3TLGahtKUHUC5c21V9zA/KaGpiKRwypF+jX3GSnx1k=; h=Date:From:Subject:To:Reply-To; b=i8QAuHF+zlYKSE4WDypS72p9iC51fFemApgEpK/RHXVCXDvDW3LlGROEWqyn5D7ZR JsVs4HoJCuOu5S3ih5GwuPDIwuH22iMK16IbrxYAX9c5MnkJHMXApD1SXXnEVKxPun UEemEOVzFRuxjSkFn/VWkOVKslP5YoOigqplnUPE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7A031FA2C; Wed, 17 Apr 2024 11:59:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1713355169273920" MIME-Version: 1.0 Date: Wed, 17 Apr 2024 11:59:29 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/streamtuner To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240417115929.7A031FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1713355169273920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Apr 17 11:59:29 UTC 2024 Modified Files: pkgsrc/audio/streamtuner: options.mk Log Message: streamtuner: remove default-off python option Uses py-gtk2. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/audio/streamtuner/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1713355169273920 Content-Disposition: inline Content-Length: 1016 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/streamtuner/options.mk diff -u pkgsrc/audio/streamtuner/options.mk:1.10 pkgsrc/audio/streamtuner/options.mk:1.11 --- pkgsrc/audio/streamtuner/options.mk:1.10 Mon Sep 2 13:20:07 2019 +++ pkgsrc/audio/streamtuner/options.mk Wed Apr 17 11:59:29 2024 @@ -1,8 +1,7 @@ -# $NetBSD: options.mk,v 1.10 2019/09/02 13:20:07 adam Exp $ -# +# $NetBSD: options.mk,v 1.11 2024/04/17 11:59:29 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.streamtuner -PKG_SUPPORTED_OPTIONS= streamtuner-local streamtuner-xiph python +PKG_SUPPORTED_OPTIONS= streamtuner-local streamtuner-xiph PKG_SUGGESTED_OPTIONS= streamtuner-local streamtuner-xiph .include "../../mk/bsd.options.mk" @@ -24,12 +23,3 @@ CONFIGURE_ARGS+= --enable-xiph .else CONFIGURE_ARGS+= --disable-xiph .endif - -.if !empty(PKG_OPTIONS:Mpython) -PLIST.python= yes -CONFIGURE_ARGS+= --enable-python -PYTHON_VERSIONS_ACCEPTED= 27 # py-gtk2 -. include "../../x11/py-gtk2/buildlink3.mk" -.else -CONFIGURE_ARGS+= --disable-python -.endif --_----------=_1713355169273920--