CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gzip: updated to 1.9
authorVictor Martinez <pitillo@ono.com>
Fri, 4 May 2018 18:51:17 +0000 (18:51 +0000)
committerVictor Martinez <pitillo@ono.com>
Fri, 4 May 2018 18:51:17 +0000 (18:51 +0000)
gzip/.md5sum
gzip/Pkgfile
gzip/gzip-futimens.patch [deleted file]

index ff0965b372e0d938b48bc2a0a2619b890fff88a4..2c32878c5cb6f77ae35a132ff871d2c5731340c2 100644 (file)
@@ -1 +1 @@
-732553152814b22dc35aa0267df5286c  gzip-1.8.tar.gz
+929d6a6b832f75b28e3eeeafb30c1d9b  gzip-1.9.tar.gz
index b229a4c6fad1b36e04bf223929efd73e0a935632..cd87bf49d765943a8572c6b62409bbe186bc1565 100644 (file)
@@ -5,7 +5,7 @@
 # Depends on:
 
 name=gzip
-version=1.8
+version=1.9
 release=1
 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
 
diff --git a/gzip/gzip-futimens.patch b/gzip/gzip-futimens.patch
deleted file mode 100644 (file)
index f8ef8d9..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-diff -Nru gzip-1.3.12.orig/gzip.c gzip-1.3.12/gzip.c
---- gzip-1.3.12.orig/gzip.c    2007-08-16 11:50:42.747692170 +0200
-+++ gzip-1.3.12/gzip.c 2007-08-16 11:51:38.754599471 +0200
-@@ -1637,7 +1637,7 @@
-       }
-       }
--    if (futimens (ofd, ofname, timespec) != 0)
-+    if (gl_futimens (ofd, ofname, timespec) != 0)
-       {
-       int e = errno;
-       WARN ((stderr, "%s: ", program_name));
-diff -Nru gzip-1.3.12.orig/lib/utimens.c gzip-1.3.12/lib/utimens.c
---- gzip-1.3.12.orig/lib/utimens.c     2007-08-16 11:50:42.757691618 +0200
-+++ gzip-1.3.12/lib/utimens.c  2007-08-16 11:50:56.646924655 +0200
-@@ -75,8 +75,8 @@
-    Return 0 on success, -1 (setting errno) on failure.  */
- int
--futimens (int fd ATTRIBUTE_UNUSED,
--        char const *file, struct timespec const timespec[2])
-+gl_futimens (int fd ATTRIBUTE_UNUSED,
-+           char const *file, struct timespec const timespec[2])
- {
-   /* Some Linux-based NFS clients are buggy, and mishandle time stamps
-      of files in NFS file systems in some cases.  We have no
-@@ -185,5 +185,5 @@
- int
- utimens (char const *file, struct timespec const timespec[2])
- {
--  return futimens (-1, file, timespec);
-+  return gl_futimens (-1, file, timespec);
- }
-diff -Nru gzip-1.3.12.orig/lib/utimens.h gzip-1.3.12/lib/utimens.h
---- gzip-1.3.12.orig/lib/utimens.h     2007-08-16 11:50:42.767691065 +0200
-+++ gzip-1.3.12/lib/utimens.h  2007-08-16 11:56:49.997243976 +0200
-@@ -1,3 +1,3 @@
- #include <time.h>
--int futimens (int, char const *, struct timespec const [2]);
-+int gl_futimens (int, char const *, struct timespec const [2]);
- int utimens (char const *, struct timespec const [2]);