From 7d2ee66645bd49df1a0f3b6b0ef38c2b84ae480c Mon Sep 17 00:00:00 2001 From: Conrad Kostecki Date: Thu, 18 Apr 2024 21:45:51 +0200 Subject: net-libs/libomemo: update mxml deps Signed-off-by: Conrad Kostecki --- net-libs/libomemo/libomemo-0.8.1-r1.ebuild | 38 ++++++++++++++++++++++++++++++ net-libs/libomemo/libomemo-0.8.1.ebuild | 38 ------------------------------ 2 files changed, 38 insertions(+), 38 deletions(-) create mode 100644 net-libs/libomemo/libomemo-0.8.1-r1.ebuild delete mode 100644 net-libs/libomemo/libomemo-0.8.1.ebuild (limited to 'net-libs') diff --git a/net-libs/libomemo/libomemo-0.8.1-r1.ebuild b/net-libs/libomemo/libomemo-0.8.1-r1.ebuild new file mode 100644 index 000000000000..e53dabe9e607 --- /dev/null +++ b/net-libs/libomemo/libomemo-0.8.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Implementation of OMEMO (XEP-0384) in C" +HOMEPAGE="https://github.com/gkdr/libomemo" +SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="test" + +RDEPEND=" + dev-db/sqlite + dev-libs/glib + dev-libs/libgcrypt + dev-libs/mxml:0 + " +DEPEND=" + ${RDEPEND} + virtual/pkgconfig + test? ( dev-util/cmocka ) + " + +RESTRICT="!test? ( test )" + +DOCS=( CHANGELOG.md README.md ) + +src_configure() { + local mycmakeargs=( + -DOMEMO_WITH_TESTS=$(usex test) + ) + cmake_src_configure +} diff --git a/net-libs/libomemo/libomemo-0.8.1.ebuild b/net-libs/libomemo/libomemo-0.8.1.ebuild deleted file mode 100644 index 18729549f129..000000000000 --- a/net-libs/libomemo/libomemo-0.8.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Implementation of OMEMO (XEP-0384) in C" -HOMEPAGE="https://github.com/gkdr/libomemo" -SRC_URI="https://github.com/gkdr/libomemo/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" - -RDEPEND=" - dev-db/sqlite - dev-libs/glib - dev-libs/libgcrypt - dev-libs/mxml - " -DEPEND=" - ${RDEPEND} - virtual/pkgconfig - test? ( dev-util/cmocka ) - " - -RESTRICT="!test? ( test )" - -DOCS=( CHANGELOG.md README.md ) - -src_configure() { - local mycmakeargs=( - -DOMEMO_WITH_TESTS=$(usex test) - ) - cmake_src_configure -} -- cgit v1.2.3-65-gdbad