Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package geekodoc for openSUSE:Factory 
checked in at 2022-04-22 21:54:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/geekodoc (Old)
 and      /work/SRC/openSUSE:Factory/.geekodoc.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "geekodoc"

Fri Apr 22 21:54:22 2022 rev:9 rq:971886 version:unknown

Changes:
--------
--- /work/SRC/openSUSE:Factory/geekodoc/geekodoc.changes        2022-04-21 
15:48:33.556309864 +0200
+++ /work/SRC/openSUSE:Factory/.geekodoc.new.1538/geekodoc.changes      
2022-04-22 21:55:30.214891410 +0200
@@ -1,0 +2,6 @@
+Thu Apr 21 16:29:55 UTC 2022 - Thomas Schraitle <thomas.schrai...@suse.com> - 
2.1.1
+
+- Release 2.1.1
+  Revert format removal in imagedata (#102)
+
+-------------------------------------------------------------------

Old:
----
  geekodoc-2.1.0.tar.bz2

New:
----
  geekodoc-2.1.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ geekodoc.spec ++++++
--- /var/tmp/diff_new_pack.1FO6nj/_old  2022-04-22 21:55:30.778892053 +0200
+++ /var/tmp/diff_new_pack.1FO6nj/_new  2022-04-22 21:55:30.798892076 +0200
@@ -19,7 +19,7 @@
 %bcond_without  tests
 #
 Name:           geekodoc
-Version:        2.1.0
+Version:        2.1.1
 Release:        0
 Summary:        DocBook based RNG Schema for SUSE Documentation
 License:        GPL-3.0-only

++++++ geekodoc-2.1.0.tar.bz2 -> geekodoc-2.1.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geekodoc-2.1.0/ChangeLog new/geekodoc-2.1.1/ChangeLog
--- old/geekodoc-2.1.0/ChangeLog        2022-04-13 16:42:02.000000000 +0200
+++ new/geekodoc-2.1.1/ChangeLog        2022-04-21 18:21:49.000000000 +0200
@@ -1,9 +1,19 @@
 ------------------------------------------------------------------
 Wed Apr 13 16:40:00 UTC 2022 - t...@opensuse.org
 
+Release 2.1.1
+
+* Revert removal of format attribute in imagedata (#102)
+
+------------------------------------------------------------------
+Wed Apr 13 16:40:00 UTC 2022 - t...@opensuse.org
+
 Release 2.1.0
 
-* Support videoobject and videodata (#95)
+* Support videoobject and videodata (#95, #101)
+* disallow xml:id on listitems (#82)
+* Feature/prompt role (#94)
+* Restrict char set of prof attributes (#92)
 
 ------------------------------------------------------------------
 Fri Aug 27 11:45:00 UTC 2021 - t...@opensuse.org
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geekodoc-2.1.0/create-archive.sh 
new/geekodoc-2.1.1/create-archive.sh
--- old/geekodoc-2.1.0/create-archive.sh        1970-01-01 01:00:00.000000000 
+0100
+++ new/geekodoc-2.1.1/create-archive.sh        2022-04-21 18:21:49.000000000 
+0200
@@ -0,0 +1,101 @@
+#!/bin/bash
+#
+# Create an archive of project directory for OBS
+# 
+# Author: Tom Schraitle, 2022
+
+
+set -o errexit
+set -o pipefail
+set -o nounset
+# set -o xtrace
+
+ME="${0##*/}"
+OUTDIR="/tmp"
+SUFFIX=".tar.bz2"
+FROM="HEAD"
+
+function exit_on_error {
+    echo "ERROR: ${1}" >&2
+    exit 1;
+}
+
+function usage {
+    cat << EOF
+Create archive of Geekodoc Schema
+
+SYNOPSIS
+  $ME [OPTIONS] [VERSION]
+  $ME -h|--help
+
+OPTIONS
+  -h, --help        Output this help text.
+  --outdir=OUTDIR   Store archive in OUTDIR (default ${OUTDIR@Q})
+  -f FROM, --from=FROM
+                    The tree or commit to produce an archive for
+                    (default ${FROM@Q})
+
+ARGUMENTS
+  VERSION           Use this version to create the archive
+                    If omitted, the version is retrieved through "git describe"
+                    Any "v" prefix is removed.
+
+EXAMPLES:
+    1. $ME
+       creates an archive and stores it under $OUTDIR
+
+    2. $ME --outdir=/local/geekdoc
+       creates an archive and stores it under /local/geekodoc
+
+    3. $ME v3.0.0
+       creates an archive /tmp/geekodoc-3.0.0.tar.bz2
+EOF
+}
+
+# -- CLI parsing
+ARGS=$(getopt -o h,f: -l help,from:,outdir: -n "$ME" -- "$@")
+eval set -- "$ARGS"
+while true; do
+  case "$1" in
+    --help|-h)
+        usage
+        exit 0
+        shift
+        ;;
+    -f|--from)
+        FROM="$2"
+        shift 2
+        ;;
+    --outdir)
+        OUTDIR="$2"
+        if [ ! -d "$OUTDIR" ]; then
+           mkdir -p "$OUTDIR"
+        fi
+        shift 2
+        ;;
+    --) shift ; break ;;
+    *) exit_on_error "Wrong parameter: $1" ;;
+  esac
+done
+
+# Remove last slash and expand ~ with $HOME
+OUTDIR=${OUTDIR%*/}
+OUTDIR=${OUTDIR/#\~/$HOME}
+
+# Get version from git: 
+VERSION=$(git describe)
+
+# Overwrite VERSION with first argument
+if [ "$#" -ne 0 ]; then
+   VERSION="$1"
+fi
+
+# Remove "v" prefix:
+VERSION=${VERSION#v*}
+FILE="${OUTDIR}/geekodoc-${VERSION}${SUFFIX}"
+echo "Generating version ${FILE@Q}..."
+
+git archive --worktree-attributes --format=${SUFFIX#.*} \
+    --prefix="geekodoc-${VERSION}/" \
+    --output="${FILE}" \
+    "$FROM"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geekodoc-2.1.0/geekodoc/rng/2_5.2/geekodoc-v2.rnc 
new/geekodoc-2.1.1/geekodoc/rng/2_5.2/geekodoc-v2.rnc
--- old/geekodoc-2.1.0/geekodoc/rng/2_5.2/geekodoc-v2.rnc       2022-04-13 
16:42:02.000000000 +0200
+++ new/geekodoc-2.1.1/geekodoc/rng/2_5.2/geekodoc-v2.rnc       2022-04-21 
18:21:49.000000000 +0200
@@ -126,6 +126,55 @@
      & db.xlink.actuate.attribute?
 }
 
+div {
+
+  db.format.enumeration =
+     ## Allowed formats for SUSE documentation
+     (
+     ## Format of the dia tool
+     "DIA" |
+     ## Format of the dia tool
+     "dia" |
+     ## Encapsulated PostScript
+     "EPS" |
+     ## Encapsulated PostScript
+     "eps" |
+     ## Format of the xfig tool
+     "FIG" |
+     ## Format of the xfig tool
+     "fig" |
+     ## LibreOffice illustration format
+     "ODG" |
+     ## LibreOffice illustration format
+     "odg" |
+     ## Portable Document Format
+     "PDF" |
+     ## Portable Document Format
+     "pdf" |
+     ## Portable Network Graphics
+     "PNG" |
+     ## Portable Network Graphics
+     "png" |
+     ## Joint Photography Experts Group format
+     "JPG" |
+     ## Joint Photography Experts Group format
+     "jpg" |
+     ## Joint Photographic Experts Group
+     "JPEG" |
+     ## Joint Photographic Experts Group
+     "jpeg" |
+     ## Scalable Vector Graphics
+     "SVG" |
+     ## Scalable Vector Graphics
+     "svg")
+  # The original list from the DocBook 4.5 DTD was:
+  # "BMP| CGM-CHAR | CGM-BINARY | CGM-CLEAR | DITROFF | DVI
+  #  | EPS | EQN | FAX | GIF | GIF87a | GIF89a
+  #  | JPG | JPEG | IGES | PCX
+  #  | PIC | PNG | PS | SGML | TBL | TEX | TIFF | WMF | WPG
+  #  | SVG | PDF | SWF
+  #  | linespecific
+}
 
 div {
   # Issue #90: Restrict character set of profiling attributes
@@ -1104,6 +1153,8 @@
       & (its-local.attributes & its-attribute.version?)
 
   db.common.data.attributes =
+   ## Specifies the format of the data
+   attribute format { db.format.enumeration }?,
    (
     ## Indentifies the location of the data by URI
     attribute fileref { xsd:anyURI }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/geekodoc-2.1.0/tests/v2/bad/format-attribute.xml 
new/geekodoc-2.1.1/tests/v2/bad/format-attribute.xml
--- old/geekodoc-2.1.0/tests/v2/bad/format-attribute.xml        2022-04-13 
16:42:02.000000000 +0200
+++ new/geekodoc-2.1.1/tests/v2/bad/format-attribute.xml        1970-01-01 
01:00:00.000000000 +0100
@@ -1,10 +0,0 @@
-<article xmlns="http://docbook.org/ns/docbook"; version="5.2">
-   <title>Removed format attribute in imagedata #89</title>
-   <informalfigure>
-      <mediaobject>
-         <imageobject>
-            <imagedata format="PNG" fileref="foo.png"/>
-         </imageobject>
-      </mediaobject>
-   </informalfigure>
-</article>

Reply via email to