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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 75CFA1381F3 for ; Thu, 27 Aug 2020 07:59:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91795E0C79; Thu, 27 Aug 2020 07:59:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77FCFE0C79 for ; Thu, 27 Aug 2020 07:59:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1418333BE0F for ; Thu, 27 Aug 2020 07:59:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BBBC32D for ; Thu, 27 Aug 2020 07:59:50 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1598428124.4cc6eff2056cd96388398d2a2c305e20bfcaa2d4.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/mpvpaper/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/mpvpaper/Manifest gui-apps/mpvpaper/mpvpaper-1.0.ebuild gui-apps/mpvpaper/mpvpaper-9999.ebuild X-VCS-Directories: gui-apps/mpvpaper/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 4cc6eff2056cd96388398d2a2c305e20bfcaa2d4 X-VCS-Branch: master Date: Thu, 27 Aug 2020 07:59:50 +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: 7f2a0a77-1908-432c-96c8-8f81a7333325 X-Archives-Hash: 7f37328b009f90c56e0020653d5628e2 commit: 4cc6eff2056cd96388398d2a2c305e20bfcaa2d4 Author: Matthias Coppens gmail com> AuthorDate: Wed Aug 26 07:48:31 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Wed Aug 26 07:48:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cc6eff2 gui-apps/mpvpaper: Add version 1.0 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Matthias Coppens gmail.com> gui-apps/mpvpaper/Manifest | 1 + .../mpvpaper/{mpvpaper-9999.ebuild => mpvpaper-1.0.ebuild} | 13 +++++++++++-- gui-apps/mpvpaper/mpvpaper-9999.ebuild | 13 +++++++++++-- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/gui-apps/mpvpaper/Manifest b/gui-apps/mpvpaper/Manifest new file mode 100644 index 0000000..ca9decd --- /dev/null +++ b/gui-apps/mpvpaper/Manifest @@ -0,0 +1 @@ +DIST mpvpaper-1.0.tar.gz 81679 BLAKE2B 2f5ef776ee71eb63c48d87d9513292aa73c318841538e11e890016ba4c8f5b21ea7a9145dc12af4675239686bd6b2706e662178c289cfcf08b7c2a07e3173a7b SHA512 8d17cfd0ddbf68d1f260ae9b4165dfa2aed57d471a5975fcc27c06e2371a1f80f916ef0dd9dbdd99c8e6aba9b3e5f607752703f45d4446090f68175400860031 diff --git a/gui-apps/mpvpaper/mpvpaper-9999.ebuild b/gui-apps/mpvpaper/mpvpaper-1.0.ebuild similarity index 59% copy from gui-apps/mpvpaper/mpvpaper-9999.ebuild copy to gui-apps/mpvpaper/mpvpaper-1.0.ebuild index a377822..6bc5409 100644 --- a/gui-apps/mpvpaper/mpvpaper-9999.ebuild +++ b/gui-apps/mpvpaper/mpvpaper-1.0.ebuild @@ -6,8 +6,17 @@ EAPI=7 DESCRIPTION="A video wallpaper program for wlroots based wayland compositors" HOMEPAGE="https://github.com/GhostNaN/mpvpaper" -inherit git-r3 meson -EGIT_REPO_URI="https://github.com/GhostNaN/mpvpaper.git" +inherit meson + +case "${PV}" in + 9999) + inherit git-r3 + EGIT_REPO_URI="https://github.com/GhostNaN/mpvpaper.git" + ;; + *) + SRC_URI="https://github.com/GhostNaN/mpvpaper/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +esac LICENSE="GPL-3" SLOT="0" diff --git a/gui-apps/mpvpaper/mpvpaper-9999.ebuild b/gui-apps/mpvpaper/mpvpaper-9999.ebuild index a377822..6bc5409 100644 --- a/gui-apps/mpvpaper/mpvpaper-9999.ebuild +++ b/gui-apps/mpvpaper/mpvpaper-9999.ebuild @@ -6,8 +6,17 @@ EAPI=7 DESCRIPTION="A video wallpaper program for wlroots based wayland compositors" HOMEPAGE="https://github.com/GhostNaN/mpvpaper" -inherit git-r3 meson -EGIT_REPO_URI="https://github.com/GhostNaN/mpvpaper.git" +inherit meson + +case "${PV}" in + 9999) + inherit git-r3 + EGIT_REPO_URI="https://github.com/GhostNaN/mpvpaper.git" + ;; + *) + SRC_URI="https://github.com/GhostNaN/mpvpaper/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +esac LICENSE="GPL-3" SLOT="0"