Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Nov 2019 11:58:29 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r516966 - in head/archivers/arj: . files
Message-ID:  <201911071158.xA7BwTUR035745@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911071158.xA7BwTUR035745>