added mastodon-cpp-0.10.1

This commit is contained in:
tastytea 2018-05-08 07:51:25 +02:00
parent 6a4fb6a789
commit 58327ea8ea
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 5 additions and 6 deletions

View File

@ -1,3 +1,2 @@
DIST mastodon-cpp-0.10.1.tar.gz 48709 BLAKE2B 67ff2680a2b3dc5c90c43981d1b558f809d37865a122136edc0aed5192df858682f465aa304b9dfd1d00b6a00778d494cc7fee7f0efc32af3884a4da4e002a36 SHA512 5b1557c5ec027c21d3d14b7067e473c131dde699592a2f434090979285ad2ee2f89b4e3a664264b99b1e5c42a4b271c565b2c008c34ea78927733c7b4290fd98
DIST mastodon-cpp-0.6.1.tar.gz 31334 BLAKE2B 1d3e39c9a27b7e3fddd505768b468f5045677d7fb2213f7ae9fbe07cb1a94e34109adac931ce8b36493f3c48dcdf7adb2bbfb8d94d9eaf27e816f04b34e893d3 SHA512 61717709e0ab674a313cd5d5673deceee565f331d95fc3623400afd9b75c7bc4ff12987e38dbdfd24e36c5138c99c8976d8926dd72766029e04d047613dfabcb
EBUILD mastodon-cpp-0.6.1.ebuild 1229 BLAKE2B 4f94cc34d9ac7fb3d3bba0d22eb105e636a1f33094bab327ce8cd13f201318573261a66ac17c56c5cef2175bf882fb4705958981536a63bd970f2dae5e8e6729 SHA512 6faa8891603c81fea4db464699d550bc36c8e4e3181ced620d5a93fcd0e9f0bb523f5d6054fdd461348d6255c0532ab8d94e61715f0dbfdabdda965a06678b0f
EBUILD mastodon-cpp-9999.ebuild 1363 BLAKE2B e06a8f8f676e04c3fb05389c170917388b46ef93a8b2371811a758eaa550fc028f67a64694261b2a64e00f38feebbc217629816d9860bb9cf8df3cfd59d4a63c SHA512 fb5d7faf9e08d3c0b4a04ac450ea681bd091f2804c70f9220cdfdbd56a5ab3a4e41a45690168214bc559e11437ae5ef2d98af1029b9cb0853b2e8535c602a208

View File

@ -3,13 +3,13 @@ inherit cmake-utils
DESCRIPTION="mastodon-cpp is a C++ wrapper for the Mastodon API."
HOMEPAGE="https://github.com/tastytea/mastodon-cpp"
SRC_URI="https://github.com/tastytea/mastodon-cpp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI="https://github.com/tastytea/mastodon-cpp/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE="doc debug examples"
RDEPEND=">=dev-cpp/curlpp-0.8.1
examples? ( >=dev-libs/boost-1.63.0 )"
RDEPEND=">=dev-cpp/curlpp-0.7.3
>=dev-libs/jsoncpp-1.8.1"
DEPEND=">=dev-util/cmake-3.9.6
doc? ( >=app-doc/doxygen-1.8.13-r1 )
${RDEPEND}"
@ -44,7 +44,7 @@ src_install() {
if use examples; then
docinto examples
for file in src/examples/*.cpp; do
for file in examples/*.cpp; do
dodoc ${file}
done
fi