public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libical/
Date: Sat, 22 Oct 2022 15:31:12 +0000 (UTC)	[thread overview]
Message-ID: <1666452666.b7c2a67606e51aa44cda5ccc62bcfd2a845fb1fe.asturm@gentoo> (raw)

commit:     b7c2a67606e51aa44cda5ccc62bcfd2a845fb1fe
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 22 15:29:25 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct 22 15:31:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7c2a676

dev-libs/libical: add 3.0.16

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-libs/libical/Manifest              |   1 +
 dev-libs/libical/libical-3.0.16.ebuild | 117 +++++++++++++++++++++++++++++++++
 2 files changed, 118 insertions(+)

diff --git a/dev-libs/libical/Manifest b/dev-libs/libical/Manifest
index 6cdc2b5b8211..baaf5872df5b 100644
--- a/dev-libs/libical/Manifest
+++ b/dev-libs/libical/Manifest
@@ -1,2 +1,3 @@
 DIST libical-3.0.14.tar.gz 887795 BLAKE2B 8c073b77b5e4e6b24e3dfae7ac7a5f88da874bdfa53489cd04afd4d458d2fc963d39c2816691e777003ca9af510ceaf7bab9d7e1021942aa9c3adaad32ca8341 SHA512 36da5516672976c71b049a12af36164d91f9b655f81f1884766558149f25e80c30e64d15da848842f8a629295d708f39ce6fa63a3b0da39b5cbeb91911a4e6d8
 DIST libical-3.0.15.tar.gz 920483 BLAKE2B 9d4c1a84440b2363537f678363f9b7d8061e429c5bf7bf9ae2c9ea33e328f238dc4ce0e79c66d33441a89b6c2e18527fdb7d40e80338dda0086b636b165d5ae2 SHA512 14f0eaabdd8fc56d91d2fff8647b3871439cceae3cb7af31eaae30b3cc29f818b6f9d582dd4770b8b3b0c6fe53684258d30c743a5fd5dd337fda64e3adae35ba
+DIST libical-3.0.16.tar.gz 921245 BLAKE2B d6afe96abf32ece87393d85b4e5b0c1c10330ac64bca52bbaef96af45fbc06242cbbb4274fa350cc9a56655de238a85dea6111f381674b7cff44ab67a470e89e SHA512 72659c98f6c98b3e0fa15849df7f80993403100fb5c237e452df714a7be2d1d27f4547c81b399fe7bc6b1fb10c8c7cf9a23f5b969d588d7b05d7fe2e29c86bd4

diff --git a/dev-libs/libical/libical-3.0.16.ebuild b/dev-libs/libical/libical-3.0.16.ebuild
new file mode 100644
index 000000000000..633ed9bb2cde
--- /dev/null
+++ b/dev-libs/libical/libical-3.0.16.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+VALA_USE_DEPEND="vapigen"
+inherit cmake python-any-r1 vala
+
+DESCRIPTION="Implementation of basic iCAL protocols"
+HOMEPAGE="https://github.com/libical/libical"
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+IUSE="doc examples +glib +introspection static-libs test vala"
+
+REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"
+
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+	dev-libs/icu:=
+	glib? ( dev-libs/glib:2 )
+"
+DEPEND="${COMMON_DEPEND}
+	glib? ( dev-libs/libxml2:2 )
+"
+RDEPEND="${COMMON_DEPEND}
+	sys-libs/timezone-data
+"
+BDEPEND="
+	dev-lang/perl
+	virtual/pkgconfig
+	doc? (
+		app-doc/doxygen[dot]
+		glib? ( dev-util/gtk-doc )
+	)
+	introspection? ( dev-libs/gobject-introspection )
+	test? (
+		${PYTHON_DEPS}
+		glib? ( $(python_gen_any_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]') )
+	)
+	vala? ( $(vala_depend) )
+"
+
+DOCS=(
+	AUTHORS README.md ReleaseNotes.txt TEST THANKS TODO
+	doc/{AddingOrModifyingComponents.txt,UsingLibical.md}
+)
+
+PATCHES=(
+	"${FILESDIR}/${PN}-3.0.4-tests.patch"
+	"${FILESDIR}/${PN}-3.0.11-pkgconfig-libdir.patch"
+)
+
+python_check_deps() {
+	python_has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+	use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+	cmake_src_prepare
+
+	use examples || cmake_comment_add_subdirectory examples
+	use vala && vala_setup
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_DISABLE_FIND_PACKAGE_BerkeleyDB=ON
+		-DICAL_BUILD_DOCS=$(usex doc)
+		-DICAL_GLIB=$(usex glib)
+		-DGOBJECT_INTROSPECTION=$(usex introspection)
+		-DSHARED_ONLY=$(usex !static-libs)
+		-DLIBICAL_BUILD_TESTING=$(usex test)
+		-DICAL_GLIB_VAPI=$(usex vala)
+	)
+	if use vala; then
+		mycmakeargs+=(
+			-DVALAC="${VALAC}"
+			-DVAPIGEN="${VAPIGEN}"
+		)
+	fi
+	cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+
+	if use doc; then
+		cmake_src_compile docs
+
+		HTML_DOCS=( "${BUILD_DIR}"/apidocs/html/. )
+	fi
+}
+
+src_test() {
+	local myctestargs=(
+		-E "(icalrecurtest|icalrecurtest-r)" # bug 660282
+	)
+
+	cmake_src_test
+}
+
+src_install() {
+	cmake_src_install
+
+	if use examples; then
+		rm examples/CMakeLists.txt || die
+		dodoc -r examples
+	fi
+}


             reply	other threads:[~2022-10-22 15:31 UTC|newest]

