Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package z for openSUSE:Factory checked in at 
2023-07-14 15:36:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/z (Old)
 and      /work/SRC/openSUSE:Factory/.z.new.3193 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "z"

Fri Jul 14 15:36:04 2023 rev:3 rq:1098628 version:2.7.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/z/z.changes      2020-11-05 21:56:32.619965136 
+0100
+++ /work/SRC/openSUSE:Factory/.z.new.3193/z.changes    2023-07-14 
15:36:13.874142034 +0200
@@ -1,0 +2,6 @@
+Thu Jul 13 22:13:36 UTC 2023 - Joshua Smith <jsmith...@gmail.com>
+
+- Update to version 2.7.4:
+  * No changelog available.
+
+-------------------------------------------------------------------

Old:
----
  z-2.7.3.tgz

New:
----
  z-2.7.4.tgz

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

Other differences:
------------------
++++++ z.spec ++++++
--- /var/tmp/diff_new_pack.FjVeDO/_old  2023-07-14 15:36:14.550145966 +0200
+++ /var/tmp/diff_new_pack.FjVeDO/_new  2023-07-14 15:36:14.554145989 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package z
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 # Copyright (c) 2009 - 2014 Pascal Bleser pascal.ble...@opensuse.org
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:           z
-Version:        2.7.3
+Version:        2.7.4
 Release:        0
 Summary:        Frontend for compressing and uncompressing
 License:        GPL-2.0-only

++++++ z-2.7.3.tgz -> z-2.7.4.tgz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/z-2.7.3/z new/z-2.7.4/z
--- old/z-2.7.3/z       2019-11-07 19:32:01.000000000 +0100
+++ new/z-2.7.4/z       2021-12-14 15:17:49.000000000 +0100
@@ -37,7 +37,8 @@
                #            by Franklin Siler <m...@franksiler.com>
 #version=2.7.1 # 26 Nov 14: update FSF address
 #version=2.7.2  # 13 Jan 15: wrapped a long case line
-version=2.7.3   # 29 Oct 19: change command and suffix defaults
+#version=2.7.3  # 29 Oct 19: change command and suffix defaults
+version=2.7.4   # 14 Dec 21: extend .jar support to .ear and .war
 
 # Note: Considered supporting .cbz ala .jar but it needs sorted file order
 #      within the archive.
@@ -77,7 +78,9 @@
                -xz)    command=xz;       tag=xz;;
                -Z)     command=compress; tag=Z;;
                -zip)   command=zip;      tag=zip;;
+               -ear)   command=zip;      tag=ear;;
                -jar)   command=zip;      tag=jar;;
+               -war)   command=zip;      tag=war;;
                -[1-9]) qopts="$qopts $1";;
                --fast) qopts="$qopts -1";;
                --best) qopts="$qopts -9";;
@@ -98,11 +101,11 @@
 case "$#,$bad" in
 0,*|*,?*)      cat << EOF 1>&2
 usage: $0 [ -t | -T ] [ -v | -V ] [ -l | -L ]
-       [ -gz | -z | -I | -lz | -xz | -Z | -zip | -jar ] [ -# ] [ -s suffix ]
-       [ -m mode ] [ -p | -P ] [ -h ] [ -- ] file ...
+       [ -gz | -z | -I | -lz | -xz | -Z | -zip | -[ejw]ar ] [ -# ]
+       [ -s suffix ] [ -m mode ] [ -p | -P ] [ -h ] [ -- ] file ...
 where "file" is a file, a directory, a feathered file ending
 in .{Z,gz,z,bz2,lz,xz}, or a tarred and feathered file ending in
-.{tar.,tar,ta,t}{Z,gz,z,bz2,lz,xz} or .{zip,jar}.
+.{tar.,tar,ta,t}{Z,gz,z,bz2,lz,xz} or .{zip,[ejw]ar}.
        -t      only list table of contents of given files
        -T      (un)tar and (de)feather given files
        -v      verbose output, eg report compression ratios when feathering
@@ -116,7 +119,9 @@
        -xz     use xz and a .xz suffix when feathering
        -Z      use compress and a .Z suffix when feathering
        -zip    use zip and a .zip suffix when feathering
+       -ear    use zip and a .ear suffix when feathering
        -jar    use zip and a .jar suffix when feathering
+       -war    use zip and a .war suffix when feathering
        -#      where # is 1 thru 9 is passed to *zip*, also --fast or --best
        -s      create tar and feather files with the given suffix style
        -m      apply the given chmod argument to created tar and feather files
@@ -159,10 +164,10 @@
 
        *.tar.[Zz]|*.tar[Zz]|*.ta[Zz]|*.t[Zz]|*.tar.gz|*.targz|*.tagz|*.tgz|\
        *.tar.bz2|*.tarbz2|*.tabz2|*.tbz2|*.tar.lz|*.tlz|*.tar.xz|*.txz|*.zip|\
-       *.jar)
+       *.[ejw]ar)
                case "$arg" in
                *Z)             ucommand=uncompress;   utag=Z;;
