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 B99B0138350 for ; Tue, 7 Apr 2020 07:53:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11607E0DC2; Tue, 7 Apr 2020 07:53:07 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 F07AFE0DC2 for ; Tue, 7 Apr 2020 07:53:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 CE3C834EDA4 for ; Tue, 7 Apr 2020 07:53:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E20E166 for ; Tue, 7 Apr 2020 07:53:04 +0000 (UTC) From: "Rui Huang" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rui Huang" Message-ID: <1586245973.73826d7a5351ea129957c835c11f082cc9817a4a.vowstar@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: x11-themes/obsidian-icon-theme/ X-VCS-Repository: repo/proj/guru X-VCS-Files: x11-themes/obsidian-icon-theme/obsidian-icon-theme-9999.ebuild X-VCS-Directories: x11-themes/obsidian-icon-theme/ X-VCS-Committer: vowstar X-VCS-Committer-Name: Rui Huang X-VCS-Revision: 73826d7a5351ea129957c835c11f082cc9817a4a X-VCS-Branch: dev Date: Tue, 7 Apr 2020 07:53:04 +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: aeebe3aa-c53b-4759-906c-20fc998bd0d2 X-Archives-Hash: e7d3569597c85fef1f35bce66f9e5720 commit: 73826d7a5351ea129957c835c11f082cc9817a4a Author: Huang Rui gmail com> AuthorDate: Tue Apr 7 07:52:52 2020 +0000 Commit: Rui Huang gmail com> CommitDate: Tue Apr 7 07:52:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=73826d7a x11-themes/obsidian-icon-theme: add live build User could install the latest software Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Huang Rui gmail.com> .../obsidian-icon-theme-9999.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-themes/obsidian-icon-theme/obsidian-icon-theme-9999.ebuild b/x11-themes/obsidian-icon-theme/obsidian-icon-theme-9999.ebuild new file mode 100644 index 0000000..88b104d --- /dev/null +++ b/x11-themes/obsidian-icon-theme/obsidian-icon-theme-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +GIT_PN="iconpack-obsidian" + +DESCRIPTION="Obsidian Icon Theme is intuitive Faenza-like icon theme" + +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" +fi + +LICENSE="GPL-3" +SLOT="0" + +RDEPEND=" + x11-themes/adwaita-icon-theme +" + +DEPEND="${RDEPEND}" + +DOCS=( README.md ) + +src_install() { + insinto /usr/share/icons + doins -r Obsidian* +}