public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/wt/
Date: Tue,  1 Oct 2024 14:58:28 +0000 (UTC)	[thread overview]
Message-ID: <1727791757.bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88.davidroman@gentoo> (raw)

commit:     bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 14:09:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct  1 14:09:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc25e0cd

dev-cpp/wt: add 4.11.0

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/Manifest         |  1 +
 dev-cpp/wt/wt-4.11.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-cpp/wt/Manifest b/dev-cpp/wt/Manifest
index dc7f45196..ab6cd4ddc 100644
--- a/dev-cpp/wt/Manifest
+++ b/dev-cpp/wt/Manifest
@@ -1 +1,2 @@
 DIST wt-4.10.4.tar.gz 10449928 BLAKE2B 19516d506612590fda1ba626487631397102c5634772e3435a911470d85da42803885368996a59a816400eaf623baad07dccd23c9fe769c6965b27372575aa23 SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71
+DIST wt-4.11.0.tar.gz 10562160 BLAKE2B 5238f279c8899d976ce03b7840a4600bd22e54c8aede1cb908e3949278e61778361ccd67e3ea065f90875c15acad89553a87972078bb983857b871520ccf6669 SHA512 b437d822793261e57bb3a6024ec3fd06a7080ff053bc587e9e89f8d24c010158991827f925f0b59d43371aeeebdfc53983abd29a6c46ecf46b67bd923ca81e5a

diff --git a/dev-cpp/wt/wt-4.11.0.ebuild b/dev-cpp/wt/wt-4.11.0.ebuild
new file mode 100644
index 000000000..27ba7c4f3
--- /dev/null
+++ b/dev-cpp/wt/wt-4.11.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Wt, C++ Web Toolkit"
+HOMEPAGE="https://www.webtoolkit.eu/wt https://github.com/emweb/wt"
+SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc firebird mysql opengl pdf postgres ssl"
+
+DEPEND="
+	firebird? ( dev-db/firebird )
+	mysql? ( virtual/mysql )
+	opengl? ( virtual/opengl )
+	postgres? ( dev-db/postgresql )
+	ssl? ( dev-libs/openssl )
+	<dev-libs/boost-1.85.0:=
+	media-libs/libharu
+	media-gfx/graphicsmagick[jpeg,png]
+	x11-libs/pango
+	sys-libs/zlib
+"
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	doc? (
+		app-text/doxygen[dot]
+		dev-qt/qtchooser
+		dev-qt/qthelp
+	)
+"
+# for qt6 dev-qt/qttools[qdoc]
+
+PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
+
+src_configure() {
+	# TODO
+	#-DENABLE_QT6=$(usex qt6)
+
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+		-DBUILD_EXAMPLES=OFF
+		-DINSTALL_DOCUMENTATION=$(usex doc)
+		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
+		-DENABLE_SSL=$(usex ssl)
+		-DENABLE_HARU=$(usex pdf)
+		-DENABLE_PANGO=ON
+		-DENABLE_SQLITE=ON
+		-DENABLE_POSTGRES=$(usex postgres)
+		-DENABLE_FIREBIRD=$(usex firebird)
+		-DENABLE_MYSQL=$(usex mysql)
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=ON
+		-DENABLE_SAML=ON
+		-DENABLE_OPENGL=$(usex opengl)
+	)
+
+	cmake_src_configure
+}


WARNING: multiple messages have this Message-ID (diff)
From: "David Roman" <davidroman96@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/
Date: Tue,  1 Oct 2024 14:10:42 +0000 (UTC)	[thread overview]
Message-ID: <1727791757.bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88.davidroman@gentoo> (raw)
Message-ID: <20241001141042.2_kSb1HOGpzMg4pNsacb8aRMzbuc3X7CZ56mV315ZhY@z> (raw)

commit:     bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Tue Oct  1 14:09:17 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Tue Oct  1 14:09:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc25e0cd

dev-cpp/wt: add 4.11.0

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 dev-cpp/wt/Manifest         |  1 +
 dev-cpp/wt/wt-4.11.0.ebuild | 65 +++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/dev-cpp/wt/Manifest b/dev-cpp/wt/Manifest
