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

Gaetan Bisson bisson at nymeria.archlinux.org
Fri Oct 25 02:26:33 UTC 2013


    Date: Friday, October 25, 2013 @ 04:26:33
  Author: bisson
Revision: 197322

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

Added:
  libogg/repos/extra-i686/PKGBUILD
    (from rev 197320, libogg/trunk/PKGBUILD)
  libogg/repos/extra-i686/config_types.h
    (from rev 197320, libogg/trunk/config_types.h)
  libogg/repos/extra-x86_64/PKGBUILD
    (from rev 197321, libogg/trunk/PKGBUILD)
  libogg/repos/extra-x86_64/config_types.h
    (from rev 197321, libogg/trunk/config_types.h)
Deleted:
  libogg/repos/extra-i686/PKGBUILD
  libogg/repos/extra-i686/config_types.h
  libogg/repos/extra-x86_64/PKGBUILD
  libogg/repos/extra-x86_64/config_types.h

-----------------------------+
 /PKGBUILD                   |   76 ++++++++++++++++++++++++++++++++++++++++++
 /config_types.h             |   18 +++++++++
 extra-i686/PKGBUILD         |   38 ---------------------
 extra-i686/config_types.h   |    9 ----
 extra-x86_64/PKGBUILD       |   38 ---------------------
 extra-x86_64/config_types.h |    9 ----
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2013-10-25 02:26:14 UTC (rev 197321)
+++ extra-i686/PKGBUILD	2013-10-25 02:26:33 UTC (rev 197322)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Tom Gundersen <teg at jklm.no>
-# Contributor: John Proctor <jproctor at prium.net>
-
-pkgname=libogg
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="Ogg bitstream and framing library"
-arch=('i686' 'x86_64')
-url="http://www.xiph.org/ogg/"
-license=('BSD')
-depends=('glibc')
-options=('!libtool')
-source=(http://downloads.xiph.org/releases/ogg/$pkgname-$pkgver.tar.xz
-        config_types.h)
-
-build() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr 
-  make
-}
-
-package() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-
-# install BSD license
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-# Resolve multilib conflict
-  if [[ $CARCH == "x86_64" ]]; then
-    mv "$pkgdir"/usr/include/ogg/config_types{,-64}.h
-    install -m 644 "$srcdir/config_types.h" \
-      "${pkgdir}/usr/include/ogg/config_types.h"
-  fi
-}
-md5sums=('ca25d8da0ddfc8c6cbbf78d847a209fe'
-         'a4d786b1b1955cb85b64fd16cbbee3f9')

Copied: libogg/repos/extra-i686/PKGBUILD (from rev 197320, libogg/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2013-10-25 02:26:33 UTC (rev 197322)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:  Tom Gundersen <teg at jklm.no>
+# Contributor: John Proctor <jproctor at prium.net>
+
+pkgname=libogg
+pkgver=1.3.1
+pkgrel=2
+pkgdesc="Ogg bitstream and framing library"
+arch=('i686' 'x86_64')
+url="http://www.xiph.org/ogg/"
+license=('BSD')
+depends=('glibc')
+options=('!libtool')
+source=(http://downloads.xiph.org/releases/ogg/$pkgname-$pkgver.tar.xz
+        config_types.h)
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr 
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+
+# install BSD license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+# Resolve multilib conflict
+  if [[ $CARCH == "x86_64" ]]; then
+    mv "$pkgdir"/usr/include/ogg/config_types{,-64}.h
+    install -m 644 "$srcdir/config_types.h" \
+      "${pkgdir}/usr/include/ogg/config_types.h"
+  fi
+}
+md5sums=('ca25d8da0ddfc8c6cbbf78d847a209fe'
+         'a4d786b1b1955cb85b64fd16cbbee3f9')

Deleted: extra-i686/config_types.h
===================================================================
--- extra-i686/config_types.h	2013-10-25 02:26:14 UTC (rev 197321)
+++ extra-i686/config_types.h	2013-10-25 02:26:33 UTC (rev 197322)
@@ -1,9 +0,0 @@
-#include <bits/wordsize.h>
-
-#if __WORDSIZE == 32
-#include "config_types-32.h"
-#elif __WORDSIZE == 64
-#include "config_types-64.h"
-#else
-#error "Unknown word size"
-#endif

