[Dctrl-tools-devel] CVS dctrl-tools/debian

CVS User ajk ajk@haydn.debian.org
Wed, 08 Jun 2005 16:31:25 +0000


Update of /cvsroot/dctrl-tools/dctrl-tools/debian
In directory haydn:/tmp/cvs-serv12348/debian

Modified Files:
      Tag: r_2_6_maint
	NEWS changelog control copyright 
Log Message:
Implement vesion number comparison.

--- /cvsroot/dctrl-tools/dctrl-tools/debian/NEWS	2004/07/12 15:28:32	1.5.4.2
+++ /cvsroot/dctrl-tools/dctrl-tools/debian/NEWS	2005/06/08 16:31:25	1.5.4.3
@@ -1,3 +1,11 @@
+grep-dctrl (2.6.6) unstable; urgency=low
+
+    Version number comparisons are now supported.  This subsumes the
+    earlier support for numeric comparison, since the version comparison
+    routine handles it as a special case.
+
+ -- Antti-Juhani Kaijanaho <ajk@debian.org>  Wed,  8 Jun 2005 19:26:56 +0300
+
 grep-dctrl (2.6.1) experimental; urgency=low
 
     This version introduces a new program, sync-available, whose function
--- /cvsroot/dctrl-tools/dctrl-tools/debian/changelog	2005/06/07 19:48:58	1.35.2.18
+++ /cvsroot/dctrl-tools/dctrl-tools/debian/changelog	2005/06/08 16:31:25	1.35.2.19
@@ -3,8 +3,18 @@
   * Go to unstable again.
   * Merge 2.1.10 and 2.1.11 (no po/ merge).
   * po/fi.po: Sync translation with 2.1.11.
+  * Change numeric comparison to version number comparison.
+    Noteworthy individual changes:
+      + debian/control: Drop libgmp3-dev build-dependency.
+      + Makefile: No longer link with libgmp.
+      + grep-dctrl.1.cp: Document, remove earlier warnings.
+      + grep-dctrl.c: Document, remove earlier warnings (etc.)
+      + predicate.c: Replace numeric comparison with version
+        comparison.  Copy the actual comparison code from dpkg.
+      + paragraph.[ch]: No longer do a numeric parse.
+      + debian/copyright: Document dpkg copyright.
 
- -- Antti-Juhani Kaijanaho <ajk@debian.org>  Tue,  7 Jun 2005 22:48:37 +0300
+ -- Antti-Juhani Kaijanaho <ajk@debian.org>  Wed,  8 Jun 2005 19:25:10 +0300
 
 grep-dctrl (2.6.5) experimental; urgency=low
 
--- /cvsroot/dctrl-tools/dctrl-tools/debian/control	2004/07/14 00:05:44	1.11.4.2
+++ /cvsroot/dctrl-tools/dctrl-tools/debian/control	2005/06/08 16:31:25	1.11.4.3
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Antti-Juhani Kaijanaho <ajk@debian.org>
 Standards-Version: 3.6.1
-Build-Depends: gettext (>= 0.11-0), libgmp3-dev, gcc (>= 3.0)
+Build-Depends: gettext (>= 0.11-0), gcc (>= 3.0)
 
 Package: grep-dctrl
 Architecture: any
--- /cvsroot/dctrl-tools/dctrl-tools/debian/copyright	2004/01/06 10:26:30	1.4
+++ /cvsroot/dctrl-tools/dctrl-tools/debian/copyright	2005/06/08 16:31:25	1.4.6.1
@@ -1,6 +1,6 @@
 This package and the program in it were written and debianized by
 Antti-Juhani Kaijanaho <ajk@debian.org>.  The program contains code by
-Lars Wirzenius.
+Wichert Akkerman, Ian Jackson and Lars Wirzenius.
 
 Copyright:
 
@@ -65,3 +65,29 @@
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
+Marked portions of the file predicate.c are covered by the following
+copyright:
+
+/*
+ * libdpkg - Debian packaging suite library routines
+ * vercmp.c - comparison of version numbers
+ * utils.c - Helper functions for dpkg
+ *
+ * Copyright (C) 1995 Ian Jackson <ian@chiark.greenend.org.uk>
+ * Copyright (C) 2001 Wichert Akkerman <wakkerma@debian.org>
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2,
+ * or (at your option) any later version.
+ *
+ * This is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with dpkg; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+