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 90914139360 for ; Sat, 7 Aug 2021 17:48:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D27D8E08FA; Sat, 7 Aug 2021 17:48:06 +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 BC8A6E08FA for ; Sat, 7 Aug 2021 17:48:06 +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 6BEAB342C92 for ; Sat, 7 Aug 2021 17:48:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A9068C8 for ; Sat, 7 Aug 2021 17:48:01 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1628358085.6c82bd8f95913720b420a383bd1dc4a2488b9c8c.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-doc/anarchism/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-doc/anarchism/Manifest app-doc/anarchism/anarchism-15.3.ebuild app-doc/anarchism/metadata.xml X-VCS-Directories: app-doc/anarchism/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 6c82bd8f95913720b420a383bd1dc4a2488b9c8c X-VCS-Branch: master Date: Sat, 7 Aug 2021 17:48:01 +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: 1c5cdafa-aacd-4c8b-b754-86eb8d10a825 X-Archives-Hash: 6dadb311ad787c712e10d93f621ead2d commit: 6c82bd8f95913720b420a383bd1dc4a2488b9c8c Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Sat Aug 7 17:30:36 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sat Aug 7 17:41:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c82bd8f app-doc/anarchism: New package. An anarchist FAQ. Uses the Debian repo as upstream, because the authors release no source files. Bug: https://bugs.gentoo.org/304413 Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> app-doc/anarchism/Manifest | 1 + app-doc/anarchism/anarchism-15.3.ebuild | 36 +++++++++++++++++++++++++++++++++ app-doc/anarchism/metadata.xml | 16 +++++++++++++++ 3 files changed, 53 insertions(+) diff --git a/app-doc/anarchism/Manifest b/app-doc/anarchism/Manifest new file mode 100644 index 000000000..ad4d8e8cb --- /dev/null +++ b/app-doc/anarchism/Manifest @@ -0,0 +1 @@ +DIST anarchism-15.3.tar.gz 8160295 BLAKE2B 522a2314e6c208a258104412b7620061f952c1a969a11a432cc14bc1a7037d89e0953e82033a9811d461831f9f30c9d0e1924b94e3b8e7deb33e44578ce3f80b SHA512 e0df7ddb8b042eceebf701ec7f8ff9344dc8abefbf2d13f9cf6615c06ff1250f0398ecc281f7c9e77ca49a15f86f04dfdd2f8ad50dc2062223df1c4231736046 diff --git a/app-doc/anarchism/anarchism-15.3.ebuild b/app-doc/anarchism/anarchism-15.3.ebuild new file mode 100644 index 000000000..cc6c06aa3 --- /dev/null +++ b/app-doc/anarchism/anarchism-15.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop + +DEBIAN_VERSION="${PV}-3" + +DESCRIPTION="An anarchist FAQ" +HOMEPAGE="http://www.anarchistfaq.org/afaq/index.html" +SRC_URI="https://salsa.debian.org/debian/anarchism/-/archive/debian/${DEBIAN_VERSION}/anarchism-debian-${DEBIAN_VERSION}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-debian-${DEBIAN_VERSION}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +src_prepare() { + sed -Ei "s|file://(/usr/share/doc/)anarchism|file://${EPREFIX}\1${P}|" \ + debian/anarchism.desktop || die + + default +} + +src_install() { + dodoc -r html markdown README.md + domenu debian/anarchism.desktop + doicon debian/anarchism.svg +} + +pkg_postinst() { + elog "If you wish to symlink the index, the path is /usr/share/doc/anarchism-${PV}/html/index.html" + elog "For example:" + elog "ln -s /usr/share/doc/anarchism-${PV}/html/index.html ~/Desktop/Anarchist\\ FAQ.html" +} diff --git a/app-doc/anarchism/metadata.xml b/app-doc/anarchism/metadata.xml new file mode 100644 index 000000000..56c89ccd1 --- /dev/null +++ b/app-doc/anarchism/metadata.xml @@ -0,0 +1,16 @@ + + + + + gentoo@tastytea.de + Ronny (tastytea) Gutbrod + + + The aim of the anarchist FAQ is to present what anarchism really stands + for and indicate why you should become an anarchist. + + + https://0xacab.org/ju/afaq/-/issues + + +