diff options
author | 2021-05-20 11:26:29 +0100 | |
---|---|---|
committer | 2021-05-26 12:34:50 +0000 | |
commit | ccbb230dd4d49d067656b9ad33ee1dbd41131e66 (patch) | |
tree | 7b0fbcf0b416af4f2c1b72983ec4ca478520f30c /net-libs/libyang | |
parent | net-misc/asterisk-g729: Version for asterisk 18.* (diff) | |
download | gentoo-ccbb230dd4d49d067656b9ad33ee1dbd41131e66.tar.gz gentoo-ccbb230dd4d49d067656b9ad33ee1dbd41131e66.tar.bz2 gentoo-ccbb230dd4d49d067656b9ad33ee1dbd41131e66.zip |
net-libs/libyang: Bump to 2.0.0
* Complete rewrite of the library with lots of major
changes, so will be masked until revdeps are ported
to new version
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/libyang')
-rw-r--r-- | net-libs/libyang/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libyang/files/libyang-2.0.0-cmake.patch | 12 | ||||
-rw-r--r-- | net-libs/libyang/libyang-2.0.0.ebuild | 46 |
3 files changed, 59 insertions, 0 deletions
diff --git a/net-libs/libyang/Manifest b/net-libs/libyang/Manifest index 17971ae007cb..9bbc2ce5cfe6 100644 --- a/net-libs/libyang/Manifest +++ b/net-libs/libyang/Manifest @@ -1,2 +1,3 @@ DIST libyang-1.0.215.tar.gz 1666478 BLAKE2B 66fc53458caf43e8473905ce9294efb9a49f0c73206a4c5ef96f7b79e72fff9429aa4245fdb29a7d2b4a23460d771d30a9397ca4d2ce76379675dc4a9f6427fd SHA512 042e7be3a658340eebb5aaf819169a516af5489c366c026b599d673b623811b01a5cc7b2fce0fe39c5deb5cce5b1e0e6dfc4eb85a331fb3203d415011e6d2dad DIST libyang-1.0.225.tar.gz 1667054 BLAKE2B eb1bfd555d72aceba7da7ade1a55985caad9d3cc904c5504978c298ef9e08a6848c810d1b62b1fa7076a9f30638b6080a3546c07892d3e8980eb1db337dc4deb SHA512 3366df8c2869454b6da456010ca62b538876cba16fa84e1ed9053acca6d7756c15329c0fb8a62477a1887d6c00cce8449f29954b2d2b0e556d81baa11dc9776d +DIST libyang-2.0.0.tar.gz 1016366 BLAKE2B 5a69083937d5b6102e48bbb742d1ba5562a78d434d0646758160f70c5fe3b42fb651c3e4421758a41f21bde6f00ba112f5b2cd49561e36afb5160641edf2ff0f SHA512 6226ae2b51eae07d866097248c1583006acc2f3b8f120ab7302a9bd2854ece6a067eff54553102ebafd759e1f2984076e2e6553fa01fc830d69496504353be5d diff --git a/net-libs/libyang/files/libyang-2.0.0-cmake.patch b/net-libs/libyang/files/libyang-2.0.0-cmake.patch new file mode 100644 index 000000000000..09b83b3639fa --- /dev/null +++ b/net-libs/libyang/files/libyang-2.0.0-cmake.patch @@ -0,0 +1,12 @@ +# https://github.com/CESNET/libyang/pull/1581 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -35,8 +35,6 @@ elseif ("${BUILD_TYPE_UPPER}" STREQUAL "ABICHECK") + set(CMAKE_BUILD_TYPE "ABICheck" CACHE STRING "Build Type" FORCE) + elseif ("${BUILD_TYPE_UPPER}" STREQUAL "DOCONLY") + set(CMAKE_BUILD_TYPE "DocOnly" CACHE STRING "Build Type" FORCE) +-else () +- message(FATAL_ERROR "Unknown CMAKE_BUILD_TYPE \"${CMAKE_BUILD_TYPE}\".") + endif () + + # check the supported platform diff --git a/net-libs/libyang/libyang-2.0.0.ebuild b/net-libs/libyang/libyang-2.0.0.ebuild new file mode 100644 index 000000000000..d832209254e5 --- /dev/null +++ b/net-libs/libyang/libyang-2.0.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_ECLASS=cmake +inherit cmake-multilib + +DESCRIPTION="YANG data modeling language library" +HOMEPAGE="https://github.com/CESNET/libyang" +SRC_URI="https://github.com/CESNET/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-libs/libpcre2[${MULTILIB_USEDEP}]" +DEPEND=" + ${RDEPEND} + test? ( dev-util/cmocka ) +" +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen[dot] ) +" + +PATCHES=( "${FILESDIR}"/${P}-cmake.patch ) + +multilib_src_configure() { + local mycmakeargs=( + -DENABLE_BUILD_TESTS=$(usex test) + ) + cmake_src_configure +} + +multilib_src_compile() { + cmake_src_compile + + multilib_is_native_abi && use doc && cmake_src_compile doc +} + +multilib_src_install_all() { + use doc && dodoc -r doc/. +} |