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 EB24E138350 for ; Tue, 7 Apr 2020 11:12:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D5C8E0BE0; Tue, 7 Apr 2020 11:12:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 031B3E0BE0 for ; Tue, 7 Apr 2020 11:12:30 +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 CE29D34F0B5 for ; Tue, 7 Apr 2020 11:12:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A3801B9 for ; Tue, 7 Apr 2020 11:12:28 +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: <1586257637.c0ce8a6b54bee385e4dc74e660eb2c37836f1922.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-themes/obsidian2-gtk-theme/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-9999.ebuild X-VCS-Directories: x11-themes/obsidian2-gtk-theme/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: c0ce8a6b54bee385e4dc74e660eb2c37836f1922 X-VCS-Branch: master Date: Tue, 7 Apr 2020 11:12:28 +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: a1077b90-90dc-4fdd-a7d6-cb8e2b7f4c5b X-Archives-Hash: a1f125138a8026bfbcf63310009719ec commit: c0ce8a6b54bee385e4dc74e660eb2c37836f1922 Author: Huang Rui gmail com> AuthorDate: Tue Apr 7 11:07:16 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Apr 7 11:07:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0ce8a6b x11-themes/obsidian2-gtk-theme: add live build User could get latest software Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Huang Rui gmail.com> .../obsidian2-gtk-theme-9999.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-9999.ebuild b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-9999.ebuild new file mode 100644 index 0000000..2f36c01 --- /dev/null +++ b/x11-themes/obsidian2-gtk-theme/obsidian2-gtk-theme-9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +GIT_PN="theme-obsidian-2" + +DESCRIPTION="Obsidian Gnome Theme, based upon Adwaita-Maia dark skin" + +HOMEPAGE="https://github.com/madmaxms/${GIT_PN}" + +if [[ ${PV} == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/madmaxms/${GIT_PN}.git" +else + SRC_URI="https://github.com/madmaxms/${GIT_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + S="${WORKDIR}/${GIT_PN}-${PV}" +fi + +LICENSE="GPL-3" +SLOT="0" + +RDEPEND=" + >=x11-libs/gtk+-3.22 + x11-themes/gtk-engines-adwaita +" +DEPEND="${RDEPEND}" + +DOCS=( README.md ) + +src_install() { + insinto /usr/share/themes + doins -r Obsidian* +}