[arch-commits] Commit in unzip/repos/extra-x86_64 (18 files)

2020-04-24 Thread Jelle van der Waa via arch-commits
Date: Friday, April 24, 2020 @ 13:12:53
  Author: jelle
Revision: 381491

archrelease: copy trunk to extra-x86_64

Added:
  unzip/repos/extra-x86_64/PKGBUILD
(from rev 381490, unzip/trunk/PKGBUILD)
  unzip/repos/extra-x86_64/crc32.patch
(from rev 381490, unzip/trunk/crc32.patch)
  unzip/repos/extra-x86_64/csiz-underflow.patch
(from rev 381490, unzip/trunk/csiz-underflow.patch)
  unzip/repos/extra-x86_64/cve20149636.patch
(from rev 381490, unzip/trunk/cve20149636.patch)
  unzip/repos/extra-x86_64/empty-input.patch
(from rev 381490, unzip/trunk/empty-input.patch)
  unzip/repos/extra-x86_64/getZip64Data.patch
(from rev 381490, unzip/trunk/getZip64Data.patch)
  unzip/repos/extra-x86_64/nextbyte-overflow.patch
(from rev 381490, unzip/trunk/nextbyte-overflow.patch)
  unzip/repos/extra-x86_64/overflow-fsize.patch
(from rev 381490, unzip/trunk/overflow-fsize.patch)
  unzip/repos/extra-x86_64/test_compr_eb.patch
(from rev 381490, unzip/trunk/test_compr_eb.patch)
Deleted:
  unzip/repos/extra-x86_64/PKGBUILD
  unzip/repos/extra-x86_64/crc32.patch
  unzip/repos/extra-x86_64/csiz-underflow.patch
  unzip/repos/extra-x86_64/cve20149636.patch
  unzip/repos/extra-x86_64/empty-input.patch
  unzip/repos/extra-x86_64/getZip64Data.patch
  unzip/repos/extra-x86_64/nextbyte-overflow.patch
  unzip/repos/extra-x86_64/overflow-fsize.patch
  unzip/repos/extra-x86_64/test_compr_eb.patch

-+
 PKGBUILD|  130 +++---
 crc32.patch |   90 +++
 csiz-underflow.patch|   64 +--
 cve20149636.patch   |   50 
 empty-input.patch   |   52 
 getZip64Data.patch  |  266 +++---
 nextbyte-overflow.patch |   66 +--
 overflow-fsize.patch|   68 +--
 test_compr_eb.patch |   46 +++
 9 files changed, 416 insertions(+), 416 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-24 13:12:35 UTC (rev 381490)
