[csw-devel] SF.net SVN: gar:[17585] csw/mgar/pkg/lzip/trunk

rthurner at users.sourceforge.net rthurner at users.sourceforge.net
Mon Apr 2 06:58:32 CEST 2012


Revision: 17585
          http://gar.svn.sourceforge.net/gar/?rev=17585&view=rev
Author:   rthurner
Date:     2012-04-02 04:58:32 +0000 (Mon, 02 Apr 2012)
Log Message:
-----------
lzip: update patches

Modified Paths:
--------------
    csw/mgar/pkg/lzip/trunk/Makefile

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

Removed Paths:
-------------
    csw/mgar/pkg/lzip/trunk/files/0001-inttypes.h-instead-of-stdint.h.patch
    csw/mgar/pkg/lzip/trunk/files/0002-inttypes.h-instead-of-stdint.h.patch

Modified: csw/mgar/pkg/lzip/trunk/Makefile
===================================================================
--- csw/mgar/pkg/lzip/trunk/Makefile	2012-04-02 04:38:57 UTC (rev 17584)
+++ csw/mgar/pkg/lzip/trunk/Makefile	2012-04-02 04:58:32 UTC (rev 17585)
@@ -15,8 +15,8 @@
 
 MASTER_SITES = http://download.savannah.gnu.org/releases/lzip/ 
 DISTFILES = $(NAME)-$(VERSION).tar.gz
-PATCHFILES  = 0001-inttypes.h-instead-of-stdint.h.patch
-PATCHFILES += 0002-inttypes.h-instead-of-stdint.h.patch
+#PATCHFILES  = 0001-inttypes.h-instead-of-stdint.h.patch
+#PATCHFILES += 0002-inttypes.h-instead-of-stdint.h.patch
 # We define upstream file regex so we can be notifed of new upstream software release
 UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz
 

Deleted: csw/mgar/pkg/lzip/trunk/files/0001-inttypes.h-instead-of-stdint.h.patch
===================================================================
--- csw/mgar/pkg/lzip/trunk/files/0001-inttypes.h-instead-of-stdint.h.patch	2012-04-02 04:38:57 UTC (rev 17584)
+++ csw/mgar/pkg/lzip/trunk/files/0001-inttypes.h-instead-of-stdint.h.patch	2012-04-02 04:58:32 UTC (rev 17585)
@@ -1,25 +0,0 @@
-From 43958262312e06e5fde2e62815798e2c6e8f8929 Mon Sep 17 00:00:00 2001
-From: THURNER rupert <rupert at opencsw.org>
-Date: Mon, 1 Nov 2010 16:57:20 -0500
-Subject: [PATCH] inttypes.h instead of stdint.h
-
----
- fast_encoder.cc |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/fast_encoder.cc b/fast_encoder.cc
-index f4becde..bfefe17 100644
---- a/fast_encoder.cc
-+++ b/fast_encoder.cc
-@@ -23,7 +23,7 @@
- #include <cstring>
- #include <string>
- #include <vector>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzip.h"
- #include "encoder.h"
--- 
-1.7.3
-

Added: csw/mgar/pkg/lzip/trunk/files/0001-use-inttypes.h-instead-of-stdint.h.patch
===================================================================
--- csw/mgar/pkg/lzip/trunk/files/0001-use-inttypes.h-instead-of-stdint.h.patch	                        (rev 0)
+++ csw/mgar/pkg/lzip/trunk/files/0001-use-inttypes.h-instead-of-stdint.h.patch	2012-04-02 04:58:32 UTC (rev 17585)
@@ -0,0 +1,53 @@
+From 94cd14c20757910525df7b74c3bc48d6138cba68 Mon Sep 17 00:00:00 2001
+From: THURNER rupert <rupert at opencsw.org>
+Date: Mon, 2 Apr 2012 06:53:46 +0200
+Subject: [PATCH] use inttypes.h instead of stdint.h
+
+---
+ decoder.cc      |    2 +-
+ encoder.cc      |    2 +-
+ fast_encoder.cc |    2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/decoder.cc b/decoder.cc
+index ae37563..bd7aa0c 100644
+--- a/decoder.cc
++++ b/decoder.cc
+@@ -24,7 +24,7 @@
+ #include <cstring>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ #include <unistd.h>
+ 
+ #include "lzip.h"
+diff --git a/encoder.cc b/encoder.cc
+index 56820b5..9c3ca06 100644
+--- a/encoder.cc
++++ b/encoder.cc
+@@ -23,7 +23,7 @@
+ #include <cstring>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ 
+ #include "lzip.h"
+ #include "encoder.h"
+diff --git a/fast_encoder.cc b/fast_encoder.cc
+index 2d99b04..a89e984 100644
+--- a/fast_encoder.cc
++++ b/fast_encoder.cc
+@@ -23,7 +23,7 @@
+ #include <cstring>
+ #include <string>
+ #include <vector>
+-#include <stdint.h>
++#include <inttypes.h>
+ 
+ #include "lzip.h"
+ #include "encoder.h"
+-- 
+1.7.9
+

Deleted: csw/mgar/pkg/lzip/trunk/files/0002-inttypes.h-instead-of-stdint.h.patch
===================================================================
--- csw/mgar/pkg/lzip/trunk/files/0002-inttypes.h-instead-of-stdint.h.patch	2012-04-02 04:38:57 UTC (rev 17584)
+++ csw/mgar/pkg/lzip/trunk/files/0002-inttypes.h-instead-of-stdint.h.patch	2012-04-02 04:58:32 UTC (rev 17585)
@@ -1,68 +0,0 @@
-From e434ca6f4d7f1157d0e0e74b26739333b81d8d80 Mon Sep 17 00:00:00 2001
-From: THURNER rupert <rupert at opencsw.org>
-Date: Mon, 1 Nov 2010 16:51:34 -0500
-Subject: [PATCH] replace stdint.h with inttypes.h
-
----
- decoder.cc     |    2 +-
- encoder.cc     |    2 +-
- lziprecover.cc |    2 +-
- main.cc        |    3 ++-
- 4 files changed, 5 insertions(+), 4 deletions(-)
-
-diff --git a/decoder.cc b/decoder.cc
-index 03d2ca6..c0c4759 100644
---- a/decoder.cc
-+++ b/decoder.cc
-@@ -24,7 +24,7 @@
- #include <cstring>
- #include <string>
- #include <vector>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzip.h"
- #include "decoder.h"
-diff --git a/encoder.cc b/encoder.cc
-index e10142a..f58fcb2 100644
---- a/encoder.cc
-+++ b/encoder.cc
-@@ -23,7 +23,7 @@
- #include <cstring>
- #include <string>
- #include <vector>
--#include <stdint.h>
-+#include <inttypes.h>
- 
- #include "lzip.h"
- #include "encoder.h"
-diff --git a/lziprecover.cc b/lziprecover.cc
-index 3f1b130..c2b218f 100644
---- a/lziprecover.cc
-+++ b/lziprecover.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>
- #if defined(__MSVCRT__)
-diff --git a/main.cc b/main.cc
-index 193f4ac..26b1b23 100644
---- a/main.cc
-+++ b/main.cc
-@@ -33,7 +33,8 @@
- #include <string>
- #include <vector>
- #include <fcntl.h>
--#include <stdint.h>
-+#include <inttypes.h>
-+#include <signal.h>
- #include <unistd.h>
- #include <utime.h>
- #include <sys/stat.h>
--- 
-1.7.3
-

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