]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Update documentation and distribution script for ipptool.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 28 Sep 2011 20:04:56 +0000 (20:04 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 28 Sep 2011 20:04:56 +0000 (20:04 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@10024 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-IPPTOOL.txt [new file with mode: 0644]
IPPTOOL.txt
tools/makeipptoolpkg

diff --git a/CHANGES-IPPTOOL.txt b/CHANGES-IPPTOOL.txt
new file mode 100644 (file)
index 0000000..e107c3c
--- /dev/null
@@ -0,0 +1,53 @@
+CHANGES-IPPTOOL.txt - 2011-09-28
+--------------------------------
+
+This file provides a list of changes to the ipptool binary distribution posted
+on cups.org.
+
+
+2011-09-28
+
+       - Test output now includes a summary and overall score at the end.
+       - The MATCH-VALUE predicate now correctly deals with a failed EXPECT
+         condition.
+       - The IPP/1.1 test suite now looks for legacy media names and uses them
+         if the corresponding PWG standard names are not present.
+       - The IPP/1.1 test suite now tests the Print-Job+Release-Job when the
+         printer supports the job-hold-until attribute, Hold-Job operation, and
+         Release-Job operation.
+
+
+2011-09-21
+
+       - Fixes for HTTP chunking, timeout, and encryption issues reported by
+         various users.
+       - Greatly improved IPP tests with added IPP/2.2 tests.
+       - New test documents - 1-page and 4-page mixed A4/Letter PDF/PS and a
+         couple JPEGs.
+       - New REPEAT directives to programmatically repeat tests as needed.
+
+
+2011-08-16
+
+       - The Windows version no longer requires Visual Studio to be installed.
+       - The Windows version now supports SSL.
+       - Added "ipps" URI support.
+       - Added a new "-T" option.
+       - Added support for fractional seconds for the -i option and DELAY
+         directive.
+       - Added support for authentication.
+       - Added DEFINE-MATCH, DEFINE-NO-MATCH, DEFINE-VALUE, IF-NOT-DEFINED,
+         IGNORE-ERRORS, SKIP-IF-DEFINED, SKIP-IF-NOT-DEFINED,
+         SKIP-PREVIOUS-ERROR directives.
+       - WITH-VALUE now supports variable expansion.
+       - Updated the IPP/1.1 conformance test to skip the "my-jobs different
+         user" test if the printer URI contains a username.
+       - Updated the IPP conformance tests to validate media, media-default,
+         and media-supported values.
+       - No longer error out if a Printer returns a different version number in
+         the response when the request contains the version 0.0.
+
+
+2010-10-16
+
+       - Initial release of standalone binary.
index bffa90a7b5683eae696633dc10b5c529ca9d2ef1..b0c671c2b57b4acc801868eb5df23e847234a834 100644 (file)
@@ -1,6 +1,8 @@
-IPPTOOL.txt - 2011-09-21
+IPPTOOL.txt - 2011-09-28
 ------------------------
 
+See the file CHANGES-IPPTOOL.txt for a list of changes to this software.
+
 
 INTRODUCTION
 
@@ -136,8 +138,6 @@ LEGAL STUFF
 
     The MD5 Digest code is Copyright 1999 Aladdin Enterprises.
 
-    This software is based in part on the work of the Independent JPEG Group.
-
     CUPS is provided under the terms of version 2 of the GNU General Public
     License and GNU Library General Public License. This program is distributed
     in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
index 36ee3287d903e11b95f5d7da920dd9d9d6bdf727..ba471ca066ace6caae474b78d32ed63bf91fd376 100755 (executable)
@@ -27,11 +27,9 @@ if test $# = 0; then
        echo Updating to get snapshot version...
        svn up
        rev=`svnversion . | sed -e '1,$s/[a-zA-Z]//g'`
-       fileversion="1.6-`date '+%Y%m%d'`"
-       version=snapshots
+       fileversion="`date '+%Y%m%d'`-r$rev"
 else
        fileversion=$1
-       version=$1
 fi
 
 if (svn st | grep -qv '^\?'); then
@@ -47,7 +45,7 @@ test -d $pkgdir && rm -r $pkgdir
 mkdir $pkgdir || exit 1
 
 echo Copying package files
-cp IPPTOOL.txt LICENSE.txt $pkgdir
+cp CHANGES-IPPTOOL.txt IPPTOOL.txt LICENSE.txt $pkgdir
 cp doc/help/man-ipptool*.html $pkgdir
 cp test/color.jpg $pkgdir
 cp test/create-printer-subscription.test $pkgdir
@@ -75,9 +73,9 @@ else
 fi
 
 if test -x /usr/bin/md5sum; then
-        (md5sum $pkgfile | awk '{print $1, "'$fileversion' cups/'$version'/" $2}')
+        (md5sum $pkgfile | awk '{print $1, "'$fileversion' cups/ipptool/" $2}')
 elif test -x /sbin/md5; then
-        (md5 $pkgfile | awk '{print $4, "'$fileversion' cups/'$version'/" substr($2, 2, length($2) - 2)}')
+        (md5 $pkgfile | awk '{print $4, "'$fileversion' cups/ipptool/" substr($2, 2, length($2) - 2)}')
 fi
 
 echo Removing temporary files...