[csw-devel] SF.net SVN: gar:[17143] csw/mgar/pkg/ddrescue/trunk
dmichelsen at users.sourceforge.net
dmichelsen at users.sourceforge.net
Thu Feb 23 10:55:21 CET 2012
Revision: 17143
http://gar.svn.sourceforge.net/gar/?rev=17143&view=rev
Author: dmichelsen
Date: 2012-02-23 09:55:21 +0000 (Thu, 23 Feb 2012)
Log Message:
-----------
ddrescue/trunk: Update to 1.15
Modified Paths:
--------------
csw/mgar/pkg/ddrescue/trunk/Makefile
csw/mgar/pkg/ddrescue/trunk/checksums
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 2012-02-23 09:45:09 UTC (rev 17142)
+++ csw/mgar/pkg/ddrescue/trunk/Makefile 2012-02-23 09:55:21 UTC (rev 17143)
@@ -1,6 +1,6 @@
# : Makefile 9089 2010-03-11 08:34:46Z wahwah $
NAME = ddrescue
-VERSION = 1.14
+VERSION = 1.15
CATEGORIES = utils
GARTYPE = v2
@@ -11,12 +11,11 @@
endef
MASTER_SITES = $(GNU_MIRROR)
-DISTFILES = $(NAME)-$(VERSION).tar.lz
+DISTFILES = $(DISTNAME).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
+EXTRA_LDFLAGS += -norunpath
CONFIGURE_ARGS = --prefix=$(prefix)
CONFIGURE_ARGS += CXX="$(CXX)" CPPFLAGS="$(CPPFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)"
Modified: csw/mgar/pkg/ddrescue/trunk/checksums
===================================================================
--- csw/mgar/pkg/ddrescue/trunk/checksums 2012-02-23 09:45:09 UTC (rev 17142)
+++ csw/mgar/pkg/ddrescue/trunk/checksums 2012-02-23 09:55:21 UTC (rev 17143)
@@ -1 +1 @@
-122d628c884a170659ac4c227cc484bc ddrescue-1.14.tar.lz
+c0566c2648c3738390a8dda2f37a9824 ddrescue-1.15.tar.lz
Modified: 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 2012-02-23 09:45:09 UTC (rev 17142)
+++ csw/mgar/pkg/ddrescue/trunk/files/0001-Use-inttypes.h-instead-of-stdint.h.patch 2012-02-23 09:55:21 UTC (rev 17143)
@@ -1,20 +1,21 @@
-From 1663750c7ed123dc247d26a41a4fdbdead4ccb1c Mon Sep 17 00:00:00 2001
+From 15db7fb3672d81bed1b00e2f4a94cab3bb331d55 Mon Sep 17 00:00:00 2001
From: Dagobert Michelsen <dam at opencsw.org>
-Date: Tue, 25 Jan 2011 09:52:33 +0100
+Date: Thu, 23 Feb 2012 10:39:18 +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(-)
+ block.cc | 2 +-
+ ddrescuelog.cc | 2 +-
+ fillbook.cc | 2 +-
+ genbook.cc | 2 +-
+ io.cc | 2 +-
+ logbook.cc | 2 +-
+ main.cc | 2 +-
+ rescuebook.cc | 2 +-
+ 8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/block.cc b/block.cc
-index 5b80fdc..2ec989b 100644
+index 2f14ada..b8d29e9 100644
--- a/block.cc
+++ b/block.cc
@@ -23,7 +23,7 @@
@@ -26,21 +27,21 @@
#include "block.h"
#include "ddrescue.h"
-diff --git a/ddrescue.cc b/ddrescue.cc
-index 3acca37..6b4657d 100644
---- a/ddrescue.cc
-+++ b/ddrescue.cc
+diff --git a/ddrescuelog.cc b/ddrescuelog.cc
+index 40a64ae..b908392 100644
+--- a/ddrescuelog.cc
++++ b/ddrescuelog.cc
@@ -28,7 +28,7 @@
- #include <ctime>
+ #include <cstring>
#include <string>
#include <vector>
-#include <stdint.h>
+#include <inttypes.h>
- #include <unistd.h>
+ #include "arg_parser.h"
#include "block.h"
diff --git a/fillbook.cc b/fillbook.cc
-index 7c7be61..533b346 100644
+index 5b249a5..66aed40 100644
--- a/fillbook.cc
+++ b/fillbook.cc
@@ -22,7 +22,7 @@
@@ -53,7 +54,7 @@
#include "block.h"
#include "ddrescue.h"
diff --git a/genbook.cc b/genbook.cc
-index 0106edd..5760fe7 100644
+index d864a8f..b74bb64 100644
--- a/genbook.cc
+++ b/genbook.cc
@@ -24,7 +24,7 @@
@@ -65,8 +66,21 @@
#include <unistd.h>
#include "block.h"
+diff --git a/io.cc b/io.cc
+index 902ce12..a921b87 100644
+--- a/io.cc
++++ b/io.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/logbook.cc b/logbook.cc
-index c5bed8d..13eb69d 100644
+index bee8754..12c5bad 100644
--- a/logbook.cc
+++ b/logbook.cc
@@ -27,7 +27,7 @@
@@ -79,7 +93,7 @@
#include "block.h"
diff --git a/main.cc b/main.cc
-index 9397965..dbcfd1d 100644
+index a200763..7238998 100644
--- a/main.cc
+++ b/main.cc
@@ -32,7 +32,7 @@
@@ -92,7 +106,7 @@
#include <sys/stat.h>
diff --git a/rescuebook.cc b/rescuebook.cc
-index 8da4269..dce76ab 100644
+index 0dbbeb9..562e442 100644
--- a/rescuebook.cc
+++ b/rescuebook.cc
@@ -24,7 +24,7 @@
@@ -105,5 +119,5 @@
#include "block.h"
--
-1.7.3.2
+1.7.9
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