From f8ca58ad6502dd0e0b91c1fce2004dc7ce283766 Mon Sep 17 00:00:00 2001 From: "Ronny (tastytea) Gutbrod" Date: Fri, 27 Nov 2020 15:18:00 +0100 Subject: [PATCH] dev-cpp/mastodonpp: New package. C++ wrapper for the Mastodon and Pleroma APIs. Signed-off-by: Ronny (tastytea) Gutbrod --- dev-cpp/mastodonpp/Manifest | 1 + dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild | 59 ++++++++++++++++++++++ dev-cpp/mastodonpp/mastodonpp-9999.ebuild | 59 ++++++++++++++++++++++ dev-cpp/mastodonpp/metadata.xml | 16 ++++++ 4 files changed, 135 insertions(+) create mode 100644 dev-cpp/mastodonpp/Manifest create mode 100644 dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild create mode 100644 dev-cpp/mastodonpp/mastodonpp-9999.ebuild create mode 100644 dev-cpp/mastodonpp/metadata.xml diff --git a/dev-cpp/mastodonpp/Manifest b/dev-cpp/mastodonpp/Manifest new file mode 100644 index 0000000000..0d31c4cf3f --- /dev/null +++ b/dev-cpp/mastodonpp/Manifest @@ -0,0 +1 @@ +DIST mastodonpp-0.5.7.tar.gz 48181 BLAKE2B cce2b9b61c3cb88a5246888d97b5495979b15e41b1e6d5499d09f00cd24fc94b78a983d634ec28dee0d537642294542235efa261faaa3320ab905f7196b16133 SHA512 83efbd32f7cde6a19546c21d99ed1c8b747ac995b69a5e87876bd0ea0aa9c932d0d255ed2cbe5b0fe4a92aec06d6c75d455f13e9537aade31176ec757916b27a diff --git a/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild b/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild new file mode 100644 index 0000000000..60770d518b --- /dev/null +++ b/dev-cpp/mastodonpp/mastodonpp-0.5.7.ebuild @@ -0,0 +1,59 @@ +# 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 +} diff --git a/dev-cpp/mastodonpp/mastodonpp-9999.ebuild b/dev-cpp/mastodonpp/mastodonpp-9999.ebuild new file mode 100644 index 0000000000..60770d518b --- /dev/null +++ b/dev-cpp/mastodonpp/mastodonpp-9999.ebuild @@ -0,0 +1,59 @@ +# 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 +} diff --git a/dev-cpp/mastodonpp/metadata.xml b/dev-cpp/mastodonpp/metadata.xml new file mode 100644 index 0000000000..a4a476a46d --- /dev/null +++ b/dev-cpp/mastodonpp/metadata.xml @@ -0,0 +1,16 @@ + + + + + gentoo@tastytea.de + Ronny (tastytea) Gutbrod + + + + tastytea + tastytea@tastytea.de + + https://doc.schlomp.space/mastodonpp/ + https://schlomp.space/tastytea/mastodonpp/issues + +