[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2024-03-11 Thread Sam James
commit: 2764230195012231de507d6dd7df58a5d1d6646c
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 12 02:24:04 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 02:24:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27642301

net-libs/libisds: crank copyright

Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/libisds-0.11.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libisds/libisds-0.11.1-r2.ebuild 
b/net-libs/libisds/libisds-0.11.1-r2.ebuild
index fb326eb24572..9d5f28e184ff 100644
--- a/net-libs/libisds/libisds-0.11.1-r2.ebuild
+++ b/net-libs/libisds/libisds-0.11.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/, net-libs/libisds/files/

2024-03-11 Thread Sam James
commit: 4c2e6a53475e49ef74dab3875af5387c2218f580
Author: Petr Písař  atlas  cz>
AuthorDate: Sun Mar 10 19:53:29 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 02:23:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c2e6a53

net-libs/libisds: Fix building with >=dev-libs/libxml-2.12.0

A fix ported from upstream:

commit 0539e12b3de14a77481bd3f87b301b7e7550172c (HEAD -> master, 
repo.or.cz/master)
Author: Petr Písař  atlas.cz>
Date:   Thu Nov 23 21:10:05 2023 +0100

Fix building with libxml2-2.12.0

libxml-2.12.0 shuffled included header files.

Closes: https://bugs.gentoo.org/926129
Signed-off-by: Petr Písař  atlas.cz>
Signed-off-by: Sam James  gentoo.org>

 ...s-0.11.1-Fix-building-with-libxml2-2.12.0.patch | 37 ++
 net-libs/libisds/libisds-0.11.1-r2.ebuild  | 59 ++
 2 files changed, 96 insertions(+)

diff --git 
a/net-libs/libisds/files/libisds-0.11.1-Fix-building-with-libxml2-2.12.0.patch 
b/net-libs/libisds/files/libisds-0.11.1-Fix-building-with-libxml2-2.12.0.patch
new file mode 100644
index ..7fc65894b156
--- /dev/null
+++ 
b/net-libs/libisds/files/libisds-0.11.1-Fix-building-with-libxml2-2.12.0.patch
@@ -0,0 +1,37 @@
+From 0539e12b3de14a77481bd3f87b301b7e7550172c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
+Date: Thu, 23 Nov 2023 21:10:05 +0100
+Subject: [PATCH] Fix building with libxml2-2.12.0
+
+libxml-2.12.0 shuffled included header files.
+---
+ test/offline/isds_message_free.c | 1 +
+ test/simline/service.c   | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/test/offline/isds_message_free.c 
b/test/offline/isds_message_free.c
+index 3c2096e..f819d19 100644
+--- a/test/offline/isds_message_free.c
 b/test/offline/isds_message_free.c
+@@ -1,5 +1,6 @@
+ #include "../test.h"
+ #include "isds.h"
++#include 
+ 
+ static int test_isds_message_free(struct isds_message **message) {
+ isds_message_free(message);
+diff --git a/test/simline/service.c b/test/simline/service.c
+index 533bed5..fea6e87 100644
+--- a/test/simline/service.c
 b/test/simline/service.c
+@@ -6,6 +6,7 @@
+ #include "system.h"
+ #include 
+ #include  /* For intmax_t */
++#include  /* For free() */
+ #include/* For PRIdMAX */
+ #include   /* for isdigit() */
+ #include 
+-- 
+2.43.0
+

diff --git a/net-libs/libisds/libisds-0.11.1-r2.ebuild 
b/net-libs/libisds/libisds-0.11.1-r2.ebuild
new file mode 100644
index ..fb326eb24572
--- /dev/null
+++ b/net-libs/libisds/libisds-0.11.1-r2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug doc nls openssl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gnupg
+   app-crypt/gpgme:=
+   dev-libs/libgcrypt:=
+   )"
+DEPEND="${RDEPEND}
+   test? ( net-libs/gnutls )"
+BDEPEND="
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.11.1-Fix-building-with-libxml2-2.12.0.patch"
+)
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   --disable-static
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable doc)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2024-03-11 Thread Sam James
commit: ec39e98183d33f8c8f2d3e0ee9ab650586c39091
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 12 02:22:02 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 02:23:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec39e981

