diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-12-03 09:52:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-12-03 14:39:36 +0000 |
commit | adc79e42efe943ea505ff76d79f3fbbd03d615c6 (patch) | |
tree | 4500cac1ddff3c5b8c7b78bfef96748126f0f2da /main/unarj | |
parent | 19b451b6458e6af8b966b2b45f6c838da8df9477 (diff) | |
download | aports-adc79e42efe943ea505ff76d79f3fbbd03d615c6.tar.bz2 aports-adc79e42efe943ea505ff76d79f3fbbd03d615c6.tar.xz |
main/unarj: build with -Wformat -Werror=format-security
Diffstat (limited to 'main/unarj')
-rw-r--r-- | main/unarj/APKBUILD | 19 | ||||
-rw-r--r-- | main/unarj/format.patch | 66 |
2 files changed, 80 insertions, 5 deletions
diff --git a/main/unarj/APKBUILD b/main/unarj/APKBUILD index c4abe31146..0ca884ac4e 100644 --- a/main/unarj/APKBUILD +++ b/main/unarj/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> pkgname=unarj pkgver=2.63a -pkgrel=3 +pkgrel=4 pkgdesc="Extracting, testing and viewing the contents of archives created with the ARJ archiver" url="http://www.arjsoftware.com" arch="all" @@ -10,11 +10,17 @@ subpackages="" depends="" makedepends="" install="" -source="http://ibiblio.org/pub/Linux/utils/compress/$pkgname-$pkgver.tar.gz" +source="http://ibiblio.org/pub/Linux/utils/compress/$pkgname-$pkgver.tar.gz + format.patch" _builddir="$srcdir"/$pkgname-$pkgver prepare() { cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done return 0 } @@ -28,6 +34,9 @@ package() { install -D -m755 unarj $pkgdir/usr/bin/unarj || return 1 } -md5sums="a83d139c245f911f22cb1b611ec9768f unarj-2.63a.tar.gz" -sha256sums="33f8297aa28911eb684ca83e9e00de04a360ea35603282d91de20aec4eb19a48 unarj-2.63a.tar.gz" -sha512sums="4f8aed311b8626f6bbefc7ad3296c1e69e8c89e79e4b853124502939ca83e2eb0352b64a5b71b2572e948a97a31416e678bc4ce30519631732001cfe7bb983d2 unarj-2.63a.tar.gz" +md5sums="a83d139c245f911f22cb1b611ec9768f unarj-2.63a.tar.gz +b64f3a5cd4f023f5904e38d7cb3d07b0 format.patch" +sha256sums="33f8297aa28911eb684ca83e9e00de04a360ea35603282d91de20aec4eb19a48 unarj-2.63a.tar.gz +5ca423e7e3d505125c09843c624efe5735a178326ddc41e32c486bf8154c8a11 format.patch" +sha512sums="4f8aed311b8626f6bbefc7ad3296c1e69e8c89e79e4b853124502939ca83e2eb0352b64a5b71b2572e948a97a31416e678bc4ce30519631732001cfe7bb983d2 unarj-2.63a.tar.gz +078cb5f300bb1022589b6a79d0022a992e92baec0015af33d158a44e5c97970e7fa5e975c965cd0897c6da316a461a503dae7d310f89660271175285ba06a6ff format.patch" diff --git a/main/unarj/format.patch b/main/unarj/format.patch new file mode 100644 index 0000000000..2c4c0ab7df --- /dev/null +++ b/main/unarj/format.patch @@ -0,0 +1,66 @@ +diff --git a/unarj.c b/unarj.c +index 02b1a63..85e7b05 100644 +--- a/unarj.c ++++ b/unarj.c +@@ -696,7 +696,7 @@ check_flags() + } + if ((arj_flags & GARBLE_FLAG) != 0) + { +- printf(M_ENCRYPT); ++ printf("%s", M_ENCRYPT); + printf(M_SKIPPED, filename); + skip(); + return -1; +@@ -777,7 +777,7 @@ extract() + } + printf(M_EXTRACT, name); + if (host_os != OS && file_type == BINARY_TYPE) +- printf(M_DIFFHOST); ++ printf("%s", M_DIFFHOST); + printf(" "); + + crc = CRC_MASK; +@@ -793,10 +793,10 @@ extract() + set_ftime_mode(name, time_stamp, file_mode, (uint) host_os); + + if ((crc ^ CRC_MASK) == file_crc) +- printf(M_CRCOK); ++ printf("%s", M_CRCOK); + else + { +- printf(M_CRCERROR); ++ printf("%s", M_CRCERROR); + error_count++; + } + return 1; +@@ -822,10 +822,10 @@ test() + decode_f(); + + if ((crc ^ CRC_MASK) == file_crc) +- printf(M_CRCOK); ++ printf("%s", M_CRCOK); + else + { +- printf(M_CRCERROR); ++ printf("%s", M_CRCERROR); + error_count++; + } + return 1; +@@ -972,7 +972,7 @@ help() + int i; + + for (i = 0; M_USAGE[i] != NULL; i++) +- printf(M_USAGE[i]); ++ printf("%s", M_USAGE[i]); + } + + int +@@ -987,7 +987,7 @@ char *argv[]; + argc = ccommand(&argv); + #endif + +- printf(M_VERSION); ++ printf("%s", M_VERSION); + + if (argc == 1) + { |