Received: by mail.netbsd.org (Postfix, from userid 605) id 34A3784DD4; Thu, 11 Mar 2021 10:02:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6FDD184D9A for ; Thu, 11 Mar 2021 10:02:20 +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 9vm1EQceR_9l for ; Thu, 11 Mar 2021 10:02:20 +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 E7E6384CDB for ; Thu, 11 Mar 2021 10:02:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DBBD2FA95; Thu, 11 Mar 2021 10:02:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1615456939249430" MIME-Version: 1.0 Date: Thu, 11 Mar 2021 10:02:19 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/youtube-dl To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210311100219.DBBD2FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1615456939249430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Mar 11 10:02:19 UTC 2021 Modified Files: pkgsrc/net/youtube-dl: Makefile PLIST Log Message: youtube-dl: Pull in missing part of previous patch. Installs bash completion file with the correct naming. Ride previous PKGREVISION bumps. To generate a diff of this commit: cvs rdiff -u -r1.233 -r1.234 pkgsrc/net/youtube-dl/Makefile cvs rdiff -u -r1.110 -r1.111 pkgsrc/net/youtube-dl/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1615456939249430 Content-Disposition: inline Content-Length: 1730 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/youtube-dl/Makefile diff -u pkgsrc/net/youtube-dl/Makefile:1.233 pkgsrc/net/youtube-dl/Makefile:1.234 --- pkgsrc/net/youtube-dl/Makefile:1.233 Thu Mar 11 07:39:50 2021 +++ pkgsrc/net/youtube-dl/Makefile Thu Mar 11 10:02:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.233 2021/03/11 07:39:50 wiz Exp $ +# $NetBSD: Makefile,v 1.234 2021/03/11 10:02:19 jperkin Exp $ # XXX: VERSION_DATE can contains also an optional part that indicates # XXX: possible same day revisions. PKGNAME preserves that dotted part as is. @@ -23,5 +23,9 @@ SUBST_STAGE.pkgmandir= pre-configure SUBST_FILES.pkgmandir= setup.py SUBST_VARS.pkgmandir= PKGMANDIR +post-install: + ${MV} ${DESTDIR}${PREFIX}/share/bash-completion/completions/youtube-dl.bash-completion \ + ${DESTDIR}${PREFIX}/share/bash-completion/completions/youtube-dl + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/net/youtube-dl/PLIST diff -u pkgsrc/net/youtube-dl/PLIST:1.110 pkgsrc/net/youtube-dl/PLIST:1.111 --- pkgsrc/net/youtube-dl/PLIST:1.110 Thu Mar 11 07:39:50 2021 +++ pkgsrc/net/youtube-dl/PLIST Thu Mar 11 10:02:19 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.110 2021/03/11 07:39:50 wiz Exp $ +@comment $NetBSD: PLIST,v 1.111 2021/03/11 10:02:19 jperkin Exp $ bin/youtube-dl ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -2451,6 +2451,6 @@ ${PYSITELIB}/youtube_dl/version.py ${PYSITELIB}/youtube_dl/version.pyc ${PYSITELIB}/youtube_dl/version.pyo man/man1/youtube-dl.1 -share/bash-completion/completions/youtube-dl.bash-completion +share/bash-completion/completions/youtube-dl share/doc/youtube_dl/README.txt share/fish/completions/youtube-dl.fish --_----------=_1615456939249430--