Thread overview: 148+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-22 15:31 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-23 17:11 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libical/ Andreas Sturmlechner
2025-03-04 22:32 Andreas Sturmlechner
2025-02-22 20:52 Sam James
2025-02-10 23:18 Sam James
2025-02-10 23:18 Sam James
2025-02-10 23:18 Sam James
2025-02-10 23:18 Sam James
2025-02-10 21:25 Sam James
2025-02-10 21:25 Sam James
2025-01-12 14:44 Andreas Sturmlechner
2024-10-21 10:22 Sam James
2024-05-17  6:47 Arthur Zamarin
2024-05-17  6:47 Arthur Zamarin
2024-05-16  4:17 Arthur Zamarin
2024-05-16  4:17 Arthur Zamarin
2024-05-16  4:17 Arthur Zamarin
2024-05-16  4:17 Arthur Zamarin
2024-05-16  4:17 Arthur Zamarin
2024-04-22 18:07 Andreas Sturmlechner
2023-12-25 17:04 Andreas Sturmlechner
2023-12-20  6:23 Arthur Zamarin
2023-12-20  6:23 Arthur Zamarin
2023-12-20  1:40 Sam James
2023-12-20  1:40 Sam James
2023-12-20  1:40 Sam James
2023-12-20  1:40 Sam James
2023-12-20  1:40 Sam James
2023-10-30 11:29 Sam James
2023-05-01 13:50 Andreas Sturmlechner
2023-05-01  8:53 Sam James
2023-05-01  5:09 Sam James
2023-05-01  2:33 Sam James
2023-04-30 23:50 Sam James
2023-04-30 17:00 Arthur Zamarin
2023-04-30 16:55 Arthur Zamarin
2023-04-30 16:55 Arthur Zamarin
2022-11-18  7:22 WANG Xuerui
2022-10-22 15:31 Andreas Sturmlechner
2022-10-10 14:06 Andreas Sturmlechner
2022-10-10 14:03 Andreas Sturmlechner
2022-08-11  9:49 Sam James
2022-05-18 15:06 Andreas Sturmlechner
2022-05-18 14:59 Jakov Smolić
2022-05-18 14:59 Jakov Smolić
2022-05-18 14:47 Jakov Smolić
2022-05-18 14:47 Jakov Smolić
2022-05-18 14:47 Jakov Smolić
2022-05-18 14:47 Jakov Smolić
2022-05-18 14:47 Jakov Smolić
2022-04-19 15:05 Sam James
2022-02-14  9:49 Andreas Sturmlechner
2022-01-20 12:45 Sam James
2022-01-20 12:01 Arthur Zamarin
2022-01-20  8:49 Arthur Zamarin
2022-01-19 22:43 Sam James
2022-01-19 22:43 Sam James
2022-01-19  9:26 Jakov Smolić
2022-01-19  9:26 Jakov Smolić
2021-12-22 11:14 Andreas Sturmlechner
2021-12-20 12:42 Andreas Sturmlechner
2021-11-30 13:35 Andreas Sturmlechner
2021-08-20 15:23 Marek Szuba
2021-06-20  8:33 Andreas Sturmlechner
2021-06-20  8:33 Andreas Sturmlechner
2021-06-20  8:33 Andreas Sturmlechner
2021-05-24 20:49 Sam James
2021-05-24  2:42 Sam James
2021-05-24  0:32 Sam James
2021-05-24  0:32 Sam James
2021-05-22 15:15 Sam James
2021-05-22 15:10 Sam James
2021-05-22 15:10 Sam James
2021-05-15 18:02 Sam James
2021-05-15 17:59 Sam James
2021-05-14  6:45 Agostino Sarubbo
2021-04-20 12:59 Andreas Sturmlechner
2021-03-11  3:08 Sam James
2021-03-11  3:08 Sam James
2021-02-16 15:30 Andreas Sturmlechner
2021-02-15  1:56 Sam James
2021-02-13 17:56 Sam James
2021-01-18  1:20 Andreas Sturmlechner
2020-05-03 22:27 Andreas Sturmlechner
2020-05-01 14:03 Agostino Sarubbo
2020-05-01 14:00 Agostino Sarubbo
2020-05-01 13:58 Agostino Sarubbo
2020-04-23  6:21 Agostino Sarubbo
2020-04-14 11:39 Mart Raudsepp
2020-04-13 16:53 Agostino Sarubbo
2020-04-13 14:48 Agostino Sarubbo
2020-03-21  9:24 Mart Raudsepp
2020-03-08 18:22 Andreas Sturmlechner
2020-01-27 10:28 Mikle Kolyada
2020-01-21 10:34 Agostino Sarubbo
2020-01-21  8:53 Agostino Sarubbo
2020-01-21  8:48 Agostino Sarubbo
2020-01-20 11:51 Agostino Sarubbo
2020-01-19 11:20 Sergei Trofimovich
2020-01-18 23:15 Thomas Deutschmann
2019-12-18 14:56 Andreas Sturmlechner
2019-12-18 14:28 Andreas Sturmlechner
2019-11-14 11:55 Agostino Sarubbo
2019-11-08 20:31 Aaron Bauman
2019-11-01 11:03 Mikle Kolyada
2019-10-13 15:50 Andreas Sturmlechner
2019-09-21 14:24 Andreas Sturmlechner
2019-09-18 18:13 Andreas Sturmlechner
2019-08-16 22:19 Andreas Sturmlechner
2019-07-28 20:30 Mikle Kolyada
2019-07-23 23:09 Aaron Bauman
2019-06-28 11:42 Agostino Sarubbo
2019-06-27  7:31 Sergei Trofimovich
2019-06-27  7:26 Sergei Trofimovich
2019-06-27  7:23 Sergei Trofimovich
2019-06-26  6:50 Agostino Sarubbo
2019-06-25  7:04 Agostino Sarubbo
2019-06-23 16:40 Sergei Trofimovich
2019-05-24 19:42 Andreas Sturmlechner
2019-05-15  4:48 Aaron Bauman
2019-03-29  9:25 Tobias Klausmann
2019-01-31 20:21 Markus Meier
2019-01-24 22:22 Thomas Deutschmann
2019-01-22  8:39 Mikle Kolyada
2019-01-21 23:31 Sergei Trofimovich
2019-01-21 23:28 Sergei Trofimovich
2019-01-21 23:26 Sergei Trofimovich
2019-01-19 11:49 Sergei Trofimovich
2019-01-06 17:04 Andreas Sturmlechner
2018-05-29 12:32 Andreas Sturmlechner
2018-05-29  9:15 Mikle Kolyada
2018-02-12 20:48 Andreas Sturmlechner
2018-01-20 16:49 Tobias Klausmann
2018-01-10 21:22 Sergei Trofimovich
2018-01-10 19:49 Sergei Trofimovich
2018-01-09 14:31 Mikle Kolyada
2018-01-06 22:34 Andreas Sturmlechner
2018-01-06 21:31 Andreas Sturmlechner
2018-01-06 21:31 Andreas Sturmlechner
2018-01-06 21:31 Andreas Sturmlechner
2017-07-26 19:50 Markus Meier
2017-06-13 12:31 Agostino Sarubbo
2017-06-10 13:45 Agostino Sarubbo
2017-06-09 10:19 Agostino Sarubbo
2017-06-05 11:05 Agostino Sarubbo
2016-11-11  7:16 Lars Wendler
2016-07-28 20:39 Johannes Huber
2016-07-28 20:39 Johannes Huber

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=1666452666.b7c2a67606e51aa44cda5ccc62bcfd2a845fb1fe.asturm@gentoo \
    --to=asturm@gentoo.org \
    --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