commit mxml for openSUSE:Factory

2020-03-09 Thread root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2020-03-09 11:41:18

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new.26092 (New)


Package is "mxml"

Mon Mar  9 11:41:18 2020 rev:28 rq:782530 version:3.1

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2018-07-27 
10:55:30.589562476 +0200
+++ /work/SRC/openSUSE:Factory/.mxml.new.26092/mxml.changes 2020-03-09 
11:41:38.769300143 +0100
@@ -1,0 +2,52 @@
+Sat Mar  7 13:14:37 UTC 2020 - Adam Majer 
+
+- Add keyring
+- Fix source URLs to point to actual releases
+
+---
+Thu Mar  5 23:39:46 UTC 2020 - Marcus Rueckert 
+
+- Update to version 3.1
+  - The mxmlLoad* functions now print an error when the XML does
+not start with < and no parent node is supplied (Issue #256,
+Issue #259)
+  - Fixed an issue with “make install” trying to install old files
+(Issue #257)
+  - Fixed some DSO installation issues on Linux.
+- Changes from 3.0
+  - Changed the license to Apache 2.0 with exceptions (Issue #239)
+  - All of the internal node structures are now moved out of the
+public header (Issue #240)
+  - Fixed a potential buffer overflow when writing floating point
+data (Issue #233)
+  - Moved mxmldoc to a new codedoc project whose focus is on
+generating code documentation (Issue #235, Issue #236, Issue
+#237)
+  - Error messages now include the line number of the error (Issue
+#230)
+  - The mxmlSetCDATA, mxmlSetElement, mxmlSetOpaque,
+mxmlSetOpaquef, mxmlSetText, and mxmlSetTextf functions caused
+a use-after-free bug if the value came from the same node
+(Issue #241)
+  - The mxmlSetOpaquef and mxmlSetTextf functions did not work
+(Issue #244)
+  - The _mxml_strdupf function did not work on Windows (Issue #245)
+- Changes from 2.12
+  - Added yet more documentation about using MXML_OPAQUE_CALLBACK
+when you want to get full strings for inline text instead of
+separated words (Issue #190)
+  - No longer build documentation sets on macOS since Xcode no
+longer supports them (Issue #198)
+  - Updated the va_copy macro for use with BCC (Issue #211)
+  - The mxmlNewCDATA and mxmlSetCDATA functions incorrectly added
+the XML trailer “]]” to the string (Issue #216)
+  - Cross-compiling failed on install (Issue #218)
+  - Fixed a crash bug in the mxmlWrite functions (Issue #228)
+  - The mxmlWrite functions no longer write the siblings of the
+passed node (Issue #228)
+  - Updated the markdown and ZIP container libraries used for
+mxmldoc.
+- remove mxmldoc binaries and man pages
+- enable threading support
+
+---

Old:

  mxml-2.11.tar.gz

New:

  mxml-3.1.tar.gz
  mxml-3.1.tar.gz.sig
  mxml.keyring



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.DzEGmm/_old  2020-03-09 11:41:40.569301117 +0100
+++ /var/tmp/diff_new_pack.DzEGmm/_new  2020-03-09 11:41:40.573301120 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,19 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+%define library_name libmxml1
 
 Name:   mxml
-Version:2.11
+Version:3.1
 Release:0
 Summary:Small XML Parsing Library
-License:LGPL-2.1-or-later
+# The Mini-XML library is licensed under the Apache License Version 2.0 with an
+# exception to allow linking against GPL2/LGPL2-only software.
+License:Apache-2.0
 Group:  Development/Libraries/C and C++
 URL:https://www.msweet.org/mxml
-Source: 
https://github.com/michaelrsweet/mxml/archive/v%{version}/%{name}-%{version}.tar.gz
-Source1:baselibs.conf
+Source: 
https://github.com/michaelrsweet/mxml/releases/download/v%{version}/mxml-%{version}.tar.gz
+Source1:
https://github.com/michaelrsweet/mxml/releases/download/v%{version}/mxml-%{version}.tar.gz.sig
+# key from https://www.msweet.org/pgp.html
+Source2:mxml.keyring
+Source10:   baselibs.conf
 BuildRequires:  pkgconfig
 
 %description
@@ -34,8 +40,6 @@
 
 This package holds the commandline tools for mxml.
 
-%define library_name libmxml1
-
 %pa

commit mxml for openSUSE:Factory

2018-07-27 Thread root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2018-07-27 10:55:15

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Fri Jul 27 10:55:15 2018 rev:27 rq:623246 version:2.11

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2017-05-04 
08:50:44.455967705 +0200
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2018-07-27 
10:55:30.589562476 +0200
@@ -1,0 +2,35 @@
+Sun Jul 15 13:11:50 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 2.11:
+  * CDATA nodes now omit the trailing "]]" for convenience
+(gh#michaelrsweet/mxml#170).
+  * Fixed a memory leak in mxmlDelete (gh#michaelrsweet/mxml#183)
+  * mxmlElementSetAttrf did not work with some versions of Visual
+Studio (gh#michaelrsweet/mxml#184)
+  * Added mxmlElementGetAttrByIndex and mxmlELementGetAttrCount
+functions (gh#michaelrsweet/mxml#185)
+  * The configure script now properly supports cross-compilation
+(gh#michaelrsweet/mxml#188)
+  * The mxmldoc utility now supports generation of EPUB files
+(gh#michaelrsweet/mxml#189)
+  * The mxmldoc utility now supports the SOURCE_DATE_EPOCH
+environment variable for reproducible builds
+(gh#michaelrsweet/mxml#193)
+  * The mxmldoc utility now supports Markdown
+(gh#michaelrsweet/mxml#194)
+  * Fixed writing of custom data values (gh#michaelrsweet/mxml#201)
+  * Added mxmlNewOpaquef and mxmlSetOpaquef functions to add and
+set formatted opaque string values.
+  * The mxmldoc utility scanned and loaded descriptive text
+differently, causing the detailed descriptions ("discussion")
+to be lost in generated documentation.
+  * The mxmldoc utility now supports @exclude format@ comments to
+exclude documentation based on the output format. The format
+string can be all to exclude documentation for all formats or a
+comma-delimited list such as @exclude man,html@.
+- Drop upstreamed patches:
+  * reproducible.path
+  * mxml-2.3-nobinstrip.patch
+- Clean spec file.
+
+---

Old:

  mxml-2.10.tar.gz
  mxml-2.3-nobinstrip.patch
  reproducible.patch

New:

  mxml-2.11.tar.gz



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.a5LSs3/_old  2018-07-27 10:55:31.121563494 +0200
+++ /var/tmp/diff_new_pack.a5LSs3/_new  2018-07-27 10:55:31.121563494 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,19 +17,14 @@
 
 
 Name:   mxml
-Url:http://www.msweet.org/projects.php?Z3
-Version:2.10
+Version:2.11
 Release:0
 Summary:Small XML Parsing Library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Libraries/C and C++
-
-Source: http://www.msweet.org/files/project3/%{name}-%{version}.tar.gz
+URL:https://www.msweet.org/mxml
+Source: 
https://github.com/michaelrsweet/mxml/archive/v%{version}/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
-Patch:  mxml-2.3-nobinstrip.patch
-# PATCH-FIX-UPSTREAM -- 
https://github.com/michaelrsweet/mxml/commit/b79d3e0f07495b4a113f1ad95ae08c19664ea5ac
-Patch1: reproducible.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkgconfig
 
 %description
@@ -41,13 +36,11 @@
 
 %define library_name libmxml1
 
-%package -n %library_name
-#
+%package -n %{library_name}
 Summary:Shared library for mxml
-License:LGPL-2.1+
 Group:  System/Libraries
 
-%description -n %library_name
+%description -n %{library_name}
 Mini-XML is a small XML parsing library that you can use to read XML
 and XML-like data files in your application without requiring large
 nonstandard libraries.
@@ -55,11 +48,10 @@
 This package holds the shared library for mxml.
 
 %package devel
-Requires:   %{library_name} = %{version}
-#
 Summary:Development files for mxml
-License:GPL-2.0+
 Group:  Development/Libraries/C and C++
+Requires:   %{library_name} = %{version}
+Suggests:   mxml-doc = %{version}
 
 %description devel
 Mini-XML is a small XML parsing library that you can use to read XML
@@ -68,43 +60,46 @@
 
 This package holds the development files for mxml.
 
+%package doc
+Summary:Documentation for mxml
+Group:  Documentation/HTML
+BuildArch:  noarch
+
+%description do

commit mxml for openSUSE:Factory

2017-05-03 Thread root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2017-05-04 08:50:37

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Thu May  4 08:50:37 2017 rev:26 rq:491266 version:2.10

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2016-11-21 
14:22:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2017-05-04 
08:50:44.455967705 +0200
@@ -1,0 +2,5 @@
+Tue Apr 25 04:45:36 UTC 2017 - bwiedem...@suse.com
+
+- Add reproducible.patch to make build reproducible
+
+---

New:

  reproducible.patch



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.Lwh63N/_old  2017-05-04 08:50:45.623803008 +0200
+++ /var/tmp/diff_new_pack.Lwh63N/_new  2017-05-04 08:50:45.627802444 +0200
@@ -27,6 +27,8 @@
 Source: http://www.msweet.org/files/project3/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
 Patch:  mxml-2.3-nobinstrip.patch
+# PATCH-FIX-UPSTREAM -- 
https://github.com/michaelrsweet/mxml/commit/b79d3e0f07495b4a113f1ad95ae08c19664ea5ac
+Patch1: reproducible.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkgconfig
 
@@ -69,6 +71,7 @@
 %prep
 %setup
 %patch
+%patch1 -p1
 
 %build
 %configure --enable-shared --with-docdir=%{_docdir}/%{name}

++ reproducible.patch ++
>From b79d3e0f07495b4a113f1ad95ae08c19664ea5ac Mon Sep 17 00:00:00 2001
From: Michael Sweet 
Date: Sun, 23 Apr 2017 12:49:40 -0400
Subject: [PATCH] Add support for SOURCE_DATE_EPOCH environment variable (Issue
 #193)

---
 CHANGES.md   | 2 ++
 doc/mxml.man | 2 +-
 mxmldoc.c| 9 -
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/mxmldoc.c b/mxmldoc.c
index 7f475ef..4abe707 100644
--- a/mxmldoc.c
+++ b/mxmldoc.c
@@ -5604,6 +5604,7 @@ write_man(const char  *man_name,  /* I - Name of manpage 
*/
*parent;/* Parent class */
   int  inscope;/* Variable/method scope */
   char prefix; /* Prefix character */
+  const char   *source_date_epoch; /* SOURCE_DATE_EPOCH environment 
variable */
   time_t   curtime;/* Current time */
   struct tm*curdate;   /* Current date */
   char buffer[1024];   /* String buffer */
@@ -5617,9 +5618,15 @@ write_man(const char  *man_name, /* I - Name of manpage 
*/
 
  /*
   * Standard man page...
+  *
+  * Get the current date, using the SOURCE_DATE_EPOCH environment variable, if
+  * present, for the number of seconds since the epoch - this enables
+  * reproducible builds (Issue #193).
   */
 
-  curtime = time(NULL);
+  if ((source_date_epoch = getenv("SOURCE_DATE_EPOCH")) == NULL || (curtime = 
(time_t)strtol(source_date_epoch, NULL, 10)) <= 0)
+curtime = time(NULL);
+
   curdate = localtime(&curtime);
   strftime(buffer, sizeof(buffer), "%x", curdate);
 



commit mxml for openSUSE:Factory

2016-11-21 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2016-11-21 14:22:37

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2015-03-11 
09:57:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2016-11-21 
14:22:38.0 +0100
@@ -1,0 +2,16 @@
+Fri Nov 11 14:50:28 UTC 2016 - mrueck...@suse.de
+
+- update to version 2.10
+  - The version number in mxml.h was wrong (Bug #532)
+  - The mxml.spec file was out of date (Bug #521)
+  - Mini-XML no longer allows malformed element names (Bug #509)
+  - mxmlLoad* and mxmlSAXLoad* did not properly create text nodes
+when MXML_TEXT_CALLBACK was specified (Bug #531)
+  - mxmlDelete used a recursive algorithm which could require large
+amounts of stack space depending on the file (Bug #549,
+CVE-2016-4570) (bnc #979205)
+  - mxmlWrite* used a recursive algorithm which could require large
+amounts of stack space depending on the file (Bug #549,
+CVE-2016-4571) (bnc #979206)
+
+---

Old:

  mxml-2.9.tar.gz

New:

  mxml-2.10.tar.gz



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.rru1xz/_old  2016-11-21 14:22:39.0 +0100
+++ /var/tmp/diff_new_pack.rru1xz/_new  2016-11-21 14:22:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:   mxml
 Url:http://www.msweet.org/projects.php?Z3
-Version:2.9
+Version:2.10
 Release:0
 Summary:Small XML Parsing Library
 License:LGPL-2.1+

++ mxml-2.9.tar.gz -> mxml-2.10.tar.gz ++
 2550 lines of diff (skipped)




commit mxml for openSUSE:Factory

2015-03-11 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2015-03-11 09:57:12

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2014-09-12 
15:25:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2015-03-11 
09:57:17.0 +0100
@@ -1,0 +2,9 @@
+Thu Mar  5 15:01:03 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 2.9
+  * mxmlLoad* did not correctly load value nodes with MXML_NO_CALLBACK
+or MXML_TEXT_CALLBACK (Bug #502)
+- Update homepage Url
+- Use download Url as source
+
+---

Old:

  mxml-2.6.tar.bz2

New:

  mxml-2.9.tar.gz



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.o0z5RO/_old  2015-03-11 09:57:18.0 +0100
+++ /var/tmp/diff_new_pack.o0z5RO/_new  2015-03-11 09:57:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   mxml
-Url:http://www.easysw.com/~mike/mxml
-Version:2.6
+Url:http://www.msweet.org/projects.php?Z3
+Version:2.9
 Release:0
 Summary:Small XML Parsing Library
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
 
-Source: %{name}-%{version}.tar.bz2
+Source: http://www.msweet.org/files/project3/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
 Patch:  mxml-2.3-nobinstrip.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -37,12 +37,6 @@
 
 This package holds the commandline tools for mxml.
 
-
-
-Authors:
-
-Michael Sweet
-
 %define library_name libmxml1
 
 %package -n %library_name
@@ -58,12 +52,6 @@
 
 This package holds the shared library for mxml.
 
-
-
-Authors:
-
-Michael Sweet
-
 %package devel
 Requires:   %{library_name} = %{version}
 #
@@ -78,12 +66,6 @@
 
 This package holds the development files for mxml.
 
-
-
-Authors:
-
-Michael Sweet
-
 %prep
 %setup
 %patch

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2014-09-12 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2014-09-12 15:25:21

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2014-09-12 
11:19:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2014-09-12 
15:25:35.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 12 08:29:09 UTC 2014 - jeng...@inai.de
+
+- Improve on RPM group classification
+
+---



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.9OLen4/_old  2014-09-12 15:25:37.0 +0200
+++ /var/tmp/diff_new_pack.9OLen4/_new  2014-09-12 15:25:37.0 +0200
@@ -22,7 +22,8 @@
 Release:0
 Summary:Small XML Parsing Library
 License:LGPL-2.1+
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/C and C++
+
 Source: %{name}-%{version}.tar.bz2
 Source1:baselibs.conf
 Patch:  mxml-2.3-nobinstrip.patch
@@ -48,7 +49,7 @@
 #
 Summary:Shared library for mxml
 License:LGPL-2.1+
-Group:  Development/Libraries/Other
+Group:  System/Libraries
 
 %description -n %library_name
 Mini-XML is a small XML parsing library that you can use to read XML
@@ -68,7 +69,7 @@
 #
 Summary:Development files for mxml
 License:GPL-2.0+
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/C and C++
 
 %description devel
 Mini-XML is a small XML parsing library that you can use to read XML

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2014-09-12 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2014-09-12 11:19:22

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml"

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2012-02-16 
10:06:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2014-09-12 
11:19:24.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 11 19:02:58 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Add baselibs.conf
+
+---

New:

  baselibs.conf



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.XR46TH/_old  2014-09-12 11:19:25.0 +0200
+++ /var/tmp/diff_new_pack.XR46TH/_new  2014-09-12 11:19:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,15 @@
 #
 
 
-
 Name:   mxml
 Url:http://www.easysw.com/~mike/mxml
-License:LGPL-2.1+
-Group:  Development/Libraries/Other
 Version:2.6
-Release:25
+Release:0
 Summary:Small XML Parsing Library
+License:LGPL-2.1+
+Group:  Development/Libraries/Other
 Source: %{name}-%{version}.tar.bz2
+Source1:baselibs.conf
 Patch:  mxml-2.3-nobinstrip.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkgconfig
@@ -45,9 +45,10 @@
 %define library_name libmxml1
 
 %package -n %library_name
-Group:  Development/Libraries/Other
 #
 Summary:Shared library for mxml
+License:LGPL-2.1+
+Group:  Development/Libraries/Other
 
 %description -n %library_name
 Mini-XML is a small XML parsing library that you can use to read XML
@@ -63,11 +64,11 @@
 Michael Sweet
 
 %package devel
-License:GPL-2.0+
-Group:  Development/Libraries/Other
 Requires:   %{library_name} = %{version}
 #
 Summary:Development files for mxml
+License:GPL-2.0+
+Group:  Development/Libraries/Other
 
 %description devel
 Mini-XML is a small XML parsing library that you can use to read XML

++ baselibs.conf ++
libmxml1--
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2012-02-16 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2012-02-16 10:06:24

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml", Maintainer is "mrueck...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/mxml/mxml.changes2011-09-23 
02:13:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.mxml.new/mxml.changes   2012-02-16 
10:06:25.0 +0100
@@ -1,0 +2,6 @@
+Sun Jan 29 19:52:20 UTC 2012 - jeng...@medozas.de
+
+- Remove redundant tags/sections per specfile guideline suggestions
+- Parallel building using %_smp_mflags
+
+---



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.PSfxSD/_old  2012-02-16 10:06:26.0 +0100
+++ /var/tmp/diff_new_pack.PSfxSD/_new  2012-02-16 10:06:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mxml
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   mxml
@@ -45,13 +44,12 @@
 
 %define library_name libmxml1
 
-%package -n libmxml1
-License:LGPL-2.1+
+%package -n %library_name
 Group:  Development/Libraries/Other
 #
 Summary:Shared library for mxml
 
-%description -n libmxml1
+%description -n %library_name
 Mini-XML is a small XML parsing library that you can use to read XML
 and XML-like data files in your application without requiring large
 nonstandard libraries.
@@ -90,16 +88,13 @@
 
 %build
 %configure --enable-shared --with-docdir=%{_docdir}/%{name}
-%{__make}
+make %{?_smp_mflags}
 
 %install
 %makeinstall DSTROOT=%{buildroot}
 # we dont want the static lib
 %{__rm} -rv %{buildroot}%{_libdir}/libmxml.a
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %post   -n %{library_name} -p /sbin/ldconfig
 
 %postun -n %{library_name} -p /sbin/ldconfig

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package mxml for openSUSE:Factory checked in 
at 2011-12-06 18:30:39

Comparing /work/SRC/openSUSE:Factory/mxml (Old)
 and  /work/SRC/openSUSE:Factory/.mxml.new (New)


Package is "mxml", Maintainer is "mrueck...@suse.com"

Changes:




Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.xiqK78/_old  2011-12-06 18:52:19.0 +0100
+++ /var/tmp/diff_new_pack.xiqK78/_new  2011-12-06 18:52:19.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   mxml
 Url:http://www.easysw.com/~mike/mxml
-License:LGPL v2.1 or later
+License:LGPL-2.1+
 Group:  Development/Libraries/Other
 Version:2.6
 Release:25
@@ -46,7 +46,7 @@
 %define library_name libmxml1
 
 %package -n libmxml1
-License:LGPL v2.1 or later
+License:LGPL-2.1+
 Group:  Development/Libraries/Other
 #
 Summary:Shared library for mxml
@@ -65,7 +65,7 @@
 Michael Sweet
 
 %package devel
-License:GPL v2 or later
+License:GPL-2.0+
 Group:  Development/Libraries/Other
 Requires:   %{library_name} = %{version}
 #

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package mxml for openSUSE:Factory
checked in at Mon Aug 15 10:49:04 CEST 2011.




--- mxml/mxml.changes   2011-06-06 19:13:22.0 +0200
+++ /mounts/work_src_done/STABLE/mxml/mxml.changes  2011-08-12 
21:02:54.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 19:05:21 UTC 2011 - andrea.turr...@gmail.com
+
+- fixed typos in mxml.spec
+
+---

calling whatdependson for head-i586




Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.YyRCvV/_old  2011-08-15 10:41:23.0 +0200
+++ /var/tmp/diff_new_pack.YyRCvV/_new  2011-08-15 10:41:23.0 +0200
@@ -23,7 +23,7 @@
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
 Version:2.6
-Release:1
+Release:25
 Summary:Small XML Parsing Library
 Source: %{name}-%{version}.tar.bz2
 Patch:  mxml-2.3-nobinstrip.patch
@@ -49,14 +49,14 @@
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
 #
-Summary:Shared libary for mxml
+Summary:Shared library for mxml
 
 %description -n libmxml1
 Mini-XML is a small XML parsing library that you can use to read XML
 and XML-like data files in your application without requiring large
 nonstandard libraries.
 
-This package holds the shared libary for mxml.
+This package holds the shared library for mxml.
 
 
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit mxml for openSUSE:Factory

2011-06-07 Thread h_root

Hello community,

here is the log from the commit of package mxml for openSUSE:Factory
checked in at Tue Jun 7 09:14:34 CEST 2011.




--- mxml/mxml.changes   2008-09-11 21:57:12.0 +0200
+++ /mounts/work_src_done/STABLE/mxml/mxml.changes  2011-06-06 
19:13:22.0 +0200
@@ -1,0 +2,22 @@
+Mon Jun  6 17:08:54 UTC 2011 - mrueck...@suse.de
+
+- update to version 2.6
+  - Documentation fixes (STR #91, STR #92)
+  - The mxmldoc program did not handle typedef comments properly
+(STR #72)
+  - Added support for "long long" printf formats.
+  - The XML parser now ignores BOMs in UTF-8 XML files (STR #89)
+  - The mxmldoc program now supports generating Xcode documentation
+sets.
+  - mxmlSave*() did not output UTF-8 correctly on some platforms.
+  - mxmlNewXML() now adds encoding="utf-8" in the ?xml directive to
+avoid problems with non-conformant XML parsers that assume
+something other than UTF-8 as the default encoding.
+  - Wrapping was not disabled when mxmlSetWrapMargin(0) was called,
+and "" was always followed by a newline (STR #76)
+  - The mxml.pc.in file was broken (STR #79)
+  - The mxmldoc program now handles "typedef enum name {} name"
+correctly (STR #72)
+- drop requires on main package from the library package
+
+---

calling whatdependson for head-i586


Old:

  mxml-2.5.tar.bz2

New:

  mxml-2.6.tar.bz2



Other differences:
--
++ mxml.spec ++
--- /var/tmp/diff_new_pack.Upqnjf/_old  2011-06-07 09:13:54.0 +0200
+++ /var/tmp/diff_new_pack.Upqnjf/_new  2011-06-07 09:13:54.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package mxml (Version 2.5)
+# spec file for package mxml
 #
-# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,12 +22,13 @@
 Url:http://www.easysw.com/~mike/mxml
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
-Version:2.5
-Release:23
+Version:2.6
+Release:1
 Summary:Small XML Parsing Library
 Source: %{name}-%{version}.tar.bz2
 Patch:  mxml-2.3-nobinstrip.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  pkgconfig
 
 %description
 Mini-XML is a small XML parsing library that you can use to read XML
@@ -47,7 +48,6 @@
 %package -n libmxml1
 License:LGPL v2.1 or later
 Group:  Development/Libraries/Other
-Requires:   %{name} = %{version}
 #
 Summary:Shared libary for mxml
 

++ mxml-2.5.tar.bz2 -> mxml-2.6.tar.bz2 ++
 5684 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org