1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-01 10:59:55 +00:00

Catch up with the latest Debian patchset to unbreak the fetch.

This commit is contained in:
Alexey Dokuchaev 2019-11-07 11:58:29 +00:00
parent 231efba085
commit 170bbdd62c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=516966
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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);