commit: 2df4ca03a9f273052be358b3cd7897339a9c8b82 Author: Timur Kuprava <kupravagoodman <AT> proton <DOT> me> AuthorDate: Fri Jun 6 13:55:27 2025 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Fri Jun 6 13:56:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2df4ca03
app-misc/arttime: new package Signed-off-by: Timur Kuprava <kupravagoodman <AT> proton.me> app-misc/arttime/Manifest | 1 + app-misc/arttime/arttime-2.3.4.ebuild | 43 +++++++++++++++++++++++++++++++++++ app-misc/arttime/metadata.xml | 12 ++++++++++ 3 files changed, 56 insertions(+) diff --git a/app-misc/arttime/Manifest b/app-misc/arttime/Manifest new file mode 100644 index 0000000000..7c6d3b0700 --- /dev/null +++ b/app-misc/arttime/Manifest @@ -0,0 +1 @@ +DIST arttime-2.3.4.tar.gz 399323 BLAKE2B 5ca50c452f954030f4f78d9be743f706c062b41e85dc33927b4ad067dd8c34e0b788a1ad1a70905a3df66f77dea0472b500b9994ac324334fd95f7732836a7db SHA512 a1cd26647e5566ffd3013d6dbd55677e62db466db284a18a70244c02a0e730c85587f141292a30b3e537378fb10d5a855550ba25be76d6b2da690de890cc15e0 diff --git a/app-misc/arttime/arttime-2.3.4.ebuild b/app-misc/arttime/arttime-2.3.4.ebuild new file mode 100644 index 0000000000..76fac115f9 --- /dev/null +++ b/app-misc/arttime/arttime-2.3.4.ebuild @@ -0,0 +1,43 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="CLI application that blends beauty of ASCII" +HOMEPAGE="https://github.com/poetaman/arttime" +SRC_URI="https://github.com/poetaman/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="~amd64" +IUSE="notify" + +DEPEND=" + app-shells/zsh + notify? ( x11-libs/libnotify ) +" +RDEPEND=" + ${DEPEND} +" + +src_prepare() { + default + gunzip share/man/man1/arttime.1.gz || die + gunzip share/man/man1/artprint.1.gz || die +} + + +src_install() { + dobin bin/arttime + dobin bin/artprint + + insinto /usr/share/${PN} + doins -r share/${PN}/src + doins -r share/${PN}/textart + doins -r share/${PN}/keypoems + + doman share/man/man1/arttime.1 + doman share/man/man1/artprint.1 + + dodoc README.md +} diff --git a/app-misc/arttime/metadata.xml b/app-misc/arttime/metadata.xml new file mode 100644 index 0000000000..265e1f67c6 --- /dev/null +++ b/app-misc/arttime/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?>Add commentMore actions +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Timur Kuprava</name> + </maintainer> + <upstream> + <bugs-to>https://github.com/poetaman/arttime/issues</bugs-to> + <remote-id type="github">poetaman/arttime</remote-id> + </upstream> +</pkgmetadata>