index dc7f45196..ab6cd4ddc 100644
--- a/dev-cpp/wt/Manifest
+++ b/dev-cpp/wt/Manifest
@@ -1 +1,2 @@
 DIST wt-4.10.4.tar.gz 10449928 BLAKE2B 19516d506612590fda1ba626487631397102c5634772e3435a911470d85da42803885368996a59a816400eaf623baad07dccd23c9fe769c6965b27372575aa23 SHA512 f41efec1e77bd76f6f66ffb4ff38c98cfc590debb194682e3c6eb3f7b4366c30f8e2bbc16f4c33faa45f6f49d28812215538d20f4abc6c4dc3a226ae9b10ac71
+DIST wt-4.11.0.tar.gz 10562160 BLAKE2B 5238f279c8899d976ce03b7840a4600bd22e54c8aede1cb908e3949278e61778361ccd67e3ea065f90875c15acad89553a87972078bb983857b871520ccf6669 SHA512 b437d822793261e57bb3a6024ec3fd06a7080ff053bc587e9e89f8d24c010158991827f925f0b59d43371aeeebdfc53983abd29a6c46ecf46b67bd923ca81e5a

diff --git a/dev-cpp/wt/wt-4.11.0.ebuild b/dev-cpp/wt/wt-4.11.0.ebuild
new file mode 100644
index 000000000..27ba7c4f3
--- /dev/null
+++ b/dev-cpp/wt/wt-4.11.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Wt, C++ Web Toolkit"
+HOMEPAGE="https://www.webtoolkit.eu/wt https://github.com/emweb/wt"
+SRC_URI="https://github.com/emweb/wt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc firebird mysql opengl pdf postgres ssl"
+
+DEPEND="
+	firebird? ( dev-db/firebird )
+	mysql? ( virtual/mysql )
+	opengl? ( virtual/opengl )
+	postgres? ( dev-db/postgresql )
+	ssl? ( dev-libs/openssl )
+	<dev-libs/boost-1.85.0:=
+	media-libs/libharu
+	media-gfx/graphicsmagick[jpeg,png]
+	x11-libs/pango
+	sys-libs/zlib
+"
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	doc? (
+		app-text/doxygen[dot]
+		dev-qt/qtchooser
+		dev-qt/qthelp
+	)
+"
+# for qt6 dev-qt/qttools[qdoc]
+
+PATCHES=( "${FILESDIR}/wt-no-rundir.patch")
+
+src_configure() {
+	# TODO
+	#-DENABLE_QT6=$(usex qt6)
+
+	local mycmakeargs=(
+		-DLIB_INSTALL_DIR=$(get_libdir)
+		-DBUILD_EXAMPLES=OFF
+		-DINSTALL_DOCUMENTATION=$(usex doc)
+		-DDOCUMENTATION_DESTINATION="share/doc/${PF}"
+		-DENABLE_SSL=$(usex ssl)
+		-DENABLE_HARU=$(usex pdf)
+		-DENABLE_PANGO=ON
+		-DENABLE_SQLITE=ON
+		-DENABLE_POSTGRES=$(usex postgres)
+		-DENABLE_FIREBIRD=$(usex firebird)
+		-DENABLE_MYSQL=$(usex mysql)
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=ON
+		-DENABLE_SAML=ON
+		-DENABLE_OPENGL=$(usex opengl)
+	)
+
+	cmake_src_configure
+}


             reply	other threads:[~2024-10-01 14:58 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-01 14:58 David Roman [this message]
2024-10-01 14:10 ` [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/wt/ David Roman
  -- strict thread matches above, loose matches on Subject: below --
2025-01-23 14:47 David Roman
2025-01-23 15:30 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-12-18 13:54 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-12-18 17:21 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-11-12 11:05 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-11-12 13:20 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-10-14 12:53 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-10-14 13:17 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-10-14  9:04 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-10-14  9:23 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-10-07  9:14 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-10-07 10:03 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-03-22 21:28 Julien Roy
2024-03-22 13:37 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-03-22 13:38 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-03-11 17:31 David Roman
2024-03-11 14:06 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-03-11 17:31 ` [gentoo-commits] repo/proj/guru:master " David Roman
2024-02-28  7:19 Florian Schmaus
2024-02-22 15:53 [gentoo-commits] repo/proj/guru:dev " David Roman
2024-02-23  1:36 ` [gentoo-commits] repo/proj/guru:master " David Roman

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=1727791757.bc25e0cd71cb2ab486a37ecde2ce15847fa6aa88.davidroman@gentoo \
    --to=davidroman96@gmail.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