[arch-commits] Commit in unshield/repos (8 files)

Sergej Pupykin spupykin at nymeria.archlinux.org
Fri Nov 15 12:43:17 UTC 2013


    Date: Friday, November 15, 2013 @ 13:43:16
  Author: spupykin
Revision: 101042

archrelease: copy trunk to community-i686, community-x86_64

Added:
  unshield/repos/community-i686/PKGBUILD
    (from rev 101041, unshield/trunk/PKGBUILD)
  unshield/repos/community-i686/libunshield.c.patch
    (from rev 101041, unshield/trunk/libunshield.c.patch)
  unshield/repos/community-x86_64/PKGBUILD
    (from rev 101041, unshield/trunk/PKGBUILD)
  unshield/repos/community-x86_64/libunshield.c.patch
    (from rev 101041, unshield/trunk/libunshield.c.patch)
Deleted:
  unshield/repos/community-i686/PKGBUILD
  unshield/repos/community-i686/libunshield.c.patch
  unshield/repos/community-x86_64/PKGBUILD
  unshield/repos/community-x86_64/libunshield.c.patch

--------------------------------------+
 /PKGBUILD                            |   70 +++++++++++++++++++++++++++++++++
 /libunshield.c.patch                 |   24 +++++++++++
 community-i686/PKGBUILD              |   26 ------------
 community-i686/libunshield.c.patch   |   12 -----
 community-x86_64/PKGBUILD            |   26 ------------
 community-x86_64/libunshield.c.patch |   12 -----
 6 files changed, 94 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-11-15 12:43:03 UTC (rev 101041)
+++ community-i686/PKGBUILD	2013-11-15 12:43:16 UTC (rev 101042)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-
-pkgname=unshield
-pkgver=0.6
-pkgrel=3
-pkgdesc="Extracts CAB files from InstallShield installers"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/synce/files/"
-license=('custom')
-depends=('zlib')
-source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz
-        libunshield.c.patch)
-md5sums=('31a829192a255160d1f71cda4c865c9c'
-         'aa731ca6fd7c7dfb03f8b07e232b37d3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # See http://www.mail-archive.com/synce-devel@lists.sourceforge.net/msg01796.html
-  patch -Np0 -i "${srcdir}/libunshield.c.patch"
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
-}
-

Copied: unshield/repos/community-i686/PKGBUILD (from rev 101041, unshield/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-11-15 12:43:16 UTC (rev 101042)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgname=unshield
+pkgver=0.6
+pkgrel=4
+pkgdesc="Extracts CAB files from InstallShield installers"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/synce/files/"
+license=('custom')
+depends=('zlib')
+source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz
+        libunshield.c.patch)
+md5sums=('31a829192a255160d1f71cda4c865c9c'
+         'aa731ca6fd7c7dfb03f8b07e232b37d3')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|CFLAGS="-ansi -Wall -Werror"|CFLAGS="-ansi -Wall"|g' configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # See http://www.mail-archive.com/synce-devel@lists.sourceforge.net/msg01796.html
+  patch -Np0 -i "${srcdir}/libunshield.c.patch"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
+}
+

Deleted: community-i686/libunshield.c.patch
===================================================================
--- community-i686/libunshield.c.patch	2013-11-15 12:43:03 UTC (rev 101041)
+++ community-i686/libunshield.c.patch	2013-11-15 12:43:16 UTC (rev 101042)
@@ -1,12 +0,0 @@
---- lib/libunshield.c	2004-08-24 08:10:27.000000000 +0200
-+++ lib/libunshield.c	2010-08-13 20:39:58.000000000 +0200
-@@ -271,6 +271,9 @@
-       
-       header->major_version = (header->common.version >> 12) & 0xf;
- 
-+      if (header->common.version == 0x020004b0)
-+        header->major_version = 9;
-+
- #if 0
-       if (header->major_version < 5)
-         header->major_version = 5;