Copied: libogg/repos/extra-i686/config_types.h (from rev 197320, libogg/trunk/config_types.h)
===================================================================
--- extra-i686/config_types.h	                        (rev 0)
+++ extra-i686/config_types.h	2013-10-25 02:26:33 UTC (rev 197322)
@@ -0,0 +1,9 @@
+#include <bits/wordsize.h>
+
+#if __WORDSIZE == 32
+#include "config_types-32.h"
+#elif __WORDSIZE == 64
+#include "config_types-64.h"
+#else
+#error "Unknown word size"
+#endif

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2013-10-25 02:26:14 UTC (rev 197321)
+++ extra-x86_64/PKGBUILD	2013-10-25 02:26:33 UTC (rev 197322)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer:  Tom Gundersen <teg at jklm.no>
-# Contributor: John Proctor <jproctor at prium.net>
-
-pkgname=libogg
-pkgver=1.3.1
-pkgrel=1
-pkgdesc="Ogg bitstream and framing library"
-arch=('i686' 'x86_64')
-url="http://www.xiph.org/ogg/"
-license=('BSD')
-depends=('glibc')
-options=('!libtool')
-source=(http://downloads.xiph.org/releases/ogg/$pkgname-$pkgver.tar.xz
-        config_types.h)
-
-build() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr 
-  make
-}
-
-package() {
-  cd "$srcdir/${pkgname}-${pkgver}"
-  make DESTDIR="$pkgdir" install
-
-# install BSD license
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-
-# Resolve multilib conflict
-  if [[ $CARCH == "x86_64" ]]; then
-    mv "$pkgdir"/usr/include/ogg/config_types{,-64}.h
-    install -m 644 "$srcdir/config_types.h" \
-      "${pkgdir}/usr/include/ogg/config_types.h"
-  fi
-}
-md5sums=('ca25d8da0ddfc8c6cbbf78d847a209fe'
-         'a4d786b1b1955cb85b64fd16cbbee3f9')

Copied: libogg/repos/extra-x86_64/PKGBUILD (from rev 197321, libogg/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2013-10-25 02:26:33 UTC (rev 197322)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer:  Tom Gundersen <teg at jklm.no>
+# Contributor: John Proctor <jproctor at prium.net>
+
+pkgname=libogg
+pkgver=1.3.1
+pkgrel=2
+pkgdesc="Ogg bitstream and framing library"
+arch=('i686' 'x86_64')
+url="http://www.xiph.org/ogg/"
+license=('BSD')
+depends=('glibc')
+options=('!libtool')
+source=(http://downloads.xiph.org/releases/ogg/$pkgname-$pkgver.tar.xz
+        config_types.h)
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr 
+  make
+}
+
+package() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+  make DESTDIR="$pkgdir" install
+
+# install BSD license
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+
+# Resolve multilib conflict
+  if [[ $CARCH == "x86_64" ]]; then
+    mv "$pkgdir"/usr/include/ogg/config_types{,-64}.h
+    install -m 644 "$srcdir/config_types.h" \
+      "${pkgdir}/usr/include/ogg/config_types.h"
+  fi
+}
+md5sums=('ca25d8da0ddfc8c6cbbf78d847a209fe'
+         'a4d786b1b1955cb85b64fd16cbbee3f9')

Deleted: extra-x86_64/config_types.h
===================================================================
--- extra-x86_64/config_types.h	2013-10-25 02:26:14 UTC (rev 197321)
+++ extra-x86_64/config_types.h	2013-10-25 02:26:33 UTC (rev 197322)
@@ -1,9 +0,0 @@
-#include <bits/wordsize.h>
-
-#if __WORDSIZE == 32
-#include "config_types-32.h"
-#elif __WORDSIZE == 64
-#include "config_types-64.h"
-#else
-#error "Unknown word size"
-#endif

Copied: libogg/repos/extra-x86_64/config_types.h (from rev 197321, libogg/trunk/config_types.h)
===================================================================
--- extra-x86_64/config_types.h	                        (rev 0)
+++ extra-x86_64/config_types.h	2013-10-25 02:26:33 UTC (rev 197322)
@@ -0,0 +1,9 @@
+#include <bits/wordsize.h>
+
+#if __WORDSIZE == 32
+#include "config_types-32.h"
+#elif __WORDSIZE == 64
+#include "config_types-64.h"
+#else
+#error "Unknown word size"
+#endif




More information about the arch-commits mailing list