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 A3865158094 for ; Tue, 2 Aug 2022 10:55:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B25AE0D2B; Tue, 2 Aug 2022 10:55:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50D89E0D1D for ; Tue, 2 Aug 2022 10:55:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2E42B340D8A for ; Tue, 2 Aug 2022 10:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D01056D for ; Tue, 2 Aug 2022 10:55:17 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1659357503.fcb6d7fca59107799005defe893603df5452b793.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/mastodonpp/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild X-VCS-Directories: dev-cpp/mastodonpp/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: fcb6d7fca59107799005defe893603df5452b793 X-VCS-Branch: master Date: Tue, 2 Aug 2022 10:55:17 +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: 4c228a81-ffcd-479f-9771-f8d521fb6585 X-Archives-Hash: a9e464afd96ee76c7faf13fa15dfb14d commit: fcb6d7fca59107799005defe893603df5452b793 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Mon Aug 1 12:38:23 2022 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Mon Aug 1 12:38:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fcb6d7fc dev-cpp/mastodonpp: drop 0.5.7 Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild | 59 ------------------------------ 1 file changed, 59 deletions(-) diff --git a/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild b/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild deleted file mode 100644 index 60770d518..000000000 --- a/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake -[[ "${PV}" == "9999" ]] && inherit git-r3 - -DESCRIPTION="C++ wrapper for the Mastodon and Pleroma APIs." -HOMEPAGE="https://schlomp.space/tastytea/mastodonpp" -if [[ "${PV}" != "9999" ]]; then - SRC_URI="https://schlomp.space/tastytea/mastodonpp/archive/${PV}.tar.gz -> ${P}.tar.gz" - S="${WORKDIR}/${PN}" - KEYWORDS="~amd64" -else - EGIT_REPO_URI="https://schlomp.space/tastytea/mastodonpp.git" -fi - -LICENSE="AGPL-3" -SLOT="0" -IUSE="doc examples test" - -RDEPEND=">=net-misc/curl-7.56.0[ssl]" -DEPEND="${RDEPEND}" -BDEPEND=" - doc? ( app-doc/doxygen[dot] ) - test? ( dev-cpp/catch ) -" - -RESTRICT="!test? ( test )" - -src_configure() { - local mycmakeargs=( - -DWITH_EXAMPLES=NO - -DWITH_TESTS="$(usex test)" - -DWITH_DOC="$(usex doc)" - ) - - cmake_src_configure -} - -src_test() { - BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test -} - -src_install() { - if use doc; then - HTML_DOCS="${BUILD_DIR}/doc/html/*" - fi - - if use examples; then - docinto examples - for file in examples/*.cpp; do - dodoc ${file} - done - fi - - cmake_src_install -}