+++ PKGBUILD2020-04-24 13:12:53 UTC (rev 381491)
@@ -1,65 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Gaetan Bisson 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Robson Peixoto
-
-pkgname=unzip
-pkgver=6.0
-_pkgver=${pkgver/./}
-pkgrel=13
-pkgdesc='For extracting and viewing files in .zip archives'
-url='http://www.info-zip.org/UnZip.html'
-arch=('x86_64')
-license=('custom')
-depends=('bzip2' 'bash')
-source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;
-'overflow-fsize.patch'
-'cve20149636.patch'
-'test_compr_eb.patch'
-'getZip64Data.patch'
-'crc32.patch'
-'empty-input.patch'
-'csiz-underflow.patch'
-'nextbyte-overflow.patch')
-sha1sums=('abf7de8a4018a983590ed6f5cbd990d4740f8a22'
-  '2852ce1a9db8d646516f8828436a44d34785a0b3'
-  'e8c0bc17c63eeed97ad62b86845d75c849bcf4f8'
-  '614c3e7fa7d6da7c60ea2aa79e36f4cbd17c3824'
-  '691d0751bf0bc98cf9f9889dee39baccabefdc4d'
-  '82c9fe9172779a0ee92a187d544e74e8f512b013'
-  '4f77b01454fd2ffa69bfad985bfbdc579ee26010'
-  'dccc6d6a5aed0098031bbd7cc4275ab9b10a2177'
-  'b325fac556abf169264ed5ae364b9136016e43f3')
-
-prepare() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   sed -i "/MANDIR =/s#)/#)/share/#" unix/Makefile
-   patch -p1 -i ../overflow-fsize.patch #FS#44171
-   patch -p1 -i ../cve20149636.patch #FS#44171
-   patch -i ../test_compr_eb.patch # FS#43391
-   patch -i ../getZip64Data.patch # FS#43300
-   patch -i ../crc32.patch # FS#43300
-   patch -p1 -i ../empty-input.patch # FS#46955
-   patch -p1 -i ../csiz-underflow.patch # FS#46955
-   patch -p1 -i ../nextbyte-overflow.patch # FS#46955
-}
-
-build() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-
-   # DEFINES, make, and install args from Debian
-   DEFINES='-DACORN_FTYPE_NFS -DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT \
-   -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE 
-DNO_LCHMOD \
-   -DDATE_FORMAT=DF_YMD -DUSE_BZIP2 -DNOMEMCPY 
-DNO_WORKING_ISPRINT'
-
-   make -f unix/Makefile prefix=/usr \
-   D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 \
-   LF2="$LDFLAGS" CF="$CFLAGS $CPPFLAGS -I. $DEFINES" \
-   unzips
-}
-
-package() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   make -f unix/Makefile prefix="${pkgdir}"/usr install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: unzip/repos/extra-x86_64/PKGBUILD (from rev 381490, 
unzip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-04-24 13:12:53 UTC (rev 381491)
@@ -0,0 +1,65 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: Douglas Soares de Andrade 
+# 

[arch-commits] Commit in unzip/repos/extra-x86_64 (18 files)

2018-11-09 Thread Jelle van der Waa via arch-commits
Date: Friday, November 9, 2018 @ 14:10:35
  Author: jelle
Revision: 338460

archrelease: copy trunk to extra-x86_64

Added:
  unzip/repos/extra-x86_64/PKGBUILD
(from rev 338459, unzip/trunk/PKGBUILD)
  unzip/repos/extra-x86_64/crc32.patch
(from rev 338459, unzip/trunk/crc32.patch)
  unzip/repos/extra-x86_64/csiz-underflow.patch
(from rev 338459, unzip/trunk/csiz-underflow.patch)
  unzip/repos/extra-x86_64/cve20149636.patch
(from rev 338459, unzip/trunk/cve20149636.patch)
  unzip/repos/extra-x86_64/empty-input.patch
(from rev 338459, unzip/trunk/empty-input.patch)
  unzip/repos/extra-x86_64/getZip64Data.patch
(from rev 338459, unzip/trunk/getZip64Data.patch)
  unzip/repos/extra-x86_64/nextbyte-overflow.patch
(from rev 338459, unzip/trunk/nextbyte-overflow.patch)
  unzip/repos/extra-x86_64/overflow-fsize.patch
(from rev 338459, unzip/trunk/overflow-fsize.patch)
  unzip/repos/extra-x86_64/test_compr_eb.patch
(from rev 338459, unzip/trunk/test_compr_eb.patch)
Deleted:
  unzip/repos/extra-x86_64/PKGBUILD
  unzip/repos/extra-x86_64/crc32.patch
  unzip/repos/extra-x86_64/csiz-underflow.patch
  unzip/repos/extra-x86_64/cve20149636.patch
  unzip/repos/extra-x86_64/empty-input.patch
  unzip/repos/extra-x86_64/getZip64Data.patch
  unzip/repos/extra-x86_64/nextbyte-overflow.patch
  unzip/repos/extra-x86_64/overflow-fsize.patch
  unzip/repos/extra-x86_64/test_compr_eb.patch

-+
 PKGBUILD|  130 +++---
 crc32.patch |   90 +++
 csiz-underflow.patch|   64 +--
 cve20149636.patch   |   50 
 empty-input.patch   |   52 
 getZip64Data.patch  |  266 +++---
 nextbyte-overflow.patch |   66 +--
 overflow-fsize.patch|   68 +--
 test_compr_eb.patch |   46 +++
 9 files changed, 416 insertions(+), 416 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-09 14:10:16 UTC (rev 338459)
+++ PKGBUILD2018-11-09 14:10:35 UTC (rev 338460)
@@ -1,65 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: Gaetan Bisson 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: Robson Peixoto
-
-pkgname=unzip
-pkgver=6.0
-_pkgver=${pkgver/./}
-pkgrel=12
-pkgdesc='For extracting and viewing files in .zip archives'
-url='http://www.info-zip.org/UnZip.html'
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('bzip2' 'bash')
-source=("http://downloads.sourceforge.net/infozip/${pkgname}${_pkgver}.tar.gz;
-'overflow-fsize.patch'
-'cve20149636.patch'
-'test_compr_eb.patch'
-'getZip64Data.patch'
-'crc32.patch'
-'empty-input.patch'
-'csiz-underflow.patch'
-'nextbyte-overflow.patch')
-sha1sums=('abf7de8a4018a983590ed6f5cbd990d4740f8a22'
-  '2852ce1a9db8d646516f8828436a44d34785a0b3'
-  'e8c0bc17c63eeed97ad62b86845d75c849bcf4f8'
-  '614c3e7fa7d6da7c60ea2aa79e36f4cbd17c3824'
-  '691d0751bf0bc98cf9f9889dee39baccabefdc4d'
-  '82c9fe9172779a0ee92a187d544e74e8f512b013'
-  '4f77b01454fd2ffa69bfad985bfbdc579ee26010'
-  'dccc6d6a5aed0098031bbd7cc4275ab9b10a2177'
-  'b325fac556abf169264ed5ae364b9136016e43f3')
-
-prepare() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   sed -i "/MANDIR =/s#)/#)/share/#" unix/Makefile
-   patch -p1 -i ../overflow-fsize.patch #FS#44171
-   patch -p1 -i ../cve20149636.patch #FS#44171
-   patch -i ../test_compr_eb.patch # FS#43391
-   patch -i ../getZip64Data.patch # FS#43300
-   patch -i ../crc32.patch # FS#43300
-   patch -p1 -i ../empty-input.patch # FS#46955
-   patch -p1 -i ../csiz-underflow.patch # FS#46955
-   patch -p1 -i ../nextbyte-overflow.patch # FS#46955
-}
-
-build() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-
-   # DEFINES, make, and install args from Debian
-   DEFINES='-DACORN_FTYPE_NFS -DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT \
-   -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE 
-DNO_LCHMOD \
-   -DDATE_FORMAT=DF_YMD -DUSE_BZIP2 -DNOMEMCPY 
-DNO_WORKING_ISPRINT'
-
-   make -f unix/Makefile prefix=/usr \
-   D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 \
-   LF2="$LDFLAGS" CF="$CFLAGS $CPPFLAGS -I. $DEFINES" \
-   unzips
-}
-
-package() {
-   cd "${srcdir}/${pkgname}${_pkgver}"
-   make -f unix/Makefile prefix="${pkgdir}"/usr install
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: unzip/repos/extra-x86_64/PKGBUILD (from rev 338459, 
unzip/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-09 14:10:35 UTC (rev 338460)
@@ -0,0 +1,65 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: Douglas Soares de 

[arch-commits] Commit in unzip/repos (extra-x86_64)

2010-02-27 Thread Thayer Williams
Date: Saturday, February 27, 2010 @ 10:46:30
  Author: thayer
Revision: 70618

archrelease: remove extra-x86_64

Deleted:
  unzip/repos/extra-x86_64/



[arch-commits] Commit in unzip/repos (extra-x86_64)

2010-02-27 Thread Thayer Williams
Date: Saturday, February 27, 2010 @ 10:46:40
  Author: thayer
Revision: 70619

archrelease: copy trunk to extra-x86_64

Added:
  unzip/repos/extra-x86_64/