public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libyang/
Date: Wed, 26 May 2021 12:37:22 +0000 (UTC)	[thread overview]
Message-ID: <1622032496.a6491cbd55ee320a821c1f91aa08dda83071e1df.sam@gentoo> (raw)

commit:     a6491cbd55ee320a821c1f91aa08dda83071e1df
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Mon May 24 13:22:38 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 26 12:34:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6491cbd

net-libs/libyang: Seurity bump to 1.0.236

* Note that upstream didn't make a proper release,
  but has tagged version 1.0.236 in the commit, so
  let's just fetch the tarball using commit id

Bug: https://bugs.gentoo.org/791373
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/20966
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-libs/libyang/Manifest               |  1 +
 net-libs/libyang/libyang-1.0.236.ebuild | 46 +++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/net-libs/libyang/Manifest b/net-libs/libyang/Manifest
index 9bbc2ce5cfe..77f5413251a 100644
--- a/net-libs/libyang/Manifest
+++ b/net-libs/libyang/Manifest
@@ -1,3 +1,4 @@
 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-1.0.236.tar.gz 1669013 BLAKE2B c977c4abd2466e88519e91483d876bf0b9397b32bcca017eaa948d638a70d3275cdec36070bad8925c87e3a6756df924ed043a14ecb6d23de8b63992f8607e58 SHA512 7e8be96bc87ea5c906d90e09f4fbae0ed96718894d3fbc784172cdc68e9e2c034fc8a114bc1389fb74ef32dfb65e447acff24b82967af1530ffba94cd204e6e9
 DIST libyang-2.0.0.tar.gz 1016366 BLAKE2B 5a69083937d5b6102e48bbb742d1ba5562a78d434d0646758160f70c5fe3b42fb651c3e4421758a41f21bde6f00ba112f5b2cd49561e36afb5160641edf2ff0f SHA512 6226ae2b51eae07d866097248c1583006acc2f3b8f120ab7302a9bd2854ece6a067eff54553102ebafd759e1f2984076e2e6553fa01fc830d69496504353be5d

diff --git a/net-libs/libyang/libyang-1.0.236.ebuild b/net-libs/libyang/libyang-1.0.236.ebuild
new file mode 100644
index 00000000000..085fbab6896
--- /dev/null
+++ b/net-libs/libyang/libyang-1.0.236.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
+
+MY_COMMIT="587a1e973ea6463e4dd3c935b6f97da909f8ac24"
+DESCRIPTION="YANG data modeling language library"
+HOMEPAGE="https://github.com/CESNET/libyang"
+SRC_URI="https://github.com/CESNET/${PN}/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_COMMIT}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc test"
+
+RDEPEND="dev-libs/libpcre[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	sys-devel/bison
+	sys-devel/flex
+	doc? ( app-doc/doxygen[dot] )"
+
+RESTRICT="!test? ( test )"
+
+multilib_src_configure() {
+	local mycmakeargs=(
+		-DENABLE_BUILD_TESTS=$(usex test)
+		-DENABLE_LYD_PRIV=yes
+		-DGEN_LANGUAGE_BINDINGS=no
+	)
+	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/.
+}


             reply	other threads:[~2021-05-26 12:37 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 12:37 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-18 18:55 [gentoo-commits] repo/gentoo:master commit in: net-libs/libyang/ Jakov Smolić
2024-02-24 12:40 Jakov Smolić
2023-05-05  6:22 Jakov Smolić
2023-05-05  1:54 Sam James
2023-04-04  8:07 Jakov Smolić
2023-02-14 10:54 Sergey Popov
2022-10-28 18:50 Sam James
2022-06-27 17:32 Jakov Smolić
2022-06-24  8:23 Agostino Sarubbo
2022-06-23 18:42 Sam James
2022-05-20 18:41 Jakov Smolić
2022-05-04 23:26 Jakov Smolić
2022-05-04 23:23 Jakov Smolić
2022-04-29  6:05 Agostino Sarubbo
2022-03-21 18:48 Jakov Smolić
2021-12-12 18:01 Jakov Smolić
2021-12-12 17:58 Jakov Smolić
2021-12-12 17:58 Jakov Smolić
2021-11-12 10:03 Jakov Smolić
2021-11-10 22:35 Jakov Smolić
2021-11-10 22:33 Jakov Smolić
2021-11-05 17:54 Jakov Smolić
2021-10-08 18:26 Jakov Smolić
2021-10-08 18:26 Jakov Smolić
2021-09-24  8:40 Jakov Smolić
2021-08-31 15:36 Jakov Smolić
2021-08-14 10:30 David Seifert
2021-07-20  6:33 Agostino Sarubbo
2021-06-05 16:22 David Seifert
2021-05-27 21:13 David Seifert
2021-05-27  9:46 Sergey Popov
2021-05-27  6:57 Agostino Sarubbo
2021-05-27  6:55 Agostino Sarubbo
2021-05-26 12:37 Sam James
2021-05-15  2:21 Sam James
2021-03-26 11:37 David Seifert
2021-02-27 19:51 Sergey Popov
2021-02-27 19:51 Sergey Popov
2021-02-01 10:03 Sergey Popov
2021-02-01 10:03 Sergey Popov
2020-12-04  9:31 Sergey Popov

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=1622032496.a6491cbd55ee320a821c1f91aa08dda83071e1df.sam@gentoo \
    --to=sam@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