public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Oliver Freyermuth" <o.freyermuth@googlemail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/jwt-cpp/
Date: Sat, 26 Feb 2022 18:37:34 +0000 (UTC)	[thread overview]
Message-ID: <1645900652.38a6090ee31dc7234bbd9ce5b173861bafc5bb2a.freyermuth@gentoo> (raw)

commit:     38a6090ee31dc7234bbd9ce5b173861bafc5bb2a
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sat Feb 26 18:37:32 2022 +0000
Commit:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
CommitDate: Sat Feb 26 18:37:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=38a6090e

dev-cpp/jwt-cpp: Add version 0.4.0.

This older version is required by some dependencies.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>

 dev-cpp/jwt-cpp/Manifest                               |  1 +
 .../{jwt-cpp-0.6.0.ebuild => jwt-cpp-0.4.0.ebuild}     | 18 +++++++-----------
 dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild                   |  2 +-
 3 files changed, 9 insertions(+), 12 deletions(-)

diff --git a/dev-cpp/jwt-cpp/Manifest b/dev-cpp/jwt-cpp/Manifest
index 056eade7e..7ed5fadf1 100644
--- a/dev-cpp/jwt-cpp/Manifest
+++ b/dev-cpp/jwt-cpp/Manifest
@@ -1 +1,2 @@
+DIST jwt-cpp-0.4.0.tar.gz 64383 BLAKE2B 48de501a1fff851ada5ffc0554309f6f05943d6b6a459c8f002f8bcebb9be40d878fc7f39c2f4da7031b784421dd0530d8e50d5eadbdb924c5485fdcd2f04b85 SHA512 8a82accb396db8fb2f1a32b14459f6ff3f5d4c6dcb54dfe1a10751da093381c2dcfb92c6e1f4f2ae42ca0f25c96c02ea35f37b723afaaf6b2d458c1a6f4e6b62
 DIST jwt-cpp-0.6.0.tar.gz 275126 BLAKE2B 4bf9bed9b2aa9584b497b2ab4d1d2582d9b5e4ded402200ea3f70b0e6752338fd4e2ef9c5836c728a6907a0190209c7baeaecd26032ce64dc6bf12a23594f27b SHA512 b6d5ebb3a7eeb6fef9a1d41c707251d1ab05bf47920c280d5203f1b9ee5bf6f8e914cd2ffaed66550cfa6d78c34465d4cf86517a759d5f8739b429faf1c2c0ef

diff --git a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild b/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild
similarity index 73%
copy from dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild
copy to dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild
index f877455f8..9b41ae22f 100644
--- a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild
+++ b/dev-cpp/jwt-cpp/jwt-cpp-0.4.0.ebuild
@@ -22,34 +22,30 @@ SLOT="0"
 IUSE="doc +picojson test"
 
 DEPEND="${RDEPEND}
-	dev-cpp/nlohmann_json
 	dev-libs/openssl
 	picojson? ( dev-cpp/picojson )"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 RESTRICT="!picojson? ( test )"
-DOCS=( README.md docs/{faqs,ssl,traits}.md )
 
 src_prepare() {
-	# Unbundle dev-cpp/nlohmann_json.
-	rm -vrf include/nhlomann || die
 	# Unbundle dev-cpp/picojson and fix include paths.
 	# See also: https://github.com/Thalhammer/jwt-cpp/issues/213
 	rm -vrf include/picojson || die
 	find -name '*.h' -type f -print0 | xargs -0 sed -r -e "s:picojson/picojson\.h:picojson.h:g" -i || die
 	# Prevent installation of bundled dev-cpp/picojson.
-	sed -i -e 's:^\s*install.*picojson/picojson\.h.*$::' CMakeLists.txt || die
+	sed -i -e 's:^\s*install.*include/picojson.*$::' CMakeLists.txt || die
+	# Fix installation paths for .cmake files.
+	sed -i -e 's:DESTINATION ${CMAKE_INSTALL_PREFIX}/jwt-cpp:DESTINATION ${CMAKE_INSTALL_PREFIX}/share/jwt-cpp:' CMakeLists.txt || die
+	sed -i -e 's:DESTINATION jwt-cpp:DESTINATION ${CMAKE_INSTALL_PREFIX}/share/jwt-cpp:' CMakeLists.txt || die
 	cmake_src_prepare
 }
 
 src_configure() {
 	local mycmakeargs=(
-			-DJWT_DISABLE_PICOJSON="$(usex picojson OFF ON)"
-			# Not useful for now, asks for non-existend CMake module.
+			# Not useful for now, asks for non-existent CMake module.
 			#-DJWT_EXTERNAL_PICOJSON="$(usex picojson)"
 			# Examples are not installed and for development only.
-			-DJWT_BUILD_EXAMPLES=NO
-			-DJWT_BUILD_TESTS="$(usex test)"
-			-DJWT_CMAKE_FILES_INSTALL_DIR="${EPREFIX}"/usr/share/cmake
+			-DBUILD_TESTS="$(usex test)"
 			)
 	cmake_src_configure
 }
@@ -63,7 +59,7 @@ src_compile() {
 
 src_install() {
 	cmake_src_install
-	use doc && local HTML_DOCS=(doxy/html/.)
+	use doc && local HTML_DOCS=(docs/html/.)
 	einstalldocs
 }
 

diff --git a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild b/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild
index f877455f8..fe1a3e1ff 100644
--- a/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild
+++ b/dev-cpp/jwt-cpp/jwt-cpp-0.6.0.ebuild
@@ -44,7 +44,7 @@ src_prepare() {
 src_configure() {
 	local mycmakeargs=(
 			-DJWT_DISABLE_PICOJSON="$(usex picojson OFF ON)"
-			# Not useful for now, asks for non-existend CMake module.
+			# Not useful for now, asks for non-existent CMake module.
 			#-DJWT_EXTERNAL_PICOJSON="$(usex picojson)"
 			# Examples are not installed and for development only.
 			-DJWT_BUILD_EXAMPLES=NO


             reply	other threads:[~2022-02-26 18:37 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-26 18:37 Oliver Freyermuth [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-06-09  8:32 [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/jwt-cpp/ Oliver Freyermuth
2022-03-08  8:17 Oliver Freyermuth
2022-03-05 16:40 Oliver Freyermuth
2022-02-27 14:28 Oliver Freyermuth
2022-02-26 18:06 Oliver Freyermuth
2022-02-26 17:52 Oliver Freyermuth
2022-02-26 17:41 Oliver Freyermuth

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1645900652.38a6090ee31dc7234bbd9ce5b173861bafc5bb2a.freyermuth@gentoo \
    --to=o.freyermuth@googlemail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox