[packages/xsd] - updated to 4.0.0

baggins baggins at pld-linux.org
Sun Nov 15 13:49:08 CET 2015


commit 2440df3a6988e11ef334b253a843b0d7ac9fd72c
Author: Jan Rękorajski <baggins at pld-linux.org>
Date:   Sun Nov 15 13:48:58 2015 +0100

    - updated to 4.0.0

 boost-1.50.patch              | 481 ------------------------------------------
 gcc47.patch                   |  36 ----
 xsd-3.3.0-xsdcxx-rename.patch |  40 ++--
 xsd.spec                      |  12 +-
 4 files changed, 24 insertions(+), 545 deletions(-)
---
diff --git a/xsd.spec b/xsd.spec
index e86a631..126a237 100644
--- a/xsd.spec
+++ b/xsd.spec
@@ -1,17 +1,15 @@
 Summary:	W3C XML schema to C++ data binding compiler
 Summary(pl.UTF-8):	Kompilator schematów W3C XML do wiązań danych C++
 Name:		xsd
-Version:	3.3.0
-Release:	13
+Version:	4.0.0
+Release:	1
 Group:		Development/Tools
 # Exceptions permit otherwise GPLv2 incompatible combination with ASL-licensed Xerces
 License:	GPL v2 with FLOSS exceptions
-Source0:	http://www.codesynthesis.com/download/xsd/3.3/%{name}-%{version}+dep.tar.bz2
-# Source0-md5:	1bad45103f9111964b78d6f2327fbb15
+Source0:	http://www.codesynthesis.com/download/xsd/4.0/%{name}-%{version}+dep.tar.bz2
+# Source0-md5:	ae64d7fcd258addc9b045fe3f96208bb
 # Sent suggestion to upstream via e-mail 20090707
 Patch0:		%{name}-3.3.0-xsdcxx-rename.patch
-Patch1:		gcc47.patch
-Patch2:		boost-1.50.patch
 URL:		http://www.codesynthesis.com/products/xsd/
 BuildRequires:	boost-devel
 BuildRequires:	iconv
@@ -59,8 +57,6 @@ Dokumentacja API XSD.
 cd xsd
 %patch0 -p1
 cd ..
-%patch1 -p1
-%patch2 -p1
 
 %build
 %{__make} \
diff --git a/boost-1.50.patch b/boost-1.50.patch
deleted file mode 100644
index 45923ff..0000000
--- a/boost-1.50.patch
+++ /dev/null
@@ -1,481 +0,0 @@
-diff -ur xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/parser.cxx xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/parser.cxx
---- xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/parser.cxx	2010-04-27 21:31:24.000000000 +0200
-+++ xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/parser.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -1274,7 +1274,7 @@
-     operator () (SemanticGraph::Path const& x,
-                  SemanticGraph::Path const& y) const
-     {
--        return x.native_file_string () < y.native_file_string ();
-+        return x.native () < y.native ();
-     }
-   };
- 
-@@ -1627,8 +1627,8 @@
-       friend Boolean
-       operator< (SchemaId const& x, SchemaId const& y)
-       {
--        return x.path_.native_file_string () < y.path_.native_file_string ()
--          || (x.path_.native_file_string () == y.path_.native_file_string ()
-+        return x.path_.native () < y.path_.native ()
-+          || (x.path_.native () == y.path_.native ()
-               && x.ns_ < y.ns_);
-       }
- 
-@@ -2376,16 +2376,7 @@
-     Path path, rel_path, abs_path;
-     try
-     {
--      try
--      {
--        path = Path (loc);
--      }
--      catch (InvalidPath const&)
--      {
--        // Retry as a native path.
--        //
--        path = Path (loc, boost::filesystem::native);
--      }
-+      path = Path (loc);
- 
-       if (path.is_complete ())
-       {
-@@ -2479,16 +2470,7 @@
-     Path path, rel_path, abs_path;
-     try
-     {
--      try
--      {
--        path = Path (loc);
--      }
--      catch (InvalidPath const&)
--      {
--        // Retry as a native path.
--        //
--        path = Path (loc, boost::filesystem::native);
--      }
-+      path = Path (loc);
- 
-       if (path.is_complete ())
-       {
-@@ -4675,8 +4657,7 @@
- 
- 
-       XSDFrontend::SemanticGraph::Path abs_path (
--        XML::transcode_to_narrow (e.getLocation ()->getURI ()),
--        boost::filesystem::native);
-+        XML::transcode_to_narrow (e.getLocation ()->getURI ()));
- 
-       XSDFrontend::SemanticGraph::Path rel_path (ctx_.file (abs_path));
- 
-@@ -4730,7 +4711,7 @@
-           ctx_ (ctx)
-     {
-       setSystemId (XML::XMLChString (
--                     String (abs_.native_file_string ())).c_str ());
-+                     String (abs_.native ())).c_str ());
-     }
- 
-     virtual Xerces::BinInputStream*
-@@ -4803,8 +4784,7 @@
- 
-       // base_uri should be a valid path by now.
-       //
--      Path base (XML::transcode_to_narrow (base_uri),
--                 boost::filesystem::native);
-+      Path base (XML::transcode_to_narrow (base_uri));
- 
-       if (prv_id == 0)
-       {
-@@ -4830,16 +4810,7 @@
-       {
-         Path path;
- 
--        try
--        {
--          path = Path (path_str);
--        }
--        catch (InvalidPath const&)
--        {
--          // Retry as a native path.
--          //
--          path = Path (path_str, boost::filesystem::native);
--        }
-+        path = Path (path_str);
- 
-         Path base_dir (base.branch_path ());
- 
-diff -ur xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/semantic-graph/elements.cxx xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/semantic-graph/elements.cxx
---- xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/semantic-graph/elements.cxx	2010-04-27 21:31:24.000000000 +0200
-+++ xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/semantic-graph/elements.cxx	2012-07-12 08:46:38.985344483 +0200
-@@ -342,5 +342,5 @@
- std::wostream&
- operator<< (std::wostream& os, XSDFrontend::SemanticGraph::Path const& path)
- {
--  return os << path.native_file_string ().c_str ();
-+  return os << path.native ().c_str ();
- }
-diff -ur xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/transformations/anonymous.cxx xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/transformations/anonymous.cxx
---- xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/transformations/anonymous.cxx	2010-04-27 21:31:24.000000000 +0200
-+++ xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/transformations/anonymous.cxx	2012-07-12 08:46:38.985344483 +0200
-@@ -275,7 +275,7 @@
-             }
-             catch (SemanticGraph::InvalidPath const&)
-             {
--              file_str = file.native_file_string ();
-+              file_str = file.native ();
-             }
- 
-             String name (
-@@ -358,7 +358,7 @@
-                 }
-                 catch (SemanticGraph::InvalidPath const&)
-                 {
--                  file_str = file.native_file_string ();
-+                  file_str = file.native ();
-                 }
-               }
- 
-@@ -441,7 +441,7 @@
-             }
-             catch (SemanticGraph::InvalidPath const&)
-             {
--              file_str = file.native_file_string ();
-+              file_str = file.native ();
-             }
- 
-             String name (
-@@ -639,7 +639,7 @@
-         }
-         catch (SemanticGraph::InvalidPath const&)
-         {
--          file_str = file.native_file_string ();
-+          file_str = file.native ();
-         }
- 
-         String name (
-diff -ur xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/transformations/schema-per-type.cxx xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/transformations/schema-per-type.cxx
---- xsd-3.3.0+dep.orig/libxsd-frontend/xsd-frontend/transformations/schema-per-type.cxx	2010-04-27 21:31:24.000000000 +0200
-+++ xsd-3.3.0+dep/libxsd-frontend/xsd-frontend/transformations/schema-per-type.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -358,11 +358,11 @@
-         }
-         catch (SemanticGraph::InvalidPath const&)
-         {
--          abs_path = path.native_file_string ();
-+          abs_path = path.native ();
-         }
- 
-         NarrowString tf (trans_.translate_schema (abs_path));
--        NarrowString file (tf ? tf : path.leaf ());
-+        NarrowString file (tf ? tf : path.filename().string());
- 
-         Size p (file.rfind ('.'));
-         NarrowString ext (
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/cxx/elements.cxx xsd-3.3.0+dep/xsd/xsd/cxx/elements.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/cxx/elements.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/cxx/elements.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -326,7 +326,7 @@
-         }
-         catch (SemanticGraph::InvalidPath const&)
-         {
--          pair = path.native_file_string ();
-+          pair = path.native ();
-         }
-       }
- 
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/cxx/parser/elements.cxx xsd-3.3.0+dep/xsd/xsd/cxx/parser/elements.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/cxx/parser/elements.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/cxx/parser/elements.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -244,7 +244,7 @@
-       }
-       catch (SemanticGraph::InvalidPath const&)
-       {
--        path_str = path.native_file_string ();
-+        path_str = path.native ();
-       }
- 
-       String inc_path;
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/cxx/parser/generator.cxx xsd-3.3.0+dep/xsd/xsd/cxx/parser/generator.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/cxx/parser/generator.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/cxx/parser/generator.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -552,7 +552,7 @@
-     {
-       try
-       {
--        Path fs_path (path, boost::filesystem::native);
-+        Path fs_path (path);
-         ifs.open (fs_path, std::ios_base::in | std::ios_base::binary);
- 
-         if (!ifs.is_open ())
-@@ -638,7 +638,7 @@
-       {
-         if (NarrowString name = ops.value<CLI::extern_xml_schema> ())
-         {
--          if (file_path.native_file_string () != name)
-+          if (file_path.native () != name)
-             generate_xml_schema = false;
-         }
-       }
-@@ -815,7 +815,7 @@
- 
-       // Generate code.
-       //
--      NarrowString name (file_path.leaf ());
-+      NarrowString name (file_path.filename().string());
-       NarrowString skel_suffix (ops.value <CLI::skel_file_suffix> ());
-       NarrowString impl_suffix (ops.value <CLI::impl_file_suffix> ());
- 
-@@ -921,9 +921,9 @@
-         cxx_driver_name = cxx_driver_expr.merge (name);
-       }
- 
--      Path hxx_path (hxx_name, boost::filesystem::native);
--      Path ixx_path (ixx_name, boost::filesystem::native);
--      Path cxx_path (cxx_name, boost::filesystem::native);
-+      Path hxx_path (hxx_name);
-+      Path ixx_path (ixx_name);
-+      Path cxx_path (cxx_name);
- 
-       Path hxx_impl_path;
-       Path cxx_impl_path;
-@@ -931,9 +931,9 @@
- 
-       if (impl || driver)
-       {
--        hxx_impl_path = Path (hxx_impl_name, boost::filesystem::native);
--        cxx_impl_path = Path (cxx_impl_name, boost::filesystem::native);
--        cxx_driver_path = Path (cxx_driver_name, boost::filesystem::native);
-+        hxx_impl_path = Path (hxx_impl_name);
-+        cxx_impl_path = Path (cxx_impl_name);
-+        cxx_driver_path = Path (cxx_driver_name);
-       }
- 
-       Path out_dir;
-@@ -942,7 +942,7 @@
-       {
-         try
-         {
--          out_dir = Path (dir, boost::filesystem::native);
-+          out_dir = Path (dir);
-         }
-         catch (InvalidPath const&)
-         {
-@@ -1010,7 +1010,7 @@
-         }
- 
-         unlinks.add (hxx_impl_path);
--        file_list.push_back (hxx_impl_path.native_file_string ());
-+        file_list.push_back (hxx_impl_path.native ());
- 
-         if (!ops.value<CLI::force_overwrite> ())
-         {
-@@ -1036,7 +1036,7 @@
-         }
- 
-         unlinks.add (cxx_impl_path);
--        file_list.push_back (cxx_impl_path.native_file_string ());
-+        file_list.push_back (cxx_impl_path.native ());
-       }
- 
-       if (driver)
-@@ -1065,7 +1065,7 @@
-         }
- 
-         unlinks.add (cxx_driver_path);
--        file_list.push_back (cxx_driver_path.native_file_string ());
-+        file_list.push_back (cxx_driver_path.native ());
-       }
- 
-       // Open the skel files.
-@@ -1081,7 +1081,7 @@
-       }
- 
-       unlinks.add (hxx_path);
--      file_list.push_back (hxx_path.native_file_string ());
-+      file_list.push_back (hxx_path.native ());
- 
-       if (inline_)
-       {
-@@ -1094,7 +1094,7 @@
-         }
- 
-         unlinks.add (ixx_path);
--        file_list.push_back (ixx_path.native_file_string ());
-+        file_list.push_back (ixx_path.native ());
-       }
- 
- 
-@@ -1109,7 +1109,7 @@
-         }
- 
-         unlinks.add (cxx_path);
--        file_list.push_back (cxx_path.native_file_string ());
-+        file_list.push_back (cxx_path.native ());
-       }
- 
-       // Print copyright and license.
-@@ -1168,7 +1168,7 @@
-       NarrowString guard_prefix (ops.value<CLI::guard_prefix> ());
- 
-       if (!guard_prefix)
--        guard_prefix = file_path.branch_path ().native_directory_string ();
-+        guard_prefix = file_path.branch_path ().native ();
- 
-       if (guard_prefix)
-         guard_prefix += '_';
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/cxx/tree/elements.cxx xsd-3.3.0+dep/xsd/xsd/cxx/tree/elements.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/cxx/tree/elements.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/cxx/tree/elements.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -1312,7 +1312,7 @@
-       }
-       catch (SemanticGraph::InvalidPath const&)
-       {
--        path_str = path.native_file_string ();
-+        path_str = path.native ();
-       }
- 
-       String inc_path;
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/cxx/tree/generator.cxx xsd-3.3.0+dep/xsd/xsd/cxx/tree/generator.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/cxx/tree/generator.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/cxx/tree/generator.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -773,7 +773,7 @@
-     {
-       try
-       {
--        Path fs_path (path, boost::filesystem::native);
-+        Path fs_path (path);
-         ifs.open (fs_path, std::ios_base::in | std::ios_base::binary);
- 
-         if (!ifs.is_open ())
-@@ -939,7 +939,7 @@
-       {
-         if (NarrowString name = ops.value<CLI::extern_xml_schema> ())
-         {
--          if (file_path.native_file_string () != name)
-+          if (file_path.native () != name)
-             generate_xml_schema = false;
-         }
-       }
-@@ -954,7 +954,7 @@
- 
-       // Generate code.
-       //
--      NarrowString name (file_path.leaf ());
-+      NarrowString name (file_path.filename().string());
- 
-       NarrowString hxx_suffix (ops.value <CLI::hxx_suffix> ());
-       NarrowString ixx_suffix (ops.value <CLI::ixx_suffix> ());
-@@ -1013,9 +1013,9 @@
-       NarrowString ixx_name (inline_ ? ixx_expr.merge (name) : NarrowString ());
-       NarrowString fwd_name (forward ? fwd_expr.merge (name) : NarrowString ());
- 
--      Path hxx_path (hxx_name, boost::filesystem::native);
--      Path ixx_path (ixx_name, boost::filesystem::native);
--      Path fwd_path (fwd_name, boost::filesystem::native);
-+      Path hxx_path (hxx_name);
-+      Path ixx_path (ixx_name);
-+      Path fwd_path (fwd_name);
-       Paths cxx_paths;
- 
-       if (source)
-@@ -1041,12 +1041,12 @@
-             }
- 
-             cxx_paths.push_back (
--              Path (cxx_expr.merge (part_name), boost::filesystem::native));
-+              Path (cxx_expr.merge (part_name)));
-           }
-         }
-         else
-           cxx_paths.push_back (
--            Path (cxx_expr.merge (name), boost::filesystem::native));
-+            Path (cxx_expr.merge (name)));
-       }
- 
-       Path out_dir;
-@@ -1055,7 +1055,7 @@
-       {
-         try
-         {
--          out_dir = Path (dir, boost::filesystem::native);
-+          out_dir = Path (dir);
-         }
-         catch (InvalidPath const&)
-         {
-@@ -1108,7 +1108,7 @@
-         }
- 
-         unlinks.add (fwd_path);
--        file_list.push_back (fwd_path.native_file_string ());
-+        file_list.push_back (fwd_path.native ());
-       }
- 
- 
-@@ -1121,7 +1121,7 @@
-       }
- 
-       unlinks.add (hxx_path);
--      file_list.push_back (hxx_path.native_file_string ());
-+      file_list.push_back (hxx_path.native ());
- 
- 
-       // IXX
-@@ -1137,7 +1137,7 @@
-         }
- 
-         unlinks.add (ixx_path);
--        file_list.push_back (ixx_path.native_file_string ());
-+        file_list.push_back (ixx_path.native ());
-       }
- 
- 
-@@ -1158,7 +1158,7 @@
-           }
- 
-           unlinks.add (*i);
--          file_list.push_back (i->native_file_string ());
-+          file_list.push_back (i->native ());
-           cxx.push_back (s);
-         }
-       }
-@@ -1230,7 +1230,7 @@
-       NarrowString guard_prefix (ops.value<CLI::guard_prefix> ());
- 
-       if (!guard_prefix)
--        guard_prefix = file_path.branch_path ().native_directory_string ();
-+        guard_prefix = file_path.branch_path ().native ();
- 
-       if (guard_prefix)
-         guard_prefix += '_';
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/xsd.cxx xsd-3.3.0+dep/xsd/xsd/xsd.cxx
---- xsd-3.3.0+dep.orig/xsd/xsd/xsd.cxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/xsd.cxx	2012-07-12 08:46:38.988677816 +0200
-@@ -675,7 +675,7 @@
-               if (NarrowString name =
-                   tree_ops->value<CXX::Tree::CLI::extern_xml_schema> ())
-               {
--                if (tu.native_file_string () != name)
-+                if (tu.native () != name)
-                   gen_xml_schema = false;
-               }
-             }
-@@ -690,7 +690,7 @@
-               if (NarrowString name =
-                   parser_ops->value<CXX::Parser::CLI::extern_xml_schema> ())
-               {
--                if (tu.native_file_string () != name)
-+                if (tu.native () != name)
-                   gen_xml_schema = false;
-               }
-             }
-diff -ur xsd-3.3.0+dep.orig/xsd/xsd/xsd.hxx xsd-3.3.0+dep/xsd/xsd/xsd.hxx
---- xsd-3.3.0+dep.orig/xsd/xsd/xsd.hxx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/xsd/xsd.hxx	2012-07-12 08:46:38.988677816 +0200
-@@ -38,7 +38,7 @@
-   {
-     if (!canceled_)
-     {
--      std::remove (file_.native_file_string ().c_str ());
-+      std::remove (file_.native ().c_str ());
-     }
-   }
- 
diff --git a/gcc47.patch b/gcc47.patch
deleted file mode 100644
index d9a4c9d..0000000
--- a/gcc47.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -Naur xsd-3.3.0+dep.orig/libcult/cult/mm/evptr.hxx xsd-3.3.0+dep/libcult/cult/mm/evptr.hxx
---- xsd-3.3.0+dep.orig/libcult/cult/mm/evptr.hxx	2010-01-01 12:12:06.000000000 +0100
-+++ xsd-3.3.0+dep/libcult/cult/mm/evptr.hxx	2012-01-19 06:48:45.713095213 +0100
-@@ -70,7 +70,7 @@
-       Evptr&
-       operator= (Evptr const& ep)
-       {
--        assign (ep.cp_ ? ep.cp_ : ep.p_, ep.c_);
-+        this->assign (ep.cp_ ? ep.cp_ : ep.p_, ep.c_);
- 
-         return *this;
-       }
-diff -Naur xsd-3.3.0+dep.orig/libcult/cult/mm/shptr.hxx xsd-3.3.0+dep/libcult/cult/mm/shptr.hxx
---- xsd-3.3.0+dep.orig/libcult/cult/mm/shptr.hxx	2010-01-01 12:12:06.000000000 +0100
-+++ xsd-3.3.0+dep/libcult/cult/mm/shptr.hxx	2012-01-19 07:06:45.656894436 +0100
-@@ -53,7 +53,7 @@
-       Shptr&
-       operator= (Shptr<Y> const& ap)
-       {
--        assign (ap);
-+        this->assign (ap);
-         return *this;
-       }
- 
-diff -Naur xsd-3.3.0+dep.orig/xsd/libxsd/xsd/cxx/zc-istream.txx xsd-3.3.0+dep/xsd/libxsd/xsd/cxx/zc-istream.txx
---- xsd-3.3.0+dep.orig/xsd/libxsd/xsd/cxx/zc-istream.txx	2010-04-28 08:58:09.000000000 +0200
-+++ xsd-3.3.0+dep/xsd/libxsd/xsd/cxx/zc-istream.txx	2012-01-19 06:49:34.733902904 +0100
-@@ -32,7 +32,7 @@
-       C* b (const_cast<C*> (str_.data ()));
-       C* e (b + str_.size ());
- 
--      setg (b, b, e);
-+      this->setg (b, b, e);
-     }
- 
-     template <typename C>
diff --git a/xsd-3.3.0-xsdcxx-rename.patch b/xsd-3.3.0-xsdcxx-rename.patch
index 51495fb..ec9913d 100644
--- a/xsd-3.3.0-xsdcxx-rename.patch
+++ b/xsd-3.3.0-xsdcxx-rename.patch
@@ -1,12 +1,12 @@
-diff -up xsd/documentation/xsd.1.rename xsd/documentation/xsd.1
---- xsd/documentation/xsd.1.rename	2010-06-20 15:45:31.000000000 +0300
-+++ xsd/documentation/xsd.1	2010-06-20 15:46:24.000000000 +0300
+diff -up xsd/doc/xsd.1.rename xsd/doc/xsd.1
+--- xsd/doc/xsd.1.rename	2010-06-20 15:45:31.000000000 +0300
++++ xsd/doc/xsd.1	2010-06-20 15:46:24.000000000 +0300
 @@ -1,16 +1,16 @@
  .\" Process this file with
 -.\" groff -man -Tascii xsd.1
 +.\" groff -man -Tascii xsdcxx.1
  .\"
- .TH XSD 1 "April 2010" "XSD 3.3.0"
+ .TH XSD 1 "July 2014" "XSD 4.0.0"
  .SH NAME
 -xsd \- W3C XML Schema to C++ Compiler
 +xsdcxx \- W3C XML Schema to C++ Compiler
@@ -54,14 +54,14 @@ diff -up xsd/documentation/xsd.1.rename xsd/documentation/xsd.1
  .RE
  .PP
 @@ -203,7 +203,7 @@ For example, if you have file
- with namespace
- .B http://example.com/hello
- and you run
--.B xsd
-+.B xsdcxx
- on this file, then the string in question will be:
+ \fIfilename\fP \fInamespace\fP
+ 
+ For example, if you have file \fBhello\.xsd\fP with namespace
+-\fBhttp://example\.com/hello\fP and you run \fBxsd\fP on this file, then the
++\fBhttp://example\.com/hello\fP and you run \fBxsdcxx\fP on this file, then the
+ string in question will be:
  
- .B hello.xsd. http://example.com/hello
+ \fBhello\.xsd\. http://example\.com/hello\fP
 @@ -1877,7 +1877,7 @@ option. With this approach you don't nee
  .\"
  .SH DIAGNOSTICS
@@ -71,9 +71,9 @@ diff -up xsd/documentation/xsd.1.rename xsd/documentation/xsd.1
  will issue diagnostic messages to
  .B STDERR
  and exit with non-zero exit code.
