[arch-commits] Commit in libmpeg2/repos/extra-x86_64 (4 files)

2018-06-03 Thread Jan de Groot via arch-commits
Date: Sunday, June 3, 2018 @ 21:48:44
  Author: jgc
Revision: 325728

archrelease: copy trunk to extra-x86_64

Added:
  libmpeg2/repos/extra-x86_64/PKGBUILD
(from rev 325727, libmpeg2/trunk/PKGBUILD)
  libmpeg2/repos/extra-x86_64/libmpeg2-0.5.1-gcc4.6.patch
(from rev 325727, libmpeg2/trunk/libmpeg2-0.5.1-gcc4.6.patch)
Deleted:
  libmpeg2/repos/extra-x86_64/PKGBUILD
  libmpeg2/repos/extra-x86_64/libmpeg2-0.5.1-gcc4.6.patch

-+
 PKGBUILD|   79 ++--
 libmpeg2-0.5.1-gcc4.6.patch |  256 +-
 2 files changed, 169 insertions(+), 166 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-03 21:48:35 UTC (rev 325727)
+++ PKGBUILD2018-06-03 21:48:44 UTC (rev 325728)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Sarah Hay 
-# Maintainer: Andreas Radke 
-
-pkgname=libmpeg2
-pkgver=0.5.1
-pkgrel=5
-pkgdesc="Library for decoding MPEG-1 and MPEG-2 video streams."
-arch=('i686' 'x86_64')
-url="http://libmpeg2.sourceforge.net/;
-depends=('glibc')
-makedepends=('sdl' 'libxv')
-optdepends=('sdl: required for mpeg2dec'
-'libxv: required for mpeg2dec')
-source=(http://libmpeg2.sourceforge.net/files/${pkgname}-${pkgver}.tar.gz
-libmpeg2-0.5.1-gcc4.6.patch)
-license=('GPL2')
-provides=('mpeg2dec')
-md5sums=('0f92c7454e58379b4a5a378485bbd8ef'
- '8b36660297e6ffde6aa9733136bff405')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/libmpeg2-0.5.1-gcc4.6.patch"
-
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-
-  ./configure --prefix=/usr --enable-shared --disable-static
-  make OPT_CFLAGS="${CFLAGS}" \
-   MPEG2DEC_CFLAGS="${CFLAGS}" \
-   LIBMPEG2_CFLAGS=""
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libmpeg2/repos/extra-x86_64/PKGBUILD (from rev 325727, 
libmpeg2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-03 21:48:44 UTC (rev 325728)
@@ -0,0 +1,41 @@
+# $Id$
+# Contributor: Sarah Hay 
+# Maintainer: Andreas Radke 
+
+pkgname=libmpeg2
+pkgver=0.5.1
+pkgrel=6
+pkgdesc="Library for decoding MPEG-1 and MPEG-2 video streams."
+arch=('x86_64')
+url="http://libmpeg2.sourceforge.net/;
+depends=('glibc')
+makedepends=('sdl' 'libxv')
+optdepends=('sdl: required for mpeg2dec'
+'libxv: required for mpeg2dec')
+source=(http://libmpeg2.sourceforge.net/files/${pkgname}-${pkgver}.tar.gz
+libmpeg2-0.5.1-gcc4.6.patch)
+license=('GPL2')
+provides=('mpeg2dec')
+sha256sums=('dee22e893cb5fc2b2b6ebd60b88478ab8556cb3b93f9a0d7ce8f3b61851871d4'
+'763e188eea36ee3cdfb31e7877bbead00676b5766c25175ec6a7eb20884926d1')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/libmpeg2-0.5.1-gcc4.6.patch"
+
+  sed '/AC_PATH_XTRA/d' -i configure.ac
+  autoreconf --force --install
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --enable-shared --disable-static
+  make OPT_CFLAGS="${CFLAGS}" \
+   MPEG2DEC_CFLAGS="${CFLAGS}" \
+   LIBMPEG2_CFLAGS=""
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Deleted: libmpeg2-0.5.1-gcc4.6.patch
===
--- libmpeg2-0.5.1-gcc4.6.patch 2018-06-03 21:48:35 UTC (rev 325727)
+++ libmpeg2-0.5.1-gcc4.6.patch 2018-06-03 21:48:44 UTC (rev 325728)
@@ -1,128 +0,0 @@
 libmpeg2-0.5.1/libmpeg2/idct_mmx.c.orig2011-05-13 09:23:02.557758717 
-0300
-+++ libmpeg2-0.5.1/libmpeg2/idct_mmx.c 2011-05-13 09:23:06.346778580 -0300
-@@ -39,7 +39,6 @@
- #define rounder(bias) {round (bias), round (bias)}
- #define rounder_sse2(bias) {round (bias), round (bias), round (bias), round 
(bias)}
- 
--
- #if 0
- /* C row IDCT - it is just here to document the MMXEXT and MMX versions */
- static inline void idct_row (int16_t * row, int offset,
-@@ -464,10 +463,10 @@ static inline void sse2_idct_col (int16_
- /* Almost identical to mmxext version:  */
- /* just do both 4x8 columns in paraller */
- 
--static const short t1_vector[] ATTR_ALIGN(16) = {T1,T1,T1,T1,T1,T1,T1,T1};
--static const short t2_vector[] ATTR_ALIGN(16) = {T2,T2,T2,T2,T2,T2,T2,T2};
--static const short t3_vector[] ATTR_ALIGN(16) = {T3,T3,T3,T3,T3,T3,T3,T3};
--static const short c4_vector[] ATTR_ALIGN(16) = {C4,C4,C4,C4,C4,C4,C4,C4};
-+static/* const*/ short t1_vector[] ATTR_ALIGN(16) = 
{T1,T1,T1,T1,T1,T1,T1,T1};
-+static/* const*/ short t2_vector[] ATTR_ALIGN(16) = 
{T2,T2,T2,T2,T2,T2,T2,T2};
-+static/* const*/ short t3_vector[] ATTR_ALIGN(16) = 
{T3,T3,T3,T3,T3,T3,T3,T3};
-+static/* const*/ short c4_vector[] ATTR_ALIGN(16) = 
{C4,C4,C4,C4,C4,C4,C4,C4};
- 
- #if defined(__x86_64__)
- 
-@@ -710,10 +709,10 @@ 

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

2011-08-03 Thread Jan de Groot
Date: Wednesday, August 3, 2011 @ 03:11:55
  Author: jgc
Revision: 134369

archrelease: remove extra-x86_64

Deleted:
  libmpeg2/repos/extra-x86_64/



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

2011-08-03 Thread Jan de Groot
Date: Wednesday, August 3, 2011 @ 03:12:06
  Author: jgc
Revision: 134370

archrelease: copy trunk to extra-x86_64

Added:
  libmpeg2/repos/extra-x86_64/



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

2011-08-02 Thread Jan de Groot
Date: Tuesday, August 2, 2011 @ 14:27:52
  Author: jgc
Revision: 134272

archrelease: remove extra-x86_64

Deleted:
  libmpeg2/repos/extra-x86_64/



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

2011-08-02 Thread Jan de Groot
Date: Tuesday, August 2, 2011 @ 14:28:03
  Author: jgc
Revision: 134273

archrelease: copy trunk to extra-x86_64

Added:
  libmpeg2/repos/extra-x86_64/