[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/, dev-libs/libwbxml/files/

2023-01-08 Thread Andreas Sturmlechner
commit: 9d235fd5927b38ca008e04941ca640ef8a09603e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  8 20:40:50 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  8 20:58:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d235fd5

dev-libs/libwbxml: drop 0.11.7, 0.11.7-r1

Closes: https://bugs.gentoo.org/887499
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-libs/libwbxml/Manifest |   1 -
 .../files/libwbxml-0.11.7-expat-compat-fixes.patch | 116 -
 dev-libs/libwbxml/libwbxml-0.11.7-r1.ebuild|  37 ---
 dev-libs/libwbxml/libwbxml-0.11.7.ebuild   |  33 --
 4 files changed, 187 deletions(-)

diff --git a/dev-libs/libwbxml/Manifest b/dev-libs/libwbxml/Manifest
index 8fddd78e5437..0eb3efae0e0b 100644
--- a/dev-libs/libwbxml/Manifest
+++ b/dev-libs/libwbxml/Manifest
@@ -1,2 +1 @@
-DIST libwbxml-0.11.7.tar.gz 427429 BLAKE2B 
1ec456032d4d343f5b11c60dfe5fa5dfb8750c87f1e05c48b1671257822ce7ec121a7006ed9749aacd84d4ce9f5dfa0c358cf3f3581a4a24a34db1c91338f74a
 SHA512 
fc855650661593596a158527682d2c40d800c1fa44169d79e9ca9c6d64d67b6c660807ed89b1bddd644f114c27711356627ac919af91fd7f19d409879505512f
 DIST libwbxml-0.11.8.tar.gz 362833 BLAKE2B 
8501a578c1937097a7f0993baf0bed1d645d14441fca149142a8d338f9b6aece7f726576d9170dfc298388c66937d8a6549d52ed75305cab2c427c82b1331dfd
 SHA512 
14b74e3d25f21ce4bf05f4ed546087817c698b5a44190c569b7691e26510b117118bf828e15beccaa4bdd2e744c45f9b5695b38eb7994f3af0f4f81f90ecff69

diff --git a/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch 
b/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch
deleted file mode 100644
index 00479c7f6437..
--- a/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch
+++ /dev/null
@@ -1,116 +0,0 @@
-https://github.com/libwbxml/libwbxml/commit/4664d476fb5029073012b91880ce2a9bbc0b4725
-https://github.com/libwbxml/libwbxml/commit/4425e80f74b93a590b2c99638b9c5095e6a66244
-
-From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= 
-Date: Thu, 24 Feb 2022 20:30:18 +0100
-Subject: [PATCH] Allow the use of a namespace separator specified by the
- constant instead of hardcoded colon in the SyncML related code.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Slávek Banko 
 a/src/wbxml_internals.h
-+++ b/src/wbxml_internals.h
-@@ -156,7 +156,9 @@ typedef enum WBXMLWVDataType_e {
- #pragma warning(error: 4761) /**< integral size mismatch in argument : 
conversion supplied */
- #endif /* WIN32 */
- 
--#define WBXML_NAMESPACE_SEPARATOR ':'
-+/* Separator must be the same in both cases - once as a char, once as a 
string */
-+#define WBXML_NAMESPACE_SEPARATOR ':'
-+#define WBXML_NAMESPACE_SEPARATOR_STR ":"
- 
- /** @} */
- 
 a/src/wbxml_tree_clb_xml.c
-+++ b/src/wbxml_tree_clb_xml.c
-@@ -33,6 +33,7 @@
-  * @brief WBXML Tree Callbacks for XML Parser (Expat)
-  */
- 
-+#include "wbxml_internals.h"
- #include "wbxml_config_internals.h"
- 
- #if defined( HAVE_EXPAT )
-@@ -160,8 +161,8 @@ void wbxml_tree_clb_xml_start_element(void   *ctx,
-  * potentially embedded documents.
-  */
- if ((
-- (WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0) ||
-- (WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0)
-+ (WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0) ||
-+ (WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0)
- )&&
- (tree_ctx->current != NULL))
- {
-@@ -255,8 +256,8 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
- /* End of skipped node */
- 
- #if defined( WBXML_SUPPORT_SYNCML )
--if (WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0 ||
--  WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0) {
-+if (WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0 ||
-+  WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0) {
-   /* definitions first ... or some compilers don't like it */
- WBXMLBuffer *embed_doc = NULL;
- WBXMLTree *tree = NULL;
-@@ -277,10 +278,10 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
- }
- 
- /* Check Buffer Creation and add the closing tag */
--  if ((WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0 &&
-+  if ((WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0 &&
-(!wbxml_buffer_append_cstr(embed_doc, "")))
- ||
--  (WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0 &&
-+  (WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0 &&
-   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2022-12-25 Thread Sam James
commit: c6795f2cf91166c9b30bcf7b418fde745f829f44
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 26 03:19:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 26 03:19:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6795f2c

dev-libs/libwbxml: Stabilize 0.11.8 x86, #887499

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

 dev-libs/libwbxml/libwbxml-0.11.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
index 5dbecc4647ea..a41f564eca0e 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2022-12-25 Thread Sam James
commit: b012ead2018a10db770373bd100e5a29f1c8f736
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 26 03:19:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 26 03:19:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b012ead2

dev-libs/libwbxml: Stabilize 0.11.8 amd64, #887499

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

 dev-libs/libwbxml/libwbxml-0.11.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
index a41f564eca0e..bd47f6f4dd06 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2022-12-25 Thread Sam James
commit: 71e048e7ecff62b0096e3fa55d3f78aadd19ad59
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 26 03:19:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 26 03:19:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71e048e7

dev-libs/libwbxml: Stabilize 0.11.8 ppc, #887499

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

 dev-libs/libwbxml/libwbxml-0.11.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
index 8a8e8ca6f73a..5dbecc4647ea 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2022-03-13 Thread Bernard Cafarelli
commit: 29a41a03ef4a8929c47e117c18777daa430a1d39
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Mar 13 19:19:08 2022 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Mar 13 19:19:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a41a03

dev-libs/libwbxml: add 0.11.8

Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-libs/libwbxml/Manifest   |  1 +
 dev-libs/libwbxml/libwbxml-0.11.8.ebuild | 33 
 2 files changed, 34 insertions(+)

diff --git a/dev-libs/libwbxml/Manifest b/dev-libs/libwbxml/Manifest
index 272382147f60..8fddd78e5437 100644
--- a/dev-libs/libwbxml/Manifest
+++ b/dev-libs/libwbxml/Manifest
@@ -1 +1,2 @@
 DIST libwbxml-0.11.7.tar.gz 427429 BLAKE2B 
1ec456032d4d343f5b11c60dfe5fa5dfb8750c87f1e05c48b1671257822ce7ec121a7006ed9749aacd84d4ce9f5dfa0c358cf3f3581a4a24a34db1c91338f74a
 SHA512 
fc855650661593596a158527682d2c40d800c1fa44169d79e9ca9c6d64d67b6c660807ed89b1bddd644f114c27711356627ac919af91fd7f19d409879505512f
+DIST libwbxml-0.11.8.tar.gz 362833 BLAKE2B 
8501a578c1937097a7f0993baf0bed1d645d14441fca149142a8d338f9b6aece7f726576d9170dfc298388c66937d8a6549d52ed75305cab2c427c82b1331dfd
 SHA512 
14b74e3d25f21ce4bf05f4ed546087817c698b5a44190c569b7691e26510b117118bf828e15beccaa4bdd2e744c45f9b5695b38eb7994f3af0f4f81f90ecff69

diff --git a/dev-libs/libwbxml/libwbxml-0.11.8.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
new file mode 100644
index ..8a8e8ca6f73a
--- /dev/null
+++ b/dev-libs/libwbxml/libwbxml-0.11.8.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
+HOMEPAGE="https://github.com/libwbxml/libwbxml;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-libs/expat
+   virtual/libiconv"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )"
+
+DOCS=( BUGS ChangeLog README References THANKS TODO )
+S=${WORKDIR}/${PN}-${P}
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_INSTALL_DOC=OFF
+   -DENABLE_UNIT_TEST=$(usex test)
+   )
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/, dev-libs/libwbxml/files/

2022-02-26 Thread Sam James
commit: 8b880213b94234eba5e216a0742e37941d7446cc
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 26 19:06:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 26 19:06:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b880213

dev-libs/libwbxml: fix compatibility with newer expat

Bug: https://bugs.gentoo.org/833431
Signed-off-by: Sam James  gentoo.org>

 .../files/libwbxml-0.11.7-expat-compat-fixes.patch | 116 +
 dev-libs/libwbxml/libwbxml-0.11.7-r1.ebuild|  37 +++
 2 files changed, 153 insertions(+)

diff --git a/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch 
b/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch
new file mode 100644
index ..00479c7f6437
--- /dev/null
+++ b/dev-libs/libwbxml/files/libwbxml-0.11.7-expat-compat-fixes.patch
@@ -0,0 +1,116 @@
+https://github.com/libwbxml/libwbxml/commit/4664d476fb5029073012b91880ce2a9bbc0b4725
+https://github.com/libwbxml/libwbxml/commit/4425e80f74b93a590b2c99638b9c5095e6a66244
+
+From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= 
+Date: Thu, 24 Feb 2022 20:30:18 +0100
+Subject: [PATCH] Allow the use of a namespace separator specified by the
+ constant instead of hardcoded colon in the SyncML related code.
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Slávek Banko 
+--- a/src/wbxml_internals.h
 b/src/wbxml_internals.h
+@@ -156,7 +156,9 @@ typedef enum WBXMLWVDataType_e {
+ #pragma warning(error: 4761) /**< integral size mismatch in argument : 
conversion supplied */
+ #endif /* WIN32 */
+ 
+-#define WBXML_NAMESPACE_SEPARATOR ':'
++/* Separator must be the same in both cases - once as a char, once as a 
string */
++#define WBXML_NAMESPACE_SEPARATOR ':'
++#define WBXML_NAMESPACE_SEPARATOR_STR ":"
+ 
+ /** @} */
+ 
+--- a/src/wbxml_tree_clb_xml.c
 b/src/wbxml_tree_clb_xml.c
+@@ -33,6 +33,7 @@
+  * @brief WBXML Tree Callbacks for XML Parser (Expat)
+  */
+ 
++#include "wbxml_internals.h"
+ #include "wbxml_config_internals.h"
+ 
+ #if defined( HAVE_EXPAT )
+@@ -160,8 +161,8 @@ void wbxml_tree_clb_xml_start_element(void   *ctx,
+  * potentially embedded documents.
+  */
+ if ((
+- (WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0) ||
+- (WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0)
++ (WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0) ||
++ (WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0)
+ )&&
+ (tree_ctx->current != NULL))
+ {
+@@ -255,8 +256,8 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
+ /* End of skipped node */
+ 
+ #if defined( WBXML_SUPPORT_SYNCML )
+-if (WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0 ||
+-  WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0) {
++if (WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0 ||
++  WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0) {
+   /* definitions first ... or some compilers don't like it */
+ WBXMLBuffer *embed_doc = NULL;
+ WBXMLTree *tree = NULL;
+@@ -277,10 +278,10 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
+ }
+ 
+ /* Check Buffer Creation and add the closing tag */
+-  if ((WBXML_STRCMP(localName, "syncml:devinf:DevInf") == 0 &&
++  if ((WBXML_STRCMP(localName, "syncml:devinf" 
WBXML_NAMESPACE_SEPARATOR_STR "DevInf") == 0 &&
+(!wbxml_buffer_append_cstr(embed_doc, "")))
+ ||
+-  (WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0 &&
++  (WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0 &&
+(!wbxml_buffer_append_cstr(embed_doc, ""
+ {
+ tree_ctx->error = WBXML_ERROR_NOT_ENOUGH_MEMORY;
+@@ -289,7 +290,7 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
+ }
+ 
+ /* Add doctype to give the XML parser a chance */
+-  if (WBXML_STRCMP(localName, "syncml:dmddf1.2:MgmtTree") == 0 &&
++  if (WBXML_STRCMP(localName, "syncml:dmddf1.2" 
WBXML_NAMESPACE_SEPARATOR_STR "MgmtTree") == 0 &&
+   tree_ctx->tree->lang->langID != WBXML_LANG_SYNCML_SYNCML12)
+   {
+ tree_ctx->error = WBXML_ERROR_UNKNOWN_XML_LANGUAGE;
+@@ -305,7 +306,7 @@ void wbxml_tree_clb_xml_end_element(void   *ctx,
+   lang = 
wbxml_tables_get_table(WBXML_LANG_SYNCML_DEVINF11);
+   break;
+   case WBXML_LANG_SYNCML_SYNCML12:
+-   

[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2021-02-27 Thread Andreas Sturmlechner
commit: c1fb1e30f0b1be65e2a248653319b1932b51d05b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb 27 17:43:27 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb 27 17:43:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1fb1e30

dev-libs/libwbxml: Drop 0.11.2 and 0.11.6

Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-libs/libwbxml/Manifest   |  2 --
 dev-libs/libwbxml/libwbxml-0.11.2.ebuild | 35 
 dev-libs/libwbxml/libwbxml-0.11.6.ebuild | 32 -
 3 files changed, 69 deletions(-)

diff --git a/dev-libs/libwbxml/Manifest b/dev-libs/libwbxml/Manifest
index cafeede126c..272382147f6 100644
--- a/dev-libs/libwbxml/Manifest
+++ b/dev-libs/libwbxml/Manifest
@@ -1,3 +1 @@
-DIST libwbxml-0.11.2.tar.bz2 354176 BLAKE2B 
bedc86dc269c876d788b682b67fbc021a50ee6742dad4424a118edee061e5f745941dff5589c2b4da562822f655b277c09858382615564831317bcb5b51a4c16
 SHA512 
1eb01e35b1fab548163caca8ba024216926995adaf2e3bd7a001927858c51a792620eb7e9ca111fc6bdf5af5c1a1cbd3eac3fe53d427cd1a6d9e8aadfc51bf1f
-DIST libwbxml-0.11.6.tar.bz2 360001 BLAKE2B 
96fca6a457369b7546c50bb4459490e2dc7b2bf97c3c198abc386e099695a3a1912b7292bb541b841fe63a225d8c387bb13100b458ca17a4daf252751a9a861d
 SHA512 
534c647bae41bf703bb48158d63dc0dd168ead5c4bcd6e775e2ce2588e1bce82f3f9f94ebd863fea2a40f0e9d4af39849a673093e66d7b26f77ab012cf6f108d
 DIST libwbxml-0.11.7.tar.gz 427429 BLAKE2B 
1ec456032d4d343f5b11c60dfe5fa5dfb8750c87f1e05c48b1671257822ce7ec121a7006ed9749aacd84d4ce9f5dfa0c358cf3f3581a4a24a34db1c91338f74a
 SHA512 
fc855650661593596a158527682d2c40d800c1fa44169d79e9ca9c6d64d67b6c660807ed89b1bddd644f114c27711356627ac919af91fd7f19d409879505512f

diff --git a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
deleted file mode 100644
index e836a0d844f..000
--- a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
-HOMEPAGE="https://github.com/libwbxml/libwbxml;
-SRC_URI="mirror://sourceforge/libwbxml/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-libs/expat
-   virtual/libiconv
-"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/check )
-"
-
-DOCS=( AUTHORS BUGS ChangeLog NEWS README References THANKS TODO )
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_INSTALL_DOC=OFF
-   -DENABLE_UNIT_TEST=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/dev-libs/libwbxml/libwbxml-0.11.6.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.6.ebuild
deleted file mode 100644
index 928004f0e6b..000
--- a/dev-libs/libwbxml/libwbxml-0.11.6.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake-utils
-
-DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
-HOMEPAGE="https://github.com/libwbxml/libwbxml;
-SRC_URI="mirror://sourceforge/libwbxml/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/expat
-   virtual/libiconv"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/check )"
-
-DOCS=( BUGS ChangeLog README References THANKS TODO )
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_INSTALL_DOC=OFF
-   -DENABLE_UNIT_TEST=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2021-02-27 Thread Sam James
commit: 4cb48f0f539712231253a49d200327e7dc80a3c7
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 27 16:16:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 27 16:16:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cb48f0f

dev-libs/libwbxml: Stabilize 0.11.7 amd64, #770703

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

 dev-libs/libwbxml/libwbxml-0.11.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
index 791328e498b..a36bf18136e 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2021-02-27 Thread Sam James
commit: e21ce7381f0687cfc6bd9c4db361abfc9dee949a
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 27 10:08:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 27 10:08:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21ce738

dev-libs/libwbxml: Stabilize 0.11.7 ppc, #770703

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

 dev-libs/libwbxml/libwbxml-0.11.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
index a2d2e61d86d..791328e498b 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="~amd64 ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2021-02-26 Thread Sam James
commit: f48a99d795c1d3f281881861ad7e00e98dc36052
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 26 15:18:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 26 15:18:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f48a99d7

dev-libs/libwbxml: Stabilize 0.11.7 x86, #770703

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

 dev-libs/libwbxml/libwbxml-0.11.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
index 55fd805f993..a2d2e61d86d 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2021-01-26 Thread Bernard Cafarelli
commit: 0a9faa3ea7098fc6a4370dbb89a48cd14eb4006f
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jan 26 12:30:25 2021 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Tue Jan 26 12:30:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9faa3e

dev-libs/libwbxml: 0.11.7 bump

Switch to cmake eclass and github SRC_URI

Closes: https://bugs.gentoo.org/767241
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-libs/libwbxml/Manifest   |  1 +
 dev-libs/libwbxml/libwbxml-0.11.7.ebuild | 33 
 2 files changed, 34 insertions(+)

diff --git a/dev-libs/libwbxml/Manifest b/dev-libs/libwbxml/Manifest
index 7a59462c88e..cafeede126c 100644
--- a/dev-libs/libwbxml/Manifest
+++ b/dev-libs/libwbxml/Manifest
@@ -1,2 +1,3 @@
 DIST libwbxml-0.11.2.tar.bz2 354176 BLAKE2B 
bedc86dc269c876d788b682b67fbc021a50ee6742dad4424a118edee061e5f745941dff5589c2b4da562822f655b277c09858382615564831317bcb5b51a4c16
 SHA512 
1eb01e35b1fab548163caca8ba024216926995adaf2e3bd7a001927858c51a792620eb7e9ca111fc6bdf5af5c1a1cbd3eac3fe53d427cd1a6d9e8aadfc51bf1f
 DIST libwbxml-0.11.6.tar.bz2 360001 BLAKE2B 
96fca6a457369b7546c50bb4459490e2dc7b2bf97c3c198abc386e099695a3a1912b7292bb541b841fe63a225d8c387bb13100b458ca17a4daf252751a9a861d
 SHA512 
534c647bae41bf703bb48158d63dc0dd168ead5c4bcd6e775e2ce2588e1bce82f3f9f94ebd863fea2a40f0e9d4af39849a673093e66d7b26f77ab012cf6f108d
+DIST libwbxml-0.11.7.tar.gz 427429 BLAKE2B 
1ec456032d4d343f5b11c60dfe5fa5dfb8750c87f1e05c48b1671257822ce7ec121a7006ed9749aacd84d4ce9f5dfa0c358cf3f3581a4a24a34db1c91338f74a
 SHA512 
fc855650661593596a158527682d2c40d800c1fa44169d79e9ca9c6d64d67b6c660807ed89b1bddd644f114c27711356627ac919af91fd7f19d409879505512f

diff --git a/dev-libs/libwbxml/libwbxml-0.11.7.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
new file mode 100644
index 000..55fd805f993
--- /dev/null
+++ b/dev-libs/libwbxml/libwbxml-0.11.7.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
+HOMEPAGE="https://github.com/libwbxml/libwbxml;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-libs/expat
+   virtual/libiconv"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )"
+
+DOCS=( BUGS ChangeLog README References THANKS TODO )
+S=${WORKDIR}/${PN}-${P}
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_INSTALL_DOC=OFF
+   -DENABLE_UNIT_TEST=$(usex test)
+   )
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2019-09-23 Thread Bernard Cafarelli
commit: e391607d27ea1c40555fa9f9befb80372a355d4b
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Sep 23 16:32:55 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Sep 23 16:38:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e391607d

dev-libs/libwbxml: 0.11.6 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-libs/libwbxml/Manifest   |  1 +
 dev-libs/libwbxml/libwbxml-0.11.6.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-libs/libwbxml/Manifest b/dev-libs/libwbxml/Manifest
index 4062485fb08..7a59462c88e 100644
--- a/dev-libs/libwbxml/Manifest
+++ b/dev-libs/libwbxml/Manifest
@@ -1 +1,2 @@
 DIST libwbxml-0.11.2.tar.bz2 354176 BLAKE2B 
bedc86dc269c876d788b682b67fbc021a50ee6742dad4424a118edee061e5f745941dff5589c2b4da562822f655b277c09858382615564831317bcb5b51a4c16
 SHA512 
1eb01e35b1fab548163caca8ba024216926995adaf2e3bd7a001927858c51a792620eb7e9ca111fc6bdf5af5c1a1cbd3eac3fe53d427cd1a6d9e8aadfc51bf1f
+DIST libwbxml-0.11.6.tar.bz2 360001 BLAKE2B 
96fca6a457369b7546c50bb4459490e2dc7b2bf97c3c198abc386e099695a3a1912b7292bb541b841fe63a225d8c387bb13100b458ca17a4daf252751a9a861d
 SHA512 
534c647bae41bf703bb48158d63dc0dd168ead5c4bcd6e775e2ce2588e1bce82f3f9f94ebd863fea2a40f0e9d4af39849a673093e66d7b26f77ab012cf6f108d

diff --git a/dev-libs/libwbxml/libwbxml-0.11.6.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.6.ebuild
new file mode 100644
index 000..5837b81e8f4
--- /dev/null
+++ b/dev-libs/libwbxml/libwbxml-0.11.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
+HOMEPAGE="https://github.com/libwbxml/libwbxml;
+SRC_URI="mirror://sourceforge/libwbxml/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="test"
+
+RDEPEND="dev-libs/expat
+   virtual/libiconv"
+DEPEND="${RDEPEND}
+   test? ( dev-libs/check )"
+
+DOCS=( BUGS ChangeLog README References THANKS TODO )
+
+src_configure() {
+   local mycmakeargs=(
+   -DENABLE_INSTALL_DOC=OFF
+   -DENABLE_UNIT_TEST=$(usex test)
+   )
+
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2019-09-23 Thread Bernard Cafarelli
commit: be1fe04043f0a46ecc70e10ea1ff4d1ba9ad5531
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Sep 23 16:21:44 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Sep 23 16:33:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be1fe040

dev-libs/libwbxml: move to gnustep maintainership

This is actually used by gnustep-apps/sogo, the dependency was missing
Update to point to new home on github

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-libs/libwbxml/libwbxml-0.11.2.ebuild | 4 ++--
 dev-libs/libwbxml/metadata.xml   | 6 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
index 5c14fc4f61f..eac776740c3 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit cmake-utils
 
 DESCRIPTION="Library and tools to parse, encode and handle WBXML documents"
-HOMEPAGE="http://libwbxml.opensync.org/;
+HOMEPAGE="https://github.com/libwbxml/libwbxml;
 SRC_URI="mirror://sourceforge/libwbxml/${P}.tar.bz2"
 
 LICENSE="GPL-2"

diff --git a/dev-libs/libwbxml/metadata.xml b/dev-libs/libwbxml/metadata.xml
index f71bb61e3de..732d006393b 100644
--- a/dev-libs/libwbxml/metadata.xml
+++ b/dev-libs/libwbxml/metadata.xml
@@ -1,8 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   gnus...@gentoo.org
+   Gentoo GNUstep Project
+   

+   libwbxml/libwbxml
libwbxml

 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libwbxml/

2018-07-16 Thread Andreas Sturmlechner
commit: e4a75794b550ef46a5084040c7c6f6f2ae801e2e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jul 16 22:19:48 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jul 16 22:25:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a75794

dev-libs/libwbxml: EAPI-6 bump

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 dev-libs/libwbxml/libwbxml-0.11.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild 
b/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
index 914eeba6a1b..5c14fc4f61f 100644
--- a/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
+++ b/dev-libs/libwbxml/libwbxml-0.11.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 inherit cmake-utils