-diff -up xsd/documentation/xsd.xhtml.rename xsd/documentation/xsd.xhtml
---- xsd/documentation/xsd.xhtml.rename	2010-06-20 15:47:29.000000000 +0300
-+++ xsd/documentation/xsd.xhtml	2010-06-20 15:47:30.000000000 +0300
+diff -up xsd/doc/xsd.xhtml.rename xsd/doc/xsd.xhtml
+--- xsd/doc/xsd.xhtml.rename	2010-06-20 15:47:29.000000000 +0300
++++ xsd/doc/xsd.xhtml	2010-06-20 15:47:30.000000000 +0300
 @@ -50,19 +50,19 @@
  
    <h1>NAME</h1>
@@ -110,13 +110,13 @@ diff -up xsd/documentation/xsd.xhtml.rename xsd/documentation/xsd.xhtml
  
 @@ -174,7 +174,7 @@
  
-       <p>For example, if you have file <code><b>hello.xsd</b></code>
-         with namespace <code><b>http://example.com/hello</b></code> and you run
--        <code><b>xsd</b></code> on this file, then the string in question
-+        <code><b>xsdcxx</b></code> on this file, then the string in question
-         will be:</p>
+   <p>For example, if you have file <code><b>hello.xsd</b></code> with
+   namespace <code><b>http://example.com/hello</b></code> and you run
+-  <code><b>xsd</b></code> on this file, then the string in question will
++  <code><b>xsdcxx</b></code> on this file, then the string in question will
+   be:</p>
  
-       <p><code><b>hello.xsd. http://example.com/hello</b></code></p>
+   <p><code><b>hello.xsd. http://example.com/hello</b></code></p>
 @@ -1575,7 +1575,7 @@ namespace .*
    <h1>DIAGNOSTICS</h1>
  
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xsd.git/commitdiff/2440df3a6988e11ef334b253a843b0d7ac9fd72c



More information about the pld-cvs-commit mailing list