Copied: unshield/repos/community-i686/libunshield.c.patch (from rev 101041, unshield/trunk/libunshield.c.patch)
===================================================================
--- community-i686/libunshield.c.patch	                        (rev 0)
+++ community-i686/libunshield.c.patch	2013-11-15 12:43:16 UTC (rev 101042)
@@ -0,0 +1,12 @@
+--- lib/libunshield.c	2004-08-24 08:10:27.000000000 +0200
++++ lib/libunshield.c	2010-08-13 20:39:58.000000000 +0200
+@@ -271,6 +271,9 @@
+       
+       header->major_version = (header->common.version >> 12) & 0xf;
+ 
++      if (header->common.version == 0x020004b0)
++        header->major_version = 9;
++
+ #if 0
+       if (header->major_version < 5)
+         header->major_version = 5;

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-11-15 12:43:03 UTC (rev 101041)
+++ community-x86_64/PKGBUILD	2013-11-15 12:43:16 UTC (rev 101042)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-
-pkgname=unshield
-pkgver=0.6
-pkgrel=3
-pkgdesc="Extracts CAB files from InstallShield installers"
-arch=('i686' 'x86_64')
-url="http://sourceforge.net/projects/synce/files/"
-license=('custom')
-depends=('zlib')
-source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz
-        libunshield.c.patch)
-md5sums=('31a829192a255160d1f71cda4c865c9c'
-         'aa731ca6fd7c7dfb03f8b07e232b37d3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # See http://www.mail-archive.com/synce-devel@lists.sourceforge.net/msg01796.html
-  patch -Np0 -i "${srcdir}/libunshield.c.patch"
-  ./configure --prefix=/usr
-  make
-  make DESTDIR=${pkgdir} install
-  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
-}
-

Copied: unshield/repos/community-x86_64/PKGBUILD (from rev 101041, unshield/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-11-15 12:43:16 UTC (rev 101042)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgname=unshield
+pkgver=0.6
+pkgrel=4
+pkgdesc="Extracts CAB files from InstallShield installers"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/synce/files/"
+license=('custom')
+depends=('zlib')
+source=(http://downloads.sourceforge.net/sourceforge/synce/${pkgname}-${pkgver}.tar.gz
+        libunshield.c.patch)
+md5sums=('31a829192a255160d1f71cda4c865c9c'
+         'aa731ca6fd7c7dfb03f8b07e232b37d3')
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|CFLAGS="-ansi -Wall -Werror"|CFLAGS="-ansi -Wall"|g' configure
+}
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # See http://www.mail-archive.com/synce-devel@lists.sourceforge.net/msg01796.html
+  patch -Np0 -i "${srcdir}/libunshield.c.patch"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/unshield/LICENSE
+}
+

Deleted: community-x86_64/libunshield.c.patch
===================================================================
--- community-x86_64/libunshield.c.patch	2013-11-15 12:43:03 UTC (rev 101041)
+++ community-x86_64/libunshield.c.patch	2013-11-15 12:43:16 UTC (rev 101042)
@@ -1,12 +0,0 @@
---- lib/libunshield.c	2004-08-24 08:10:27.000000000 +0200
-+++ lib/libunshield.c	2010-08-13 20:39:58.000000000 +0200
-@@ -271,6 +271,9 @@
-       
-       header->major_version = (header->common.version >> 12) & 0xf;
- 
-+      if (header->common.version == 0x020004b0)
-+        header->major_version = 9;
-+
- #if 0
-       if (header->major_version < 5)
-         header->major_version = 5;

Copied: unshield/repos/community-x86_64/libunshield.c.patch (from rev 101041, unshield/trunk/libunshield.c.patch)
===================================================================
--- community-x86_64/libunshield.c.patch	                        (rev 0)
+++ community-x86_64/libunshield.c.patch	2013-11-15 12:43:16 UTC (rev 101042)
@@ -0,0 +1,12 @@
+--- lib/libunshield.c	2004-08-24 08:10:27.000000000 +0200
++++ lib/libunshield.c	2010-08-13 20:39:58.000000000 +0200
+@@ -271,6 +271,9 @@
+       
+       header->major_version = (header->common.version >> 12) & 0xf;
+ 
++      if (header->common.version == 0x020004b0)
++        header->major_version = 9;
++
+ #if 0
+       if (header->major_version < 5)
+         header->major_version = 5;




More information about the arch-commits mailing list