net-libs/libisds: add libxml2 patch to 0.11.2 too

Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/libisds-0.11.2.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/net-libs/libisds/libisds-0.11.2.ebuild 
b/net-libs/libisds/libisds-0.11.2.ebuild
index dca50bdddc75..9d5f28e184ff 100644
--- a/net-libs/libisds/libisds-0.11.2.ebuild
+++ b/net-libs/libisds/libisds-0.11.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -33,6 +33,10 @@ BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
+PATCHES=(
+   "${FILESDIR}/${PN}-0.11.1-Fix-building-with-libxml2-2.12.0.patch"
+)
+
 src_configure() {
local myeconfargs=(
--disable-fatalwarnings



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2024-03-11 Thread Sam James
commit: 23615637caf8574a828a1d76f4af3c2406635bb8
Author: Petr Písař  atlas  cz>
AuthorDate: Sun Apr  3 15:50:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 02:22:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23615637

net-libs/libisds: Bump to 0.11.2

Closes: https://bugs.gentoo.org/836628
Signed-off-by: Petr Písař  atlas.cz>
Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/Manifest  |  1 +
 net-libs/libisds/libisds-0.11.2.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 3314dc794a8b..4e6dad3848ab 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1 +1,2 @@
 DIST libisds-0.11.1.tar.xz 741992 BLAKE2B 
e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1
 SHA512 
8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
+DIST libisds-0.11.2.tar.xz 746388 BLAKE2B 
08e5e1ba5c100faf18e4fa3d89b66486b773be4cf9097f9b237c8f407a98ac2cac0337bcb2665072f65414c06ee26f5670ee2604c8420eb12990b51534eaa062
 SHA512 
edaa591eda18dc0b8cc7c6e29a36610845cc293f1665a2e9744ec904aaa1c561caa41ada2e87de9428bb0397772c0c2884412fd0474daf28528d7ef2a7f28426

diff --git a/net-libs/libisds/libisds-0.11.2.ebuild 
b/net-libs/libisds/libisds-0.11.2.ebuild
new file mode 100644
index ..dca50bdddc75
--- /dev/null
+++ b/net-libs/libisds/libisds-0.11.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug doc nls openssl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gnupg
+   app-crypt/gpgme:=
+   dev-libs/libgcrypt:=
+   )"
+DEPEND="${RDEPEND}
+   test? ( net-libs/gnutls )"
+BDEPEND="
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   --disable-static
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable doc)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2022-02-16 Thread David Seifert
commit: aefbcbf6dbbb4a61806c68804d0c571e9e233d1d
Author: David Seifert  gentoo  org>
AuthorDate: Wed Feb 16 21:26:20 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Feb 16 21:26:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aefbcbf6

net-libs/libisds: add subslot op on app-crypt/gpgme

Signed-off-by: David Seifert  gentoo.org>

 net-libs/libisds/{libisds-0.11.1.ebuild => libisds-0.11.1-r1.ebuild} | 4 ++--
 net-libs/libisds/libisds-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-libs/libisds/libisds-0.11.1.ebuild 
b/net-libs/libisds/libisds-0.11.1-r1.ebuild
similarity index 94%
rename from net-libs/libisds/libisds-0.11.1.ebuild
rename to net-libs/libisds/libisds-0.11.1-r1.ebuild
index adb792d36841..d555e6ef693a 100644
--- a/net-libs/libisds/libisds-0.11.1.ebuild
+++ b/net-libs/libisds/libisds-0.11.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,7 @@ RDEPEND="
openssl? ( dev-libs/openssl:= )
!openssl? (
app-crypt/gnupg
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgcrypt:=
)"
 DEPEND="${RDEPEND}

diff --git a/net-libs/libisds/libisds-.ebuild 
b/net-libs/libisds/libisds-.ebuild
index 05e9b62f8308..6056df0b3591 100644
--- a/net-libs/libisds/libisds-.ebuild
+++ b/net-libs/libisds/libisds-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,7 @@ RDEPEND="
openssl? ( dev-libs/openssl:= )
!openssl? (
app-crypt/gnupg
-   app-crypt/gpgme
+   app-crypt/gpgme:=
dev-libs/libgcrypt:=
)"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2021-11-14 Thread Sam James
commit: 31fee1f26dba6980f6bee119005f33cc3eb2739a
Author: Sam James  gentoo  org>
AuthorDate: Sun Nov 14 09:18:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Nov 14 09:19:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31fee1f2

net-libs/libisds: use HTTPS for EGIT_REPO_URI

Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/libisds-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libisds/libisds-.ebuild 
b/net-libs/libisds/libisds-.ebuild
index eb24a312d360..05e9b62f8308 100644
--- a/net-libs/libisds/libisds-.ebuild
+++ b/net-libs/libisds/libisds-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 inherit autotools git-r3
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
-EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
+EGIT_REPO_URI="https://repo.or.cz/${PN}.git;
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2021-01-20 Thread David Seifert
commit: 24ecaca010d1e1b582dfe1456bc89f16920d1168
Author: Jakov Smolic  sartura  hr>
AuthorDate: Wed Jan 20 10:12:49 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Jan 20 10:12:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ecaca0

net-libs/libisds: Remove old

Bug: https://bugs.gentoo.org/763852
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 net-libs/libisds/Manifest  |  1 -
 net-libs/libisds/libisds-0.10.8.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 12b9bb9ee5b..3314dc794a8 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,2 +1 @@
-DIST libisds-0.10.8.tar.xz 726040 BLAKE2B 
e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059
 SHA512 
648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
 DIST libisds-0.11.1.tar.xz 741992 BLAKE2B 
e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1
 SHA512 
8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a

