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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3675715808B for ; Sun, 17 Apr 2022 22:15:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 554FEE09A4; Sun, 17 Apr 2022 22:15:39 +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 C9288E09A4 for ; Sun, 17 Apr 2022 22:15:38 +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 5493F3414C2 for ; Sun, 17 Apr 2022 22:15:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA6C432A for ; Sun, 17 Apr 2022 22:15:35 +0000 (UTC) From: "Seth Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Seth Arnold" Message-ID: <1650232965.292be365aa29bae8fca23c55f8ac5bfaf054f1ed.Dotz0cat@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/walld/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/walld/Manifest app-misc/walld/metadata.xml app-misc/walld/walld-1.2.ebuild X-VCS-Directories: app-misc/walld/ X-VCS-Committer: Dotz0cat X-VCS-Committer-Name: Seth Arnold X-VCS-Revision: 292be365aa29bae8fca23c55f8ac5bfaf054f1ed X-VCS-Branch: dev Date: Sun, 17 Apr 2022 22:15:35 +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: 1495f006-be4d-4b0a-902f-ef096856bd6f X-Archives-Hash: eadc63416cafa9cefea108f37d4df69f commit: 292be365aa29bae8fca23c55f8ac5bfaf054f1ed Author: Seth Arnold gmail com> AuthorDate: Sun Apr 17 21:31:54 2022 +0000 Commit: Seth Arnold gmail com> CommitDate: Sun Apr 17 22:02:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=292be365 app-misc/walld: initial import Signed-off-by: Seth Arnold gmail.com> app-misc/walld/Manifest | 1 + app-misc/walld/metadata.xml | 13 +++++++++++++ app-misc/walld/walld-1.2.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-misc/walld/Manifest b/app-misc/walld/Manifest new file mode 100644 index 000000000..4e708852b --- /dev/null +++ b/app-misc/walld/Manifest @@ -0,0 +1 @@ +DIST walld-1.2.tar.gz 23622 BLAKE2B 021028bb5dead41f16e18e9243f50952bf40260e5322508c79e803e42253fea22e1890d69116ba9b5ad7d6c084c57c0d52f216b6c6adf998cee688d8f9b6cbd5 SHA512 8c1c5dc2c8bc657c6f71a82f6db50247b6803ae5845f1515d10e18021913d87c7e4d920e8c1f0e2d455a5a09f44770acf40fadd59f983a6c3a16f8d4178340d6 diff --git a/app-misc/walld/metadata.xml b/app-misc/walld/metadata.xml new file mode 100644 index 000000000..d021e3ca5 --- /dev/null +++ b/app-misc/walld/metadata.xml @@ -0,0 +1,13 @@ + + + + + Dotz0cat@gmail.com + Primary maintainer + + + A wallpaper daemon. + Walld automatically changes the wallpaper. It sets the wallpaper through feh. It changes the wallpaper by default every 30 minutes. + Walld has a feature that grabs the 16 most prominent colors from the wallpaper that it has set. Walld puts them in a file located at $HOME/.walld/colors. This file can be included in your .Xresources. Walld then reloads your .Xresources with xrdb. + + diff --git a/app-misc/walld/walld-1.2.ebuild b/app-misc/walld/walld-1.2.ebuild new file mode 100644 index 000000000..462dd9c1f --- /dev/null +++ b/app-misc/walld/walld-1.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="A Wallpaper daemon" +HOMEPAGE="https://github.com/Dotz0cat/walld" +SRC_URI="https://github.com/Dotz0cat/walld/archive/refs/tags/1.2.tar.gz -> walld-1.2.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-libs/libevent media-gfx/feh dev-libs/libconfig media-gfx/imagemagick" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr install +} + +pkg_postinst() { + optfeature "auto reload Xresources" x11-apps/xrdb +}