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

2020-08-04 Thread Maxime Gauduin via arch-commits
Date: Tuesday, August 4, 2020 @ 13:35:19
  Author: alucryd
Revision: 393129

archrelease: copy trunk to extra-x86_64

Added:
  libvpx/repos/extra-x86_64/PKGBUILD
(from rev 393128, libvpx/trunk/PKGBUILD)
Deleted:
  libvpx/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  104 +++--
 1 file changed, 53 insertions(+), 51 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-04 13:35:14 UTC (rev 393128)
+++ PKGBUILD2020-08-04 13:35:19 UTC (rev 393129)
@@ -1,51 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=libvpx
-pkgver=1.8.2
-pkgrel=2
-pkgdesc='VP8 and VP9 codec'
-arch=(x86_64)
-url=https://www.webmproject.org/
-license=(BSD)
-makedepends=(
-  git
-  nasm
-)
-provides=(libvpx.so)
-source=(git+https://chromium.googlesource.com/webm/libvpx#tag=7ec7a33a081aeeb53fed1a8d87e4cbd189152527)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd libvpx
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  cd libvpx
-
-  ./configure \
---prefix=/usr \
---disable-install-docs \
---disable-install-srcs \
---enable-pic \
---enable-postproc \
---enable-runtime-cpu-detect \
---enable-shared \
---enable-vp8 \
---enable-vp9 \
---enable-vp9-highbitdepth \
---enable-vp9-temporal-denoising
-  make
-}
-
-package() {
-  cd libvpx
-
-  make DIST_DIR="${pkgdir}"/usr install
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libvpx/repos/extra-x86_64/PKGBUILD (from rev 393128, 
libvpx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-04 13:35:19 UTC (rev 393129)
@@ -0,0 +1,53 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=libvpx
+pkgver=1.9.0
+pkgrel=1
+pkgdesc='VP8 and VP9 codec'
+arch=(x86_64)
+url=https://www.webmproject.org/
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(
+  git
+  nasm
+)
+provides=(libvpx.so)
+_tag=6516e974f8c40d0e49b19a4b55b1c98e7432edbb
+source=(git+https://chromium.googlesource.com/webm/libvpx#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd libvpx
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd libvpx
+
+  ./configure \
+--prefix=/usr \
+--disable-install-docs \
+--disable-install-srcs \
+--enable-pic \
+--enable-postproc \
+--enable-runtime-cpu-detect \
+--enable-shared \
+--enable-vp8 \
+--enable-vp9 \
+--enable-vp9-highbitdepth \
+--enable-vp9-temporal-denoising
+  make
+}
+
+package() {
+  cd libvpx
+
+  make DIST_DIR="${pkgdir}"/usr install
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
+}
+
+# vim: ts=2 sw=2 et:


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

2019-12-20 Thread Maxime Gauduin via arch-commits
Date: Friday, December 20, 2019 @ 08:02:09
  Author: alucryd
Revision: 371952

archrelease: copy trunk to extra-x86_64

Added:
  libvpx/repos/extra-x86_64/PKGBUILD
(from rev 371951, libvpx/trunk/PKGBUILD)
Deleted:
  libvpx/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   96 -
 1 file changed, 51 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 08:02:04 UTC (rev 371951)
+++ PKGBUILD2019-12-20 08:02:09 UTC (rev 371952)
@@ -1,45 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-
-pkgname=libvpx
-pkgver=1.8.1
-pkgrel=1
-pkgdesc='VP8 and VP9 codec'
-arch=(x86_64)
-url=https://www.webmproject.org/
-license=(BSD)
-makedepends=(
-  git
-  nasm
-)
-provides=(libvpx.so)
-source=(git+https://chromium.googlesource.com/webm/libvpx#tag=v${pkgver})
-sha256sums=('SKIP')
-
-build() {
-  cd libvpx
-
-  ./configure \
---prefix='/usr' \
---disable-install-docs \
---disable-install-srcs \
---enable-pic \
---enable-postproc \
---enable-runtime-cpu-detect \
---enable-shared \
---enable-vp8 \
---enable-vp9 \
---enable-vp9-highbitdepth \
---enable-vp9-temporal-denoising
-  make
-}
-
-package() {
-  cd libvpx
-
-  make DIST_DIR="${pkgdir}"/usr install
-  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libvpx/repos/extra-x86_64/PKGBUILD (from rev 371951, 
libvpx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-20 08:02:09 UTC (rev 371952)
@@ -0,0 +1,51 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+
+pkgname=libvpx
+pkgver=1.8.2
+pkgrel=1
+pkgdesc='VP8 and VP9 codec'
+arch=(x86_64)
+url=https://www.webmproject.org/
+license=(BSD)
+makedepends=(
+  git
+  nasm
+)
+provides=(libvpx.so)
+source=(git+https://chromium.googlesource.com/webm/libvpx#tag=7ec7a33a081aeeb53fed1a8d87e4cbd189152527)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd libvpx
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  cd libvpx
+
+  ./configure \
+--prefix=/usr \
+--disable-install-docs \
+--disable-install-srcs \
+--enable-pic \
+--enable-postproc \
+--enable-runtime-cpu-detect \
+--enable-shared \
+--enable-vp8 \
+--enable-vp9 \
+--enable-vp9-highbitdepth \
+--enable-vp9-temporal-denoising
+  make
+}
+
+package() {
+  cd libvpx
+
+  make DIST_DIR="${pkgdir}"/usr install
+  install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/libvpx/
+}
+
+# vim: ts=2 sw=2 et:


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

2011-08-16 Thread Ionut Biru
Date: Tuesday, August 16, 2011 @ 17:19:30
  Author: ibiru
Revision: 135632

archrelease: copy trunk to extra-x86_64

Added:
  libvpx/repos/extra-x86_64/PKGBUILD
(from rev 135631, libvpx/trunk/PKGBUILD)
Deleted:
  libvpx/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   63 ++---
 1 file changed, 32 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-16 21:19:09 UTC (rev 135631)
+++ PKGBUILD2011-08-16 21:19:30 UTC (rev 135632)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-pkgname=libvpx
-pkgver=0.9.7
-pkgrel=1
-pkgdesc=The VP8 Codec SDK
-arch=('i686' 'x86_64')
-url=http://www.webmproject.org/;
-license=('BSD')
-depends=('glibc')
-makedepends=('yasm')
-source=(http://webm.googlecode.com/files/${pkgname}-v${pkgver}.tar.bz2)
-sha1sums=('639596df7182a93db83f61af8f5bb5b6a13dcf63')
-
-build() {
-cd ${srcdir}/${pkgname}-v${pkgver}
-./configure --prefix=/usr --enable-vp8 \
---enable-runtime-cpu-detect \
---enable-shared \
---enable-postproc \
---enable-pic \
---disable-install-docs \
---disable-install-srcs
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-v${pkgver}
-make DIST_DIR=$pkgdir/usr install
-install -D -m 0644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: libvpx/repos/extra-x86_64/PKGBUILD (from rev 135631, 
libvpx/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-16 21:19:30 UTC (rev 135632)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+pkgname=libvpx
+pkgver=0.9.7.p1
+realver=0.9.7-p1
+pkgrel=1
+pkgdesc=The VP8 Codec SDK
+arch=('i686' 'x86_64')
+url=http://www.webmproject.org/;
+license=('BSD')
+depends=('glibc')
+makedepends=('yasm')
+source=(http://webm.googlecode.com/files/${pkgname}-v${realver}.tar.bz2)
+sha1sums=('dacfefaf3363f781de43858f09cdd0b0d469e6fc')
+
+build() {
+cd ${srcdir}/${pkgname}-v${realver}
+./configure --prefix=/usr --enable-vp8 \
+--enable-runtime-cpu-detect \
+--enable-shared \
+--enable-postproc \
+--enable-pic \
+--disable-install-docs \
+--disable-install-srcs
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-v${realver}
+make DIST_DIR=$pkgdir/usr install
+install -D -m 0644 LICENSE $pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}