[csw-devel] SF.net SVN: gar:[13092] csw/mgar/pkg/ddrescue/trunk

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Tue Jan 25 09:55:24 CET 2011


Revision: 13092
          http://gar.svn.sourceforge.net/gar/?rev=13092&view=rev
Author:   dmichelsen
Date:     2011-01-25 08:55:24 +0000 (Tue, 25 Jan 2011)

Log Message:
-----------
ddrescue: Update to 1.14

Modified Paths:
--------------
    csw/mgar/pkg/ddrescue/trunk/Makefile
    csw/mgar/pkg/ddrescue/trunk/checksums

Added Paths:
-----------
    csw/mgar/pkg/ddrescue/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h.patch

Modified: csw/mgar/pkg/ddrescue/trunk/Makefile
===================================================================
--- csw/mgar/pkg/ddrescue/trunk/Makefile	2011-01-25 08:54:23 UTC (rev 13091)
+++ csw/mgar/pkg/ddrescue/trunk/Makefile	2011-01-25 08:55:24 UTC (rev 13092)
@@ -1,6 +1,6 @@
 # : Makefile 9089 2010-03-11 08:34:46Z wahwah $
 NAME = ddrescue
-VERSION = 1.13
+VERSION = 1.14
 CATEGORIES = utils
 
 DESCRIPTION = A data recovery tool
@@ -12,6 +12,8 @@
 MASTER_SITES = $(GNU_MIRROR)
 DISTFILES  = $(NAME)-$(VERSION).tar.lz
 
+PATCHFILES += 0001-Use-inttypes.h-instead-of-stdint.h.patch
+
 # File name regex to get notifications about upstream software releases
 UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.lz
 

Modified: csw/mgar/pkg/ddrescue/trunk/checksums
===================================================================
--- csw/mgar/pkg/ddrescue/trunk/checksums	2011-01-25 08:54:23 UTC (rev 13091)
+++ csw/mgar/pkg/ddrescue/trunk/checksums	2011-01-25 08:55:24 UTC (rev 13092)
@@ -1 +1 @@
-00cd788fbd6bc5a6205c3199f7557fda  ddrescue-1.13.tar.lz
+122d628c884a170659ac4c227cc484bc  ddrescue-1.14.tar.lz

Added: csw/mgar/pkg/ddrescue/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h.patch
===================================================================
--- csw/mgar/pkg/ddrescue/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h.patch	                        (rev 0)
+++ csw/mgar/pkg/ddrescue/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h.patch	2011-01-25 08:55:24 UTC (rev 13092)
@@ -0,0 +1,109 @@
+From 1663750c7ed123dc247d26a41a4fdbdead4ccb1c Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Tue, 25 Jan 2011 09:52:33 +0100
+Subject: [PATCH] Use inttypes.h instead of stdint.h
+
+---
+ block.cc      |    2 +-
+ ddrescue.cc   |    2 +-
+ fillbook.cc   |    2 +-
+ genbook.cc    |    2 +-
+ logbook.cc    |    2 +-
+ main.cc       |    2 +-
+ rescuebook.cc |    2 +-
+ 7 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/block.cc b/block.cc
+index 5b80fdc..2ec989b 100644
+--- a/block.cc
++++ b/block.cc
+@@ -23,7 +23,7 @@
+ #include <cstdio>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ 
+ #include "block.h"
+ #include "ddrescue.h"
+diff --git a/ddrescue.cc b/ddrescue.cc
+index 3acca37..6b4657d 100644
+--- a/ddrescue.cc
++++ b/ddrescue.cc
+@@ -28,7 +28,7 @@
+ #include <ctime>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ 
+ #include "block.h"
+diff --git a/fillbook.cc b/fillbook.cc
+index 7c7be61..533b346 100644
+--- a/fillbook.cc
++++ b/fillbook.cc
+@@ -22,7 +22,7 @@
+ #include <cstdio>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ 
+ #include "block.h"
+ #include "ddrescue.h"
+diff --git a/genbook.cc b/genbook.cc
+index 0106edd..5760fe7 100644
+--- a/genbook.cc
++++ b/genbook.cc
+@@ -24,7 +24,7 @@
+ #include <cstring>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ 
+ #include "block.h"
+diff --git a/logbook.cc b/logbook.cc
+index c5bed8d..13eb69d 100644
+--- a/logbook.cc
++++ b/logbook.cc
+@@ -27,7 +27,7 @@
+ #include <ctime>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ 
+ #include "block.h"
+diff --git a/main.cc b/main.cc
+index 9397965..dbcfd1d 100644
+--- a/main.cc
++++ b/main.cc
+@@ -32,7 +32,7 @@
+ #include <string>
+ #include <vector>
+ #include <fcntl.h>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ #include <sys/stat.h>
+ 
+diff --git a/rescuebook.cc b/rescuebook.cc
+index 8da4269..dce76ab 100644
+--- a/rescuebook.cc
++++ b/rescuebook.cc
+@@ -24,7 +24,7 @@
+ #include <cstring>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ 
+ #include "block.h"
+-- 
+1.7.3.2
+


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list