Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 65E951A9239 for ; Sun, 14 Nov 2021 15:18:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8E77F84D2C; Sun, 14 Nov 2021 15:18:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CA0A384CDC for ; Sun, 14 Nov 2021 15:18:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id cfE47p8pmbST for ; Sun, 14 Nov 2021 15:18:16 +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 502AA84CD9 for ; Sun, 14 Nov 2021 15:18:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 495F8FAEC; Sun, 14 Nov 2021 15:18:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163690309618900" MIME-Version: 1.0 Date: Sun, 14 Nov 2021 15:18:16 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/subliminal To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20211114151816.495F8FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163690309618900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 14 15:18:16 UTC 2021 Modified Files: pkgsrc/textproc/subliminal: Makefile Log Message: subliminal: mark as incompatible with Python 2.7 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/subliminal/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163690309618900 Content-Disposition: inline Content-Length: 1492 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/subliminal/Makefile diff -u pkgsrc/textproc/subliminal/Makefile:1.5 pkgsrc/textproc/subliminal/Makefile:1.6 --- pkgsrc/textproc/subliminal/Makefile:1.5 Fri Dec 4 20:45:45 2020 +++ pkgsrc/textproc/subliminal/Makefile Sun Nov 14 15:18:16 2021 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.5 2020/12/04 20:45:45 nia Exp $ +# $NetBSD: Makefile,v 1.6 2021/11/14 15:18:16 adam Exp $ DISTNAME= subliminal-2.1.0 PKGREVISION= 1 -CATEGORIES= textproc +CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=s/subliminal/} MAINTAINER= leot@NetBSD.org -HOMEPAGE= https://github.com/Diaoul/subliminal/ +HOMEPAGE= https://github.com/Diaoul/subliminal COMMENT= Video subtitles downloader LICENSE= mit @@ -25,16 +25,13 @@ DEPENDS+= ${PYPKGPREFIX}-requests>=2.0:. DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six DEPENDS+= ${PYPKGPREFIX}-stevedore>=1.20.0:../../devel/py-stevedore -.include "../../lang/python/egg.mk" - -.if ${_PYTHON_VERSION} < 33 -DEPENDS+= ${PYPKGPREFIX}-futures>=3.0:../../devel/py-futures -.endif - USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-dogpile-cache, py-stevedore + post-install: - ${MV} ${DESTDIR}${PREFIX}/bin/subliminal ${DESTDIR}${PREFIX}/bin/subliminal-${PYVERSSUFFIX} || ${TRUE} + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} subliminal subliminal-${PYVERSSUFFIX} || ${TRUE} -.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_163690309618900--