svn commit: r516966 - in head/archivers/arj: . files
Alexey Dokuchaev
danfe at FreeBSD.org
Thu Nov 7 11:58:30 UTC 2019
Author: danfe
Date: Thu Nov 7 11:58:29 2019
New Revision: 516966
URL: https://svnweb.freebsd.org/changeset/ports/516966
Log:
Catch up with the latest Debian patchset to unbreak the fetch.
Modified:
head/archivers/arj/Makefile
head/archivers/arj/distinfo
head/archivers/arj/files/patch-arjtypes.c
Modified: head/archivers/arj/Makefile
==============================================================================
--- head/archivers/arj/Makefile Thu Nov 7 11:55:10 2019 (r516965)
+++ head/archivers/arj/Makefile Thu Nov 7 11:58:29 2019 (r516966)
@@ -8,7 +8,7 @@ CATEGORIES= archivers
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/2.78_3.10%20build%2022:source \
DEBIAN_POOL:patch
DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz:source \
- ${PORTNAME}_${PORTVERSION}-21.debian.tar.xz:patch
+ ${PORTNAME}_${PORTVERSION}-23.debian.tar.xz:patch
MAINTAINER= garga at FreeBSD.org
COMMENT= Open source implementation of the ARJ archiver
Modified: head/archivers/arj/distinfo
==============================================================================
--- head/archivers/arj/distinfo Thu Nov 7 11:55:10 2019 (r516965)
+++ head/archivers/arj/distinfo Thu Nov 7 11:58:29 2019 (r516966)
@@ -1,5 +1,5 @@
TIMESTAMP = 1563302294
SHA256 (arj-3.10.22.tar.gz) = 589e4c9bccc8669e7b6d8d6fcd64e01f6a2c21fe10aad56a83304ecc3b96a7db
SIZE (arj-3.10.22.tar.gz) = 431467
-SHA256 (arj_3.10.22-21.debian.tar.xz) = 20c430f4222b8d75d1b2a6d435620f024c41a30dbc3949890c63686a7497f61e
-SIZE (arj_3.10.22-21.debian.tar.xz) = 21768
+SHA256 (arj_3.10.22-23.debian.tar.xz) = d3e5c0e5d2f7be61a177d6606077663b5cd742380c2c5a69763baaca770e64a8
+SIZE (arj_3.10.22-23.debian.tar.xz) = 22832
Modified: head/archivers/arj/files/patch-arjtypes.c
==============================================================================
--- head/archivers/arj/files/patch-arjtypes.c Thu Nov 7 11:55:10 2019 (r516965)
+++ head/archivers/arj/files/patch-arjtypes.c Thu Nov 7 11:58:29 2019 (r516966)
@@ -6,7 +6,7 @@
struct tm *stm;
+ time_t _ts;
-- stm=arj_localtime((time_t*)&ts);
+- stm=arj_localtime(&ts);
+ _ts = ts;
+
+ stm=arj_localtime(&_ts);
More information about the svn-ports-head
mailing list