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 7E4A2158086 for ; Fri, 26 Nov 2021 10:33:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B581E07EC; Fri, 26 Nov 2021 10:33:11 +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 C9013E07EC for ; Fri, 26 Nov 2021 10:33:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4EB4C342E0F for ; Fri, 26 Nov 2021 10:33:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A712E1DA for ; Fri, 26 Nov 2021 10:33:06 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1637922784.ddbf062159321c203f918f3795c076521073576f.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/ansilove/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/ansilove/Manifest media-gfx/ansilove/ansilove-4.1.5.ebuild media-gfx/ansilove/ansilove-9999.ebuild media-gfx/ansilove/metadata.xml X-VCS-Directories: media-gfx/ansilove/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: ddbf062159321c203f918f3795c076521073576f X-VCS-Branch: master Date: Fri, 26 Nov 2021 10:33:06 +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: f2ed7731-46f8-4bf9-9718-70321bdc20d1 X-Archives-Hash: 9d3ca2b4ec5894202da831ad1c2a502c commit: ddbf062159321c203f918f3795c076521073576f Author: Maciej Barć gentoo org> AuthorDate: Fri Nov 26 10:25:33 2021 +0000 Commit: Maciej Barć gentoo org> CommitDate: Fri Nov 26 10:33:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddbf0621 media-gfx/ansilove: new package; add version 4.1.5 and live Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Maciej Barć gentoo.org> media-gfx/ansilove/Manifest | 1 + media-gfx/ansilove/ansilove-4.1.5.ebuild | 30 ++++++++++++++++++++++++++++++ media-gfx/ansilove/ansilove-9999.ebuild | 30 ++++++++++++++++++++++++++++++ media-gfx/ansilove/metadata.xml | 26 ++++++++++++++++++++++++++ 4 files changed, 87 insertions(+) diff --git a/media-gfx/ansilove/Manifest b/media-gfx/ansilove/Manifest new file mode 100644 index 000000000000..a37ef743844a --- /dev/null +++ b/media-gfx/ansilove/Manifest @@ -0,0 +1 @@ +DIST ansilove-4.1.5.tar.gz 41325 BLAKE2B fa0943406b5a905f30fd114ed9760a37da1bcb7bd8bb7575272d1cffadaf0302650c65af64e97f911cff7b9eb4283bedd6fc0fc13c9aa5be88c582c44925c30b SHA512 a84253b07d82b4d0598cf6936115476933636a978805fe243a671bbdbe15d0e589b45f9e4d7b6137e5f7ab22559b9d1a84a0508db5226ccc17e20687e190e553 diff --git a/media-gfx/ansilove/ansilove-4.1.5.ebuild b/media-gfx/ansilove/ansilove-4.1.5.ebuild new file mode 100644 index 000000000000..747102f7845f --- /dev/null +++ b/media-gfx/ansilove/ansilove-4.1.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="ANSI and ASCII art to PNG converter (using libansilove)" +HOMEPAGE="https://github.com/ansilove/ansilove/" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ansilove/${PN}.git" +else + SRC_URI="https://github.com/ansilove/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="BSD-2" +SLOT="0" + +RDEPEND="dev-libs/libansilove" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DENABLE_SECCOMP=NO + ) + cmake_src_configure +} diff --git a/media-gfx/ansilove/ansilove-9999.ebuild b/media-gfx/ansilove/ansilove-9999.ebuild new file mode 100644 index 000000000000..747102f7845f --- /dev/null +++ b/media-gfx/ansilove/ansilove-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="ANSI and ASCII art to PNG converter (using libansilove)" +HOMEPAGE="https://github.com/ansilove/ansilove/" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/ansilove/${PN}.git" +else + SRC_URI="https://github.com/ansilove/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="BSD-2" +SLOT="0" + +RDEPEND="dev-libs/libansilove" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DENABLE_SECCOMP=NO + ) + cmake_src_configure +} diff --git a/media-gfx/ansilove/metadata.xml b/media-gfx/ansilove/metadata.xml new file mode 100644 index 000000000000..30ea50ab6723 --- /dev/null +++ b/media-gfx/ansilove/metadata.xml @@ -0,0 +1,26 @@ + + + + + + xgqt@gentoo.org + Maciej Barć + + + AnsiLove is an ANSI and ASCII art to PNG converter, allowing to convert + ANSI and artscene-related file formats into PNG images, supporting ANSI + (.ANS), PCBoard (.PCB), Binary (.BIN), Artworx (.ADF), iCE Draw (.IDF), + Tundra (.TND) and XBin (.XB) formats. + It creates size optimized 4-bit PNG files and supports SAUCE (Standard + Architecture for Universal Comment Extensions), 80x25 and 80x50 PC fonts + (including all the 14 MS-DOS charsets), Amiga fonts, and iCE colors. + This is a complete rewrite of AnsiLove/PHP in the C programming language. + + + + https://github.com/ansilove/ansilove/blob/master/ChangeLog + + https://github.com/ansilove/ansilove/issues + ansilove/ansilove + +