-               *zip|*jar)      ucommand=unzip;        utag=;;
+               *zip|*[ejw]ar)  ucommand=unzip;        utag=;;
                *bz2)           ucommand='bzip2 -d';   utag=bz2;;
                *lz)            ucommand='lzip -d';    utag=lz;;
                *xz)            ucommand='xz -d';      utag=xz;;
@@ -179,7 +184,7 @@
                esac
 
                case "$arg" in
-               *.zip|*.jar)
+               *.zip|*.[ejw]ar)
                        tarf="$arg"
                        dirf=`echo "$tarf" | sed 's/\.[^\.]*$//'`;;
                *.tar.[Zz]|*.tar.gz|*.tar.bz2|*.tar.lz|*.tar.xz)
@@ -201,7 +206,8 @@
                fi
 
                case "$arg" in
-               *.tar.[Zz]|*.tar.gz|*.tar.bz2|*.tar.lz|*.tar.xz|*.zip|*.jar)
+               *.tar.[Zz]|*.tar.gz|*.tar.bz2|*.tar.lz|*.tar.xz|*.zip|\
+               *.[ejw]ar)
                        ;;
                *)
                        if test -f "$tarf".$utag -o -d "$tarf".$utag
@@ -214,7 +220,7 @@
                esac
 
                case "$arg" in
-               *.zip|*.jar)
+               *.zip|*.[ejw]ar)
                        mkdir "$dirf" || continue
                        cd "$dirf"    || continue
                        $ucommand -q ../"$arg" 2>&1 | tee $tmp 1>&2;;
@@ -335,19 +341,19 @@
                        esac
 
                        case "$suffix" in
-                       .tar.[Zz]|.tar.gz|tar.[Zz]|tar.gz)  suffix=.tar.$tag;;
-                       .tar.bz2|tar.bz2)                   suffix=.tar.$tag;;
-                       .tar.lz|tar.lz)                     suffix=.tar.$tag;;
-                       .tar.xz|tar.xz)                     suffix=.tar.$tag;;
-                       .tar[Zz]|.targz|tar[Zz]|targz)      suffix=.tar$tag;;
-                       .tarbz2|tarbz2)                     suffix=.tar$tag;;
-                       .ta[Zz]|.tagz|ta[Zz]|tagz)          suffix=.ta$tag;;
-                       .tabz2|tabz2)                       suffix=.ta$tag;;
-                       .t[Zz]|.tgz|t[Zz]|tgz)              suffix=.t$tag;;
-                       .zip|zip|.jar|jar|.tbz2|tbz2)       suffix=.t$tag;;
-                       .tlz|tlz)                           suffix=.t$tag;;
-                       .txz|txz)                           suffix=.t$tag;;
-                       *)                                  cat << EOF 1>&2
+                       .tar.[Zz]|.tar.gz|tar.[Zz]|tar.gz) suffix=.tar.$tag;;
+                       .tar.bz2|tar.bz2)                  suffix=.tar.$tag;;
+                       .tar.lz|tar.lz)                    suffix=.tar.$tag;;
+                       .tar.xz|tar.xz)                    suffix=.tar.$tag;;
+                       .tar[Zz]|.targz|tar[Zz]|targz)     suffix=.tar$tag;;
+                       .tarbz2|tarbz2)                    suffix=.tar$tag;;
+                       .ta[Zz]|.tagz|ta[Zz]|tagz)         suffix=.ta$tag;;
+                       .tabz2|tabz2)                      suffix=.ta$tag;;
+                       .t[Zz]|.tgz|t[Zz]|tgz)             suffix=.t$tag;;
+                       .zip|zip|.[ejw]ar|[ejw]ar|.tbz2|tbz2) suffix=.t$tag;;
+                       .tlz|tlz)                          suffix=.t$tag;;
+                       .txz|txz)                          suffix=.t$tag;;
+                       *)                                 cat << EOF 1>&2
 $0: invalid tar and feather suffix ($suffix), skipping $arg
 EOF
                                                            continue;;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/z-2.7.3/z.html new/z-2.7.4/z.html
--- old/z-2.7.3/z.html  2019-10-29 23:26:06.000000000 +0100
+++ new/z-2.7.4/z.html  2021-12-14 15:17:49.000000000 +0100
@@ -160,7 +160,7 @@
 
 <h2>VERSION</h2>
 
-<p>2.7.3</p>
+<p>2.7.4</p>
 
 <h2>AUTHOR</h2>
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/z-2.7.3/z.man new/z-2.7.4/z.man
--- old/z-2.7.3/z.man   2019-10-29 23:26:06.000000000 +0100
+++ new/z-2.7.4/z.man   2021-12-14 15:17:49.000000000 +0100
@@ -1,4 +1,4 @@
-.TH Z 1 2.7.3
+.TH Z 1 2.7.4
 .SH NAME
 z \- safely (un)tar and (de)feather files and directories
 .SH SYNOPSIS
@@ -269,7 +269,7 @@
 However, there are never any guarantees,
 so please use at your own risk.
 .SH VERSION
-2.7.3
+2.7.4
 .SH AUTHOR
 Steve Kinzler, st...@kinzler.com, May 89/Jun 93/Aug 99/Dec 00
 .SH URL

Reply via email to