From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/yaz/
Date: Sun, 12 Jun 2022 07:33:50 +0000 (UTC) [thread overview]
Message-ID: <1655018209.d6d9c09a9566e96445a4f55a19350ca12f0b43bb.juippis@gentoo> (raw)
commit: d6d9c09a9566e96445a4f55a19350ca12f0b43bb
Author: Thamognya Kodi <contact <AT> thamognya <DOT> com>
AuthorDate: Tue May 31 23:12:15 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jun 12 07:16:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d9c09a
dev-libs/yaz: Bump to 5.32.0
Signed-off-by: Thamognya Kodi <contact <AT> thamognya.com>
Closes: https://github.com/gentoo/gentoo/pull/25711
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-libs/yaz/Manifest | 1 +
dev-libs/yaz/metadata.xml | 21 ++++++++-----
dev-libs/yaz/yaz-5.32.0.ebuild | 67 ++++++++++++++++++++++++++++++++++++++++++
3 files changed, 82 insertions(+), 7 deletions(-)
diff --git a/dev-libs/yaz/Manifest b/dev-libs/yaz/Manifest
index 69684de16847..1b285b0be784 100644
--- a/dev-libs/yaz/Manifest
+++ b/dev-libs/yaz/Manifest
@@ -1,2 +1,3 @@
DIST yaz-3.0.53.tar.gz 2164681 BLAKE2B e42a97d63e031f14234258c7c44735a615ebc83774c1532d7e1b50f1f231dc933168e41a1b35a139ec193e694f6253336a666daad627a4aae9a0c7ffe34ca360 SHA512 537d54757e401c1b29ad2120209b2cd038f26ff7f43ffc3c1e22808e12a1580aedee3880478e951fd4b3057ca9af4a34afa2a64c0b8ffcbec24f76deb83ddc89
DIST yaz-5.31.0.tar.gz 2599598 BLAKE2B d56b3ccd3981d406bc09aeb7c9619e23f6c322cd80bf01db3a0621a40922dbbf32be34e69990eea0f8abbad84ed66d086d883db22693f3aab596c17001b4355b SHA512 93fe2320e474e3874704b9a899aed789e6128b5c626bb0c49bf650fd9ce0c107af4da6a13e5d1a56c98d018bfbb6cb918b53b6ce93e42bfeb8da0dfacbdb6667
+DIST yaz-5.32.0.tar.gz 2607933 BLAKE2B 9119b77a262ef2d6f0b1140425384575218a5b93cbe50a716bb254b07e2427eaad55de3c4590d0d6843af31b987b201fa733fdf010e463648a35b5600d055d5a SHA512 a4d40b5c20b1d4acab0e687235eda361fe0550c00396f6aa26d1965d2ecdd217433ba65160eda07fcc4c263d9e2e47b607e4b668412f81123b2904b9deece763
diff --git a/dev-libs/yaz/metadata.xml b/dev-libs/yaz/metadata.xml
index ef72ab976355..dd5ca33bbe8c 100644
--- a/dev-libs/yaz/metadata.xml
+++ b/dev-libs/yaz/metadata.xml
@@ -1,11 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="ziffy">Install ziffy, a promiscuous Z39.50 APDU sniffer</flag>
- </use>
- <upstream>
- <remote-id type="github">indexdata/yaz</remote-id>
- </upstream>
+ <maintainer type="person" proxied="yes">
+ <name>Thamognya Kodi</name>
+ <email>contact@thamognya.com</email>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">indexdata/yaz</remote-id>
+ </upstream>
+ <use>
+ <flag name="ziffy">Install ziffy, a promiscuous Z39.50 APDU sniffer</flag>
+ </use>
</pkgmetadata>
diff --git a/dev-libs/yaz/yaz-5.32.0.ebuild b/dev-libs/yaz/yaz-5.32.0.ebuild
new file mode 100644
index 000000000000..f5d980d94e6a
--- /dev/null
+++ b/dev-libs/yaz/yaz-5.32.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="C/C++ toolkit for Z39.50v3 clients and servers"
+HOMEPAGE="http://www.indexdata.dk/yaz"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/indexdata/yaz.git"
+else
+ SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+fi
+
+LICENSE="BSD GPL-2"
+SLOT="0/5"
+IUSE="gnutls tcpd ziffy"
+
+RDEPEND="
+ dev-libs/icu:=
+ dev-libs/libxml2
+ dev-libs/libxslt
+ sys-libs/readline:=
+ sys-libs/ncurses:=
+ virtual/libintl
+ !gnutls? ( dev-libs/openssl:0= )
+ gnutls? ( net-libs/gnutls:= )
+ tcpd? ( sys-apps/tcp-wrappers )
+ ziffy? ( net-libs/libpcap )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-lang/tcl:0
+ sys-devel/bison
+ >=sys-devel/libtool-2
+ virtual/pkgconfig
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-shared \
+ $(use_with gnutls) \
+ $(use_enable tcpd tcpd /usr)
+}
+
+src_install() {
+ local docdir="/usr/share/doc/${PF}"
+ emake DESTDIR="${D}" docdir="${EPREFIX}/${docdir}" install
+
+ find "${D}" -name '*.la' -delete || die
+
+ dodir "${docdir}"/html
+ mv -f "${ED}"/${docdir}/*.{html,png} "${ED}"/${docdir}/html/ || die "Failed to move HTML docs"
+ mv -f "${ED}"/usr/share/doc/${PN}/common "${ED}"/${docdir}/html/ || die "Failed to move HTML docs"
+ rm -rf "${ED}"/usr/share/doc/${PN} || die
+
+ dodoc ChangeLog NEWS
+}
next reply other threads:[~2022-06-12 7:33 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-12 7:33 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 7:20 [gentoo-commits] repo/gentoo:master commit in: dev-libs/yaz/ Arthur Zamarin
2025-03-08 7:20 Arthur Zamarin
2025-01-02 0:14 Conrad Kostecki
2024-10-31 23:32 Andreas K. Hüttel
2024-08-25 15:24 Andreas K. Hüttel
2024-02-17 14:48 Sam James
2024-02-14 19:47 Arthur Zamarin
2024-02-14 19:42 Sam James
2024-02-14 16:48 Sam James
2024-01-30 6:58 Sam James
2022-12-18 20:07 Arthur Zamarin
2022-12-18 12:28 Sam James
2022-12-18 11:55 Sam James
2022-12-18 11:34 Sam James
2022-11-24 18:14 Conrad Kostecki
2022-08-26 12:04 Sam James
2022-02-19 12:38 Arthur Zamarin
2022-02-19 10:34 Arthur Zamarin
2021-08-16 3:15 Sam James
2021-08-16 3:15 Sam James
2021-08-16 2:43 Sam James
2021-07-25 21:46 Andreas K. Hüttel
2020-02-18 20:06 Andreas Sturmlechner
2016-11-05 17:21 Pacho Ramos
2016-11-05 17:16 Pacho Ramos
2016-10-01 14:12 Jeroen Roovers
2016-08-30 20:29 Markus Meier
2016-07-04 11:36 Tobias Klausmann
2016-07-03 18:45 Andreas Hüttel
2016-06-28 6:00 Michał Górny
2016-06-26 12:21 Anthony G. Basile
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=1655018209.d6d9c09a9566e96445a4f55a19350ca12f0b43bb.juippis@gentoo \
--to=juippis@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