From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 67FD015808B for ; Wed, 23 Feb 2022 14:39:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C36BE0822; Wed, 23 Feb 2022 14:39:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6F14DE0822 for ; Wed, 23 Feb 2022 14:39:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C48753430D8 for ; Wed, 23 Feb 2022 14:39:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF3AFD0 for ; Wed, 23 Feb 2022 14:39:48 +0000 (UTC) From: "Nicola Smaniotto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicola Smaniotto" Message-ID: <1645627187.7a53b7e385554fa0de85d799af365ec1f8ba71b1.smaniotto.nicola@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/trakt-scrobbler/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild X-VCS-Directories: media-video/trakt-scrobbler/ X-VCS-Committer: smaniotto.nicola X-VCS-Committer-Name: Nicola Smaniotto X-VCS-Revision: 7a53b7e385554fa0de85d799af365ec1f8ba71b1 X-VCS-Branch: dev Date: Wed, 23 Feb 2022 14:39:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 58f4f2c9-5882-40f0-8385-c57d838bbb06 X-Archives-Hash: fb6f5768f3267668c7da7944e402cb4a commit: 7a53b7e385554fa0de85d799af365ec1f8ba71b1 Author: Nicola Smaniotto gmail com> AuthorDate: Wed Feb 23 14:39:33 2022 +0000 Commit: Nicola Smaniotto gmail com> CommitDate: Wed Feb 23 14:39:47 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a53b7e3 media-video/trakt-scrobbler: install zsh completions Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Nicola Smaniotto gmail.com> media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild b/media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild index cd9dc863d..186dd58c8 100644 --- a/media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild +++ b/media-video/trakt-scrobbler/trakt-scrobbler-1.4.0.ebuild @@ -34,6 +34,13 @@ python_test(){ eunittest tests/ } +python_install() { + distutils-r1_python_install + + insinto "/usr/share/zsh/site-functions" + newins "${S}/completions/trakts.zsh" "_trakts" +} + pkg_postinst() { optfeature "start at boot support (see the trakts autostart command)" sys-apps/systemd }