diff --git a/net-libs/libisds/libisds-0.10.8.ebuild 
b/net-libs/libisds/libisds-0.10.8.ebuild
deleted file mode 100644
index f2a22ddd2c9..000
--- a/net-libs/libisds/libisds-0.10.8.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/;
-SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="amd64 ~mips x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/expat
-   dev-libs/libxml2
-   curl? ( net-misc/curl[ssl] )
-   openssl? ( dev-libs/openssl:= )
-   !openssl? (
-   app-crypt/gpgme
-   dev-libs/libgcrypt:=
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   test? ( >=net-libs/gnutls-2.12.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   !openssl? ( >=app-crypt/gnupg-2 )
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
-
-src_configure() {
-   local myeconfargs=(
-   --disable-fatalwarnings
-   $(use_with curl libcurl)
-   $(use_enable curl curlreauthorizationbug)
-   $(use_enable debug)
-   $(use_enable nls)
-   $(use_enable openssl openssl-backend)
-   $(use_enable static-libs static)
-   $(use_enable test)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   find "${ED}/" \( -name "*.a" -o -name "*.la" \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2021-01-20 Thread Sam James
commit: 512c5403393668fcc29d289ff9988b94331ecc5b
Author: Sam James  gentoo  org>
AuthorDate: Wed Jan 20 09:29:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jan 20 09:29:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=512c5403

net-libs/libisds: Stabilize 0.11.1 x86, #763852

Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/libisds-0.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libisds/libisds-0.11.1.ebuild 
b/net-libs/libisds/libisds-0.11.1.ebuild
index e6c619272e3..adb792d3684 100644
--- a/net-libs/libisds/libisds-0.11.1.ebuild
+++ b/net-libs/libisds/libisds-0.11.1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
 SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2021-01-20 Thread Sam James
commit: d0ada92d813bd093eca4f3ebe2093cd90cae883f
Author: Sam James  gentoo  org>
AuthorDate: Wed Jan 20 09:28:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jan 20 09:28:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0ada92d

net-libs/libisds: Stabilize 0.11.1 amd64, #763852

Signed-off-by: Sam James  gentoo.org>

 net-libs/libisds/libisds-0.11.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libisds/libisds-0.11.1.ebuild 
b/net-libs/libisds/libisds-0.11.1.ebuild
index d9a4859a617..e6c619272e3 100644
--- a/net-libs/libisds/libisds-0.11.1.ebuild
+++ b/net-libs/libisds/libisds-0.11.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
 SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips ~x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2020-12-28 Thread David Seifert
commit: aa7b0c5100d4a8b228b68c9c5a1a8210b96158a6
Author: Jakov Smolic  sartura  hr>
AuthorDate: Mon Dec 28 14:15:39 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Dec 28 14:15:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa7b0c51

net-libs/libisds: Bump to 0.11.1

Closes: https://bugs.gentoo.org/710440
Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 net-libs/libisds/Manifest  |  1 +
 net-libs/libisds/libisds-0.11.1.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 8f3aa379ee1..f22ebfc687e 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,4 +1,5 @@
 DIST libisds-0.10.6.tar.xz 724120 BLAKE2B 
b6d3f42d4ff84c377c9425dfd84a14ae97ccc39ea4bb96169e3a8de21b99dd6e5ceda39a6d4a574ccb418561dbec2507f72afc8b6f185c34ff92202abcc49441
 SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 DIST libisds-0.10.7.tar.xz 724840 BLAKE2B 
73d93b518271cbd08787a38da454ceb8fa6c2d421b0291c61cded8f1438d44c5607d1e90d75714c3d76e0886ac723e38dc2a41d60284a58d567abdcba76becd4
 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
 DIST libisds-0.10.8.tar.xz 726040 BLAKE2B 
e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059
 SHA512 
648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
+DIST libisds-0.11.1.tar.xz 741992 BLAKE2B 
e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1
 SHA512 
8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
 DIST libisds-0.11.tar.xz 741952 BLAKE2B 
553613b7f1d8f5b3af1ecff2734584234f5d461c289c08acaf4353b724102ac87da5e60c2b5ffc2895a6441af2a51e0a381ab9df4494d7543edf356b989df891
 SHA512 
d30708cc6df92f0da9c4fac9acea3c1f3d97ae5ed1f17967e41c4887fe90f5b7375508df987b4b98cc5653a099a78c7a678f8fcb6897de863ff2f4538413f7dd

diff --git a/net-libs/libisds/libisds-0.11.1.ebuild 
b/net-libs/libisds/libisds-0.11.1.ebuild
new file mode 100644
index 000..d9a4859a617
--- /dev/null
+++ b/net-libs/libisds/libisds-0.11.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug doc nls openssl test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gnupg
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )"
+DEPEND="${RDEPEND}
+   test? ( net-libs/gnutls )"
+BDEPEND="
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   --disable-static
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable doc)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2020-12-28 Thread David Seifert
commit: 9115cb5d71060f561b50e70c1e687989768a1b64
Author: Jakov Smolic  sartura  hr>
AuthorDate: Mon Dec 28 14:15:41 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Dec 28 14:15:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9115cb5d

net-libs/libisds: Sync live ebuild

Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 net-libs/libisds/libisds-.ebuild | 51 ++--
 1 file changed, 25 insertions(+), 26 deletions(-)

diff --git a/net-libs/libisds/libisds-.ebuild 
b/net-libs/libisds/libisds-.ebuild
index 29b8477bdd6..eb24a312d36 100644
--- a/net-libs/libisds/libisds-.ebuild
+++ b/net-libs/libisds/libisds-.ebuild
@@ -1,54 +1,53 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-
-[[ ${PV} = * ]] && inherit git-r3 autotools
+EAPI=7
 
+inherit autotools git-r3
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
-if [[ ${PV} = * ]]; then
-   EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
-else
-   SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-   KEYWORDS="~amd64 ~mips ~x86"
-fi
+EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
 
 LICENSE="LGPL-3"
 SLOT="0"
-IUSE="+curl debug nls static-libs test"
+IUSE="+curl debug doc nls openssl test"
 RESTRICT="!test? ( test )"
 
-COMMON_DEPEND="
-   app-crypt/gpgme
+RDEPEND="
dev-libs/expat
-   dev-libs/libgcrypt:0=
dev-libs/libxml2
curl? ( net-misc/curl[ssl] )
-"
-DEPEND="${COMMON_DEPEND}
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gnupg
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )"
+DEPEND="${RDEPEND}
+   test? ( net-libs/gnutls )"
+BDEPEND="
virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=app-crypt/gnupg-2
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
+   nls? ( sys-devel/gettext )"
 
 src_prepare() {
default
-   [[ ${PV} = * ]] && eautoreconf
+   eautoreconf
 }
 
 src_configure() {
local myeconfargs=(
--disable-fatalwarnings
+   --disable-static
$(use_with curl libcurl)
$(use_enable curl curlreauthorizationbug)
+   $(use_enable doc)
$(use_enable debug)
$(use_enable nls)
-   $(use_enable static-libs static)
+   $(use_enable openssl openssl-backend)
$(use_enable test)
)
econf "${myeconfargs[@]}"
@@ -57,5 +56,5 @@ src_configure() {
 src_install() {
default
 
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+   find "${ED}" -name '*.la' -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2020-12-28 Thread David Seifert
commit: ff3427f3d0276c28598489c71172f37cf66ca97a
Author: Jakov Smolic  sartura  hr>
AuthorDate: Mon Dec 28 14:15:40 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Dec 28 14:15:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3427f3

net-libs/libisds: Cleanup old versions

Package-Manager: Portage-3.0.9, Repoman-3.0.1
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 net-libs/libisds/Manifest  |  3 --
 net-libs/libisds/libisds-0.10.6.ebuild | 55 ---
 net-libs/libisds/libisds-0.10.7.ebuild | 55 ---
 net-libs/libisds/libisds-0.11.ebuild   | 60 --
 4 files changed, 173 deletions(-)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index f22ebfc687e..12b9bb9ee5b 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,5 +1,2 @@
-DIST libisds-0.10.6.tar.xz 724120 BLAKE2B 
b6d3f42d4ff84c377c9425dfd84a14ae97ccc39ea4bb96169e3a8de21b99dd6e5ceda39a6d4a574ccb418561dbec2507f72afc8b6f185c34ff92202abcc49441
 SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
-DIST libisds-0.10.7.tar.xz 724840 BLAKE2B 
73d93b518271cbd08787a38da454ceb8fa6c2d421b0291c61cded8f1438d44c5607d1e90d75714c3d76e0886ac723e38dc2a41d60284a58d567abdcba76becd4
 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
 DIST libisds-0.10.8.tar.xz 726040 BLAKE2B 
e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059
 SHA512 
648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
 DIST libisds-0.11.1.tar.xz 741992 BLAKE2B 
e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1
 SHA512 
8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
-DIST libisds-0.11.tar.xz 741952 BLAKE2B 
553613b7f1d8f5b3af1ecff2734584234f5d461c289c08acaf4353b724102ac87da5e60c2b5ffc2895a6441af2a51e0a381ab9df4494d7543edf356b989df891
 SHA512 
d30708cc6df92f0da9c4fac9acea3c1f3d97ae5ed1f17967e41c4887fe90f5b7375508df987b4b98cc5653a099a78c7a678f8fcb6897de863ff2f4538413f7dd

diff --git a/net-libs/libisds/libisds-0.10.6.ebuild 
b/net-libs/libisds/libisds-0.10.6.ebuild
deleted file mode 100644
index 9b1974819ff..000
--- a/net-libs/libisds/libisds-0.10.6.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/;
-SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="~amd64 ~mips ~x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/expat
-   dev-libs/libxml2
-   curl? ( net-misc/curl[ssl] )
-   openssl? ( dev-libs/openssl:= )
-   !openssl? (
-   app-crypt/gpgme
-   dev-libs/libgcrypt:=
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   test? ( >=net-libs/gnutls-2.12.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   !openssl? ( >=app-crypt/gnupg-2 )
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
-
-src_configure() {
-   local myeconfargs=(
-   --disable-fatalwarnings
-   $(use_with curl libcurl)
-   $(use_enable curl curlreauthorizationbug)
-   $(use_enable debug)
-   $(use_enable nls)
-   $(use_enable openssl openssl-backend)
-   $(use_enable static-libs static)
-   $(use_enable test)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-}

diff --git a/net-libs/libisds/libisds-0.10.7.ebuild 
b/net-libs/libisds/libisds-0.10.7.ebuild
deleted file mode 100644
index 9b1974819ff..000
--- a/net-libs/libisds/libisds-0.10.7.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/;
-SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="~amd64 ~mips ~x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls openssl static-libs test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-libs/expat
-   dev-libs/libxml2
-   curl? ( net-misc/curl[ssl] )
-   openssl? ( dev-libs/openssl:= )
-   

[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2019-12-23 Thread Amy Liffey
commit: 6d36c3dd3df7873fe5ee91f85ed4733bf54b1c47
Author: Petr Písař  atlas  cz>
AuthorDate: Thu Dec 19 17:36:31 2019 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Dec 23 17:16:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d36c3dd

net-libs/libisds: Bump to 0.11

Bug: https://bugs.gentoo.org/show_bug.cgi?id=693572
Closes: https://bugs.gentoo.org/693572
Signed-off-by: Petr Písař  atlas.cz>
Signed-off-by: Amy Liffey  gentoo.org>

 net-libs/libisds/Manifest|  1 +
 net-libs/libisds/libisds-0.11.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index b0dde93b956..8f3aa379ee1 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,3 +1,4 @@
 DIST libisds-0.10.6.tar.xz 724120 BLAKE2B 
b6d3f42d4ff84c377c9425dfd84a14ae97ccc39ea4bb96169e3a8de21b99dd6e5ceda39a6d4a574ccb418561dbec2507f72afc8b6f185c34ff92202abcc49441
 SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 DIST libisds-0.10.7.tar.xz 724840 BLAKE2B 
73d93b518271cbd08787a38da454ceb8fa6c2d421b0291c61cded8f1438d44c5607d1e90d75714c3d76e0886ac723e38dc2a41d60284a58d567abdcba76becd4
 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
 DIST libisds-0.10.8.tar.xz 726040 BLAKE2B 
e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059
 SHA512 
648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e
+DIST libisds-0.11.tar.xz 741952 BLAKE2B 
553613b7f1d8f5b3af1ecff2734584234f5d461c289c08acaf4353b724102ac87da5e60c2b5ffc2895a6441af2a51e0a381ab9df4494d7543edf356b989df891
 SHA512 
d30708cc6df92f0da9c4fac9acea3c1f3d97ae5ed1f17967e41c4887fe90f5b7375508df987b4b98cc5653a099a78c7a678f8fcb6897de863ff2f4538413f7dd

diff --git a/net-libs/libisds/libisds-0.11.ebuild 
b/net-libs/libisds/libisds-0.11.ebuild
new file mode 100644
index 000..959693ab47c
--- /dev/null
+++ b/net-libs/libisds/libisds-0.11.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug doc nls openssl static-libs test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   doc? (
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   test? ( >=net-libs/gnutls-2.12.0 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !openssl? ( >=app-crypt/gnupg-2 )
+"
+
+DOCS=( NEWS README AUTHORS ChangeLog )
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable doc)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable static-libs static)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}/" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2018-09-11 Thread Mikle Kolyada
commit: fefc9fdadbf34ac1993c32d628d14aed674d2edb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Wed Sep 12 05:36:52 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Sep 12 05:36:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fefc9fda

net-libs/libisds: mark stable wrt bug #665740

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/libisds/libisds-0.10.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libisds/libisds-0.10.8.ebuild 
b/net-libs/libisds/libisds-0.10.8.ebuild
index 1470c31c107..65d76154cb1 100644
--- a/net-libs/libisds/libisds-0.10.8.ebuild
+++ b/net-libs/libisds/libisds-0.10.8.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
 SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="~amd64 ~mips ~x86"
+KEYWORDS="amd64 ~mips x86"
 
 LICENSE="LGPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2018-07-16 Thread Amy Liffey
commit: 7cc7c541d4b0fdacf4d1cd9e0e9bb215b3327450
Author: Amy Liffey  gentoo  org>
AuthorDate: Mon Jul 16 16:17:05 2018 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Jul 16 15:19:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc7c541

net-libs/libisds: version bum 0.10.8

Closes: https://bugs.gentoo.org/660902
Submitted-by: Karel Slany  nic.cz>
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/libisds/Manifest  |  1 +
 net-libs/libisds/libisds-0.10.8.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 196ec70e70b..b0dde93b956 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,2 +1,3 @@
 DIST libisds-0.10.6.tar.xz 724120 BLAKE2B 
b6d3f42d4ff84c377c9425dfd84a14ae97ccc39ea4bb96169e3a8de21b99dd6e5ceda39a6d4a574ccb418561dbec2507f72afc8b6f185c34ff92202abcc49441
 SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 DIST libisds-0.10.7.tar.xz 724840 BLAKE2B 
73d93b518271cbd08787a38da454ceb8fa6c2d421b0291c61cded8f1438d44c5607d1e90d75714c3d76e0886ac723e38dc2a41d60284a58d567abdcba76becd4
 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
+DIST libisds-0.10.8.tar.xz 726040 BLAKE2B 
e3509202cb95e6e2bd0a6e7592c3d1d649ecb47806823265e5e12fa3a79a5daff9d249b2f0642d13aaebf1c64243690d06c9387fcb3a166f4b989c19f337c059
 SHA512 
648ba30c3156ece329d663d0d6e649319d8d104de97ca1946d94c24205c44189be08cb0c573df1f5a889fba487f2d088ac472c3f922a1920e172dda0c592b41e

diff --git a/net-libs/libisds/libisds-0.10.8.ebuild 
b/net-libs/libisds/libisds-0.10.8.ebuild
new file mode 100644
index 000..1470c31c107
--- /dev/null
+++ b/net-libs/libisds/libisds-0.10.8.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug nls openssl static-libs test"
+
+COMMON_DEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   test? ( >=net-libs/gnutls-2.12.0 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !openssl? ( >=app-crypt/gnupg-2 )
+"
+
+DOCS=( NEWS README AUTHORS ChangeLog )
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable static-libs static)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}/" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-08-10 Thread Amy Liffey
commit: 2b49ce0e8e66f8aa5b1bf6241a7a87fce3af86ae
Author: Amy Liffey  gentoo  org>
AuthorDate: Thu Aug 10 11:37:27 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Thu Aug 10 11:40:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b49ce0e

net-libs/libisds: version bump 0.10.7 bug #624362

Submitted-by: Petr Pisar  atlas.cz>

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-libs/libisds/Manifest  |  1 +
 net-libs/libisds/libisds-0.10.7.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 63b7e27a259..b5878597f09 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,2 +1,3 @@
 DIST libisds-0.10.6.tar.xz 724120 SHA256 
49ca70acef5dd5d092a03643f4d2f96ff8250b135eb8a5f62fa1fd3f8a8a SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 WHIRLPOOL 
2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1
+DIST libisds-0.10.7.tar.xz 724840 SHA256 
8a738d3bf0f4dd150fe633607cc9a4d29cd62b61e1d2acf38cedf265b5f08589 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
 WHIRLPOOL 
2025157d09371d4b804776f9fe373eec12275ca178673c16b0863d66b17a85b4ba5b9993d33ade9d86d18e1b22968bb81c8136429cf0053260c3798aba2f2cf8
 DIST libisds-0.10.tar.xz 721260 SHA256 
f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 
9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd
 WHIRLPOOL 
cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c

diff --git a/net-libs/libisds/libisds-0.10.7.ebuild 
b/net-libs/libisds/libisds-0.10.7.ebuild
new file mode 100644
index 000..f0c245e83cd
--- /dev/null
+++ b/net-libs/libisds/libisds-0.10.7.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug nls openssl static-libs test"
+
+COMMON_DEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   test? ( >=net-libs/gnutls-2.12.0 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !openssl? ( >=app-crypt/gnupg-2 )
+"
+
+DOCS=( NEWS README AUTHORS ChangeLog )
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable static-libs static)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-08-10 Thread Amy Liffey
commit: 158292a81fa6c84281886df86ebb3761555770f9
Author: Amy Liffey  gentoo  org>
AuthorDate: Thu Aug 10 11:38:21 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Thu Aug 10 11:40:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=158292a8

net-libs/libisds: remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-libs/libisds/Manifest|  1 -
 net-libs/libisds/libisds-0.10.ebuild | 58 
 2 files changed, 59 deletions(-)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index b5878597f09..46f13a7eed3 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,3 +1,2 @@
 DIST libisds-0.10.6.tar.xz 724120 SHA256 
49ca70acef5dd5d092a03643f4d2f96ff8250b135eb8a5f62fa1fd3f8a8a SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 WHIRLPOOL 
2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1
 DIST libisds-0.10.7.tar.xz 724840 SHA256 
8a738d3bf0f4dd150fe633607cc9a4d29cd62b61e1d2acf38cedf265b5f08589 SHA512 
ba2ef11c2983cb3bc8f779e7af3fb8319d38a786911e68c6b53c25aff339b4630bdf78886825ea3da671e87f689cab376cd9e41398f3f74608af932abe7a0023
 WHIRLPOOL 
2025157d09371d4b804776f9fe373eec12275ca178673c16b0863d66b17a85b4ba5b9993d33ade9d86d18e1b22968bb81c8136429cf0053260c3798aba2f2cf8
-DIST libisds-0.10.tar.xz 721260 SHA256 
f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 
9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd
 WHIRLPOOL 
cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c

diff --git a/net-libs/libisds/libisds-0.10.ebuild 
b/net-libs/libisds/libisds-0.10.ebuild
deleted file mode 100644
index c2f7500ae4d..000
--- a/net-libs/libisds/libisds-0.10.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit base eutils
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/;
-SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-KEYWORDS="~amd64 ~mips ~x86"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls openssl static-libs test"
-
-COMMON_DEPEND="
-   dev-libs/expat
-   dev-libs/libxml2
-   curl? ( net-misc/curl[ssl] )
-   openssl? ( dev-libs/openssl:* )
-   !openssl? (
-   app-crypt/gpgme
-   dev-libs/libgcrypt:*
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   test? ( >=net-libs/gnutls-2.12.0 )
-"
-RDEPEND="${COMMON_DEPEND}
-   !openssl? ( >=app-crypt/gnupg-2 )
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
-
-src_prepare() {
-   base_src_prepare
-}
-
-src_configure() {
-   econf \
-   --disable-fatalwarnings \
-   $(use_with curl libcurl) \
-   $(use_enable curl curlreauthorizationbug) \
-   $(use_enable debug) \
-   $(use_enable nls) \
-   $(use_enable openssl openssl-backend) \
-   $(use_enable static-libs static) \
-   $(use_enable test)
-}
-
-src_install() {
-   base_src_install
-
-   prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-07-10 Thread Michael Palimaka
commit: 34bc5b0be8e9009b0b0af412fa66fddc4ce38b7e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Mon Jul 10 12:47:45 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Mon Jul 10 12:48:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34bc5b0b

net-libs/libisds: fix proxy maintainer metadata

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/libisds/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-libs/libisds/metadata.xml b/net-libs/libisds/metadata.xml
index fa877d363c4..976189dae44 100644
--- a/net-libs/libisds/metadata.xml
+++ b/net-libs/libisds/metadata.xml
@@ -9,7 +9,9 @@
 
 petr.pi...@atlas.cz
 Petr Pisar
-Proxy-Maintainer. Assign bugs to him
+
+
+   proxy-ma...@gentoo.org
 
 
 Use dev-libs/openssl as crypto backend



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-01-04 Thread Lars Wendler
commit: 477f3780f22f20063f811728286c27bfd2e8d5cc
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  4 14:05:47 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  4 14:06:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477f3780

net-libs/libisds: Bumped live ebuild to EAPI-6.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libisds/libisds-.ebuild | 35 +--
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/net-libs/libisds/libisds-.ebuild 
b/net-libs/libisds/libisds-.ebuild
index ab81852..c034a61 100644
--- a/net-libs/libisds/libisds-.ebuild
+++ b/net-libs/libisds/libisds-.ebuild
@@ -1,18 +1,15 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
-[[ ${PV} = * ]] && inherit git-2 autotools
-EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
-inherit base eutils
+[[ ${PV} = * ]] && inherit git-r3 autotools
 
 DESCRIPTION="Client library for accessing ISDS Soap services"
 HOMEPAGE="http://xpisar.wz.cz/libisds/;
 if [[ ${PV} = * ]]; then
-   SRC_URI=""
-   KEYWORDS=""
+   EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
 else
SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
KEYWORDS="~amd64 ~mips ~x86"
@@ -25,7 +22,7 @@ IUSE="+curl debug nls static-libs test"
 COMMON_DEPEND="
app-crypt/gpgme
dev-libs/expat
-   dev-libs/libgcrypt:0
+   dev-libs/libgcrypt:0=
dev-libs/libxml2
curl? ( net-misc/curl[ssl] )
 "
@@ -40,23 +37,25 @@ RDEPEND="${COMMON_DEPEND}
 DOCS=( NEWS README AUTHORS ChangeLog )
 
 src_prepare() {
-   base_src_prepare
+   default
[[ ${PV} = * ]] && eautoreconf
 }
 
 src_configure() {
-   econf \
-   --disable-fatalwarnings \
-   $(use_with curl libcurl) \
-   $(use_enable curl curlreauthorizationbug) \
-   $(use_enable debug) \
-   $(use_enable nls) \
-   $(use_enable static-libs static) \
+   local myeconfargs=(
+   --disable-fatalwarnings
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable static-libs static)
$(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
 }
 
 src_install() {
-   base_src_install
+   default
 
-   prune_libtool_files --all
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
 }



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-01-04 Thread Lars Wendler
commit: bb5f6eb3e0febc90077db51ecc3e3eb4242c2d68
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  4 14:06:19 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  4 14:06:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5f6eb3

net-libs/libisds: Removed old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libisds/Manifest   |  1 -
 net-libs/libisds/libisds-0.7.ebuild | 62 -
 2 files changed, 63 deletions(-)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index 352b8f1..63b7e27 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,3 +1,2 @@
 DIST libisds-0.10.6.tar.xz 724120 SHA256 
49ca70acef5dd5d092a03643f4d2f96ff8250b135eb8a5f62fa1fd3f8a8a SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 WHIRLPOOL 
2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1
 DIST libisds-0.10.tar.xz 721260 SHA256 
f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 
9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd
 WHIRLPOOL 
cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c
-DIST libisds-0.7.tar.xz 685388 SHA256 
db57ca7d8bdd306dfe5ec86d22afd36cb1b859a9e72bc3293d982842cb796701 SHA512 
c250d7967aee997fbbb97ab077ff0d83cbf3a5aca4cfe7885453a1e25e17e3da0c119424787cb3010febea6076f62e9150ea8d91f6d955708023df25e5b5690b
 WHIRLPOOL 
6b7c4b22411296d8c6b3a8c222da6404c915635dc7cb79d97f36123b0e033a337b93b0acb62dacff394a2d439d1622d078c6076cf34aa2f1838e4b57f7343c2a

diff --git a/net-libs/libisds/libisds-0.7.ebuild 
b/net-libs/libisds/libisds-0.7.ebuild
deleted file mode 100644
index ab81852..
--- a/net-libs/libisds/libisds-0.7.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-[[ ${PV} = * ]] && inherit git-2 autotools
-EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
-inherit base eutils
-
-DESCRIPTION="Client library for accessing ISDS Soap services"
-HOMEPAGE="http://xpisar.wz.cz/libisds/;
-if [[ ${PV} = * ]]; then
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
-   KEYWORDS="~amd64 ~mips ~x86"
-fi
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="+curl debug nls static-libs test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme
-   dev-libs/expat
-   dev-libs/libgcrypt:0
-   dev-libs/libxml2
-   curl? ( net-misc/curl[ssl] )
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-RDEPEND="${COMMON_DEPEND}
-   >=app-crypt/gnupg-2
-"
-
-DOCS=( NEWS README AUTHORS ChangeLog )
-
-src_prepare() {
-   base_src_prepare
-   [[ ${PV} = * ]] && eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-fatalwarnings \
-   $(use_with curl libcurl) \
-   $(use_enable curl curlreauthorizationbug) \
-   $(use_enable debug) \
-   $(use_enable nls) \
-   $(use_enable static-libs static) \
-   $(use_enable test)
-}
-
-src_install() {
-   base_src_install
-
-   prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/

2017-01-04 Thread Lars Wendler
commit: 62a4d1e25b7a9bdb05fd7026ea85fa8777bb0f0d
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan  4 14:03:40 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan  4 14:06:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a4d1e2

net-libs/libisds: Bump to version 0.10.6

Thanks to Petr Pisar for reporting this in bug #587590.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/libisds/Manifest  |  1 +
 net-libs/libisds/libisds-0.10.6.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/net-libs/libisds/Manifest b/net-libs/libisds/Manifest
index b916781..352b8f1 100644
--- a/net-libs/libisds/Manifest
+++ b/net-libs/libisds/Manifest
@@ -1,2 +1,3 @@
+DIST libisds-0.10.6.tar.xz 724120 SHA256 
49ca70acef5dd5d092a03643f4d2f96ff8250b135eb8a5f62fa1fd3f8a8a SHA512 
602c4e7f047dedff131cda941d02ea41fca7b8ea80eb668ab8f7ab2626a013ddc1a86f1e2c7b5759adf266c7c22c515284e6d4fdd9fd594ad310bed1be6016f4
 WHIRLPOOL 
2968e6aee47c57c87c9d7a3a94aa0b4e1a0aae41cb2949ce39e4a65eb47c0099ac7cdc96832deaa0b99f71aa4e4e32f94aa7a3b6a6aa70c2c1dff9f1ab53c4d1
 DIST libisds-0.10.tar.xz 721260 SHA256 
f2cb8bddbee79070bce599556ebbde42cacac1bc3ee405ab74c3b18a3dc3996f SHA512 
9b317d2a4c4e957151b0d397119460a249edb3f1d76c089fa9628551dc4f858d7c5e82bc5b363017c1193ea6a764a3aa6685f4b76fdf2f1c6c5f72436d9231cd
 WHIRLPOOL 
cb7ea1c23c15c9779ba98b15ccb3df90894135963f519603ee219f0b4db14bda3c7b11b6f8e495977fd689b47cfe45628c261cac7ba05c081e8a24efd895e19c
 DIST libisds-0.7.tar.xz 685388 SHA256 
db57ca7d8bdd306dfe5ec86d22afd36cb1b859a9e72bc3293d982842cb796701 SHA512 
c250d7967aee997fbbb97ab077ff0d83cbf3a5aca4cfe7885453a1e25e17e3da0c119424787cb3010febea6076f62e9150ea8d91f6d955708023df25e5b5690b
 WHIRLPOOL 
6b7c4b22411296d8c6b3a8c222da6404c915635dc7cb79d97f36123b0e033a337b93b0acb62dacff394a2d439d1622d078c6076cf34aa2f1838e4b57f7343c2a

diff --git a/net-libs/libisds/libisds-0.10.6.ebuild 
b/net-libs/libisds/libisds-0.10.6.ebuild
new file mode 100644
index ..5df268c
--- /dev/null
+++ b/net-libs/libisds/libisds-0.10.6.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Client library for accessing ISDS Soap services"
+HOMEPAGE="http://xpisar.wz.cz/libisds/;
+SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz;
+KEYWORDS="~amd64 ~mips ~x86"
+
+LICENSE="LGPL-3"
+SLOT="0"
+IUSE="+curl debug nls openssl static-libs test"
+
+COMMON_DEPEND="
+   dev-libs/expat
+   dev-libs/libxml2
+   curl? ( net-misc/curl[ssl] )
+   openssl? ( dev-libs/openssl:= )
+   !openssl? (
+   app-crypt/gpgme
+   dev-libs/libgcrypt:=
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   test? ( >=net-libs/gnutls-2.12.0 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !openssl? ( >=app-crypt/gnupg-2 )
+"
+
+DOCS=( NEWS README AUTHORS ChangeLog )
+
+src_configure() {
+   local myeconfargs=(
+   --disable-fatalwarnings
+   $(use_with curl libcurl)
+   $(use_enable curl curlreauthorizationbug)
+   $(use_enable debug)
+   $(use_enable nls)
+   $(use_enable openssl openssl-backend)
+   $(use_enable static-libs static)
+   $(use_enable test)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+
+   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
+}