public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/mastodonpp/
@ 2020-11-27 14:36 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2020-11-27 14:36 UTC (permalink / raw
  To: gentoo-commits

commit:     f8ca58ad6502dd0e0b91c1fce2004dc7ce283766
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Nov 27 14:18:00 2020 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Nov 27 14:28:39 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f8ca58ad

dev-cpp/mastodonpp: New package.

C++ wrapper for the Mastodon and Pleroma APIs.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 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(+)

diff --git a/dev-cpp/mastodonpp/Manifest b/dev-cpp/mastodonpp/Manifest
new file mode 100644
index 00000000..0d31c4cf
--- /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 00000000..60770d51
--- /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 00000000..60770d51
--- /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 00000000..a4a476a4
--- /dev/null
+++ b/dev-cpp/mastodonpp/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gentoo@tastytea.de</email>
+		<name>Ronny (tastytea) Gutbrod</name>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<name>tastytea</name>
+			<email>tastytea@tastytea.de</email>
+		</maintainer>
+		<doc>https://doc.schlomp.space/mastodonpp/</doc>
+		<bugs-to>https://schlomp.space/tastytea/mastodonpp/issues</bugs-to>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/mastodonpp/
@ 2022-08-01 12:41 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2022-08-01 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     fcb6d7fca59107799005defe893603df5452b793
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Aug  1 12:38:23 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
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 <gentoo <AT> 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
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/mastodonpp/
@ 2022-08-01 12:41 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2022-08-01 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     cf91875627ce4f09289f3eb8117c4af16dcd4fe0
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Aug  1 12:37:47 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Aug  1 12:37:47 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf918756

dev-cpp/mastodonpp: EAPI 7 -> 8

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 dev-cpp/mastodonpp/mastodonpp-0.5.7-r1.ebuild | 2 +-
 dev-cpp/mastodonpp/mastodonpp-9999.ebuild     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-cpp/mastodonpp/mastodonpp-0.5.7-r1.ebuild b/dev-cpp/mastodonpp/mastodonpp-0.5.7-r1.ebuild
index 3f03ff4df..96ce9cef8 100644
--- a/dev-cpp/mastodonpp/mastodonpp-0.5.7-r1.ebuild
+++ b/dev-cpp/mastodonpp/mastodonpp-0.5.7-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake
 [[ "${PV}" == "9999" ]] && inherit git-r3

diff --git a/dev-cpp/mastodonpp/mastodonpp-9999.ebuild b/dev-cpp/mastodonpp/mastodonpp-9999.ebuild
index 60770d518..2be3056dc 100644
--- a/dev-cpp/mastodonpp/mastodonpp-9999.ebuild
+++ b/dev-cpp/mastodonpp/mastodonpp-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake
 [[ "${PV}" == "9999" ]] && inherit git-r3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/mastodonpp/
@ 2023-03-14 12:22 Ronny Gutbrod
  0 siblings, 0 replies; 4+ messages in thread
From: Ronny Gutbrod @ 2023-03-14 12:22 UTC (permalink / raw
  To: gentoo-commits

commit:     5fbd4d73860ebe1720379f4df7ae6653df1f4a1e
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Mar 14 12:16:54 2023 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Mar 14 12:21:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5fbd4d73

dev-cpp/mastodonpp: update Manifest

Closes: https://bugs.gentoo.org/901129
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 dev-cpp/mastodonpp/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/mastodonpp/Manifest b/dev-cpp/mastodonpp/Manifest
index 0d31c4cf3..889a38d4b 100644
--- a/dev-cpp/mastodonpp/Manifest
+++ b/dev-cpp/mastodonpp/Manifest
@@ -1 +1 @@
-DIST mastodonpp-0.5.7.tar.gz 48181 BLAKE2B cce2b9b61c3cb88a5246888d97b5495979b15e41b1e6d5499d09f00cd24fc94b78a983d634ec28dee0d537642294542235efa261faaa3320ab905f7196b16133 SHA512 83efbd32f7cde6a19546c21d99ed1c8b747ac995b69a5e87876bd0ea0aa9c932d0d255ed2cbe5b0fe4a92aec06d6c75d455f13e9537aade31176ec757916b27a
+DIST mastodonpp-0.5.7.tar.gz 48172 BLAKE2B 70dabcb041b5545a205f2f551800317faf6e94a72f7a1d1b20a49b5ab7cf1a8fa0744438c66e03d9d47975b90d6fe31f284c968d5314c248fa681361d3ca4013 SHA512 c837571bcf8ca01ad9dc7792e75d114fac97092edf45ce5d6392835eadea7cb4ad47f83f3f850f2b3a52dfdd31c3b637a0b4d1b6140edddf1291311352557bf9


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-14 12:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-27 14:36 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/mastodonpp/ Ronny Gutbrod
  -- strict thread matches above, loose matches on Subject: below --
2022-08-01 12:41 Ronny Gutbrod
2022-08-01 12:41 Ronny Gutbrod
2023-03-14 12:22 Ronny Gutbrod

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox