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

2020-10-27 Thread Maxime Gauduin via arch-commits
Date: Tuesday, October 27, 2020 @ 14:22:14
  Author: alucryd
Revision: 398897

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 398896, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  129 ++---
 1 file changed, 65 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-27 14:22:09 UTC (rev 398896)
+++ PKGBUILD2020-10-27 14:22:14 UTC (rev 398897)
@@ -1,64 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.2.0
-pkgrel=3
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=(x86_64)
-url=https://www.videolan.org/developers/libbluray.html
-license=(LGPL2.1)
-depends=(
-  fontconfig
-  libfreetype.so
-  libxml2
-)
-makedepends=(
-  apache-ant
-  git
-  java-environment
-)
-optdepends=('java-runtime: BD-J library')
-provides=(libbluray.so)
-source=(
-  
git+https://code.videolan.org/videolan/libbluray.git#tag=43059c7e3631703857358cff7666c6a11497da89
-  git+https://code.videolan.org/videolan/libudfread.git
-)
-sha256sums=(
-  SKIP
-  SKIP
-)
-
-pkgver() {
-  cd libbluray
-
-  git describe --tags
-}
-
-prepare() {
-  cd libbluray
-
-  for submodule in contrib/libudfread; do
-git submodule init ${submodule}
-git config submodule.${submodule}.url ../${submodule#*/}
-git submodule update ${submodule}
-  done
-
-  autoreconf -fiv
-}
-
-build() {
-  cd libbluray
-
-  ./configure \
---prefix=/usr
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C libbluray install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 398896, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-27 14:22:14 UTC (rev 398897)
@@ -0,0 +1,65 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.2.1
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url=https://www.videolan.org/developers/libbluray.html
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment
+)
+optdepends=('java-runtime: BD-J library')
+provides=(libbluray.so)
+_tag=2091174b7e6e80d5bf080a7ab1aa4e901546a29e
+source=(
+  git+https://code.videolan.org/videolan/libbluray.git#tag=${_tag}
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+b2sums=(
+  SKIP
+  SKIP
+)
+
+pkgver() {
+  cd libbluray
+
+  git describe --tags
+}
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:


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

2020-03-22 Thread Maxime Gauduin via arch-commits
Date: Sunday, March 22, 2020 @ 20:15:59
  Author: alucryd
Revision: 378369

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 378368, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  120 -
 1 file changed, 64 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-22 20:15:49 UTC (rev 378368)
+++ PKGBUILD2020-03-22 20:15:59 UTC (rev 378369)
@@ -1,56 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.1.2
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=(x86_64)
-url=https://www.videolan.org/developers/libbluray.html
-license=(LGPL2.1)
-depends=(
-  fontconfig
-  libfreetype.so
-  libxml2
-)
-makedepends=(
-  apache-ant
-  git
-  java-environment=8
-)
-optdepends=('java-runtime=8: BD-J library')
-provides=(libbluray.so)
-source=(
-  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
-  git+https://code.videolan.org/videolan/libudfread.git
-)
-sha256sums=('SKIP'
-'SKIP')
-
-prepare() {
-  cd libbluray
-
-  for submodule in contrib/libudfread; do
-git submodule init ${submodule}
-git config submodule.${submodule}.url ../${submodule#*/}
-git submodule update ${submodule}
-  done
-
-  autoreconf -fiv
-}
-
-build() {
-  cd libbluray
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C libbluray install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 378368, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-22 20:15:59 UTC (rev 378369)
@@ -0,0 +1,64 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.2.0
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url=https://www.videolan.org/developers/libbluray.html
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment=8
+)
+optdepends=('java-runtime=8: BD-J library')
+provides=(libbluray.so)
+source=(
+  
git+https://code.videolan.org/videolan/libbluray.git#tag=43059c7e3631703857358cff7666c6a11497da89
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+sha256sums=(
+  SKIP
+  SKIP
+)
+
+pkgver() {
+  cd libbluray
+
+  git describe --tags
+}
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+--prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-06-08 Thread Maxime Gauduin via arch-commits
Date: Saturday, June 8, 2019 @ 15:14:07
  Author: alucryd
Revision: 355396

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 355395, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  114 +
 1 file changed, 56 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-08 15:14:00 UTC (rev 355395)
+++ PKGBUILD2019-06-08 15:14:07 UTC (rev 355396)
@@ -1,58 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.1.1
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=(x86_64)
-url=https://www.videolan.org/developers/libbluray.html
-license=(LGPL2.1)
-depends=(
-  fontconfig
-  libfreetype.so
-  libxml2
-)
-makedepends=(
-  apache-ant
-  git
-  java-environment=8
-)
-optdepends=('java-runtime=8: BD-J library')
-provides=(libbluray.so)
-source=(
-  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
-  git+https://code.videolan.org/videolan/libudfread.git
-)
-sha256sums=(
-  SKIP
-  SKIP
-)
-
-prepare() {
-  cd libbluray
-
-  for submodule in contrib/libudfread; do
-git submodule init ${submodule}
-git config submodule.${submodule}.url ../${submodule#*/}
-git submodule update ${submodule}
-  done
-
-  autoreconf -fiv
-}
-
-build() {
-  cd libbluray
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C libbluray install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 355395, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-08 15:14:07 UTC (rev 355396)
@@ -0,0 +1,56 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.1.2
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url=https://www.videolan.org/developers/libbluray.html
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment=8
+)
+optdepends=('java-runtime=8: BD-J library')
+provides=(libbluray.so)
+source=(
+  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+sha256sums=('SKIP'
+'SKIP')
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-04-09 Thread Maxime Gauduin via arch-commits
Date: Tuesday, April 9, 2019 @ 10:20:33
  Author: alucryd
Revision: 350445

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 350444, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-09 10:20:24 UTC (rev 350444)
+++ PKGBUILD2019-04-09 10:20:33 UTC (rev 350445)
@@ -1,58 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.1.0
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=(x86_64)
-url='http://www.videolan.org/developers/libbluray.html'
-license=(LGPL2.1)
-depends=(
-  fontconfig
-  libfreetype.so
-  libxml2
-)
-makedepends=(
-  apache-ant
-  git
-  java-environment=8
-)
-optdepends=('java-runtime=8: BD-J library')
-provides=(libbluray.so)
-source=(
-  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
-  git+https://code.videolan.org/videolan/libudfread.git
-)
-sha256sums=(
-  SKIP
-  SKIP
-)
-
-prepare() {
-  cd libbluray
-
-  for submodule in contrib/libudfread; do
-git submodule init ${submodule}
-git config submodule.${submodule}.url ../${submodule#*/}
-git submodule update ${submodule}
-  done
-
-  autoreconf -fiv
-}
-
-build() {
-  cd libbluray
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  make DESTDIR="${pkgdir}" -C libbluray install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 350444, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-09 10:20:33 UTC (rev 350445)
@@ -0,0 +1,58 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.1.1
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url=https://www.videolan.org/developers/libbluray.html
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment=8
+)
+optdepends=('java-runtime=8: BD-J library')
+provides=(libbluray.so)
+source=(
+  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+sha256sums=(
+  SKIP
+  SKIP
+)
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:


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

2019-02-12 Thread Maxime Gauduin via arch-commits
Date: Tuesday, February 12, 2019 @ 20:09:53
  Author: alucryd
Revision: 346140

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 346139, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   94 +
 1 file changed, 58 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-12 20:09:44 UTC (rev 346139)
+++ PKGBUILD2019-02-12 20:09:53 UTC (rev 346140)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.0.2
-pkgrel=2
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('fontconfig' 'libxml2'
- 'libfreetype.so')
-makedepends=('apache-ant' 'java-environment=8')
-optdepends=('java-runtime=8: BD-J library')
-provides=('libbluray.so')
-source=("https://download.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2;)
-sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff')
-
-build() {
-  cd libbluray-${pkgver}
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  cd libbluray-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 346139, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-12 20:09:53 UTC (rev 346140)
@@ -0,0 +1,58 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.1.0
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=(x86_64)
+url='http://www.videolan.org/developers/libbluray.html'
+license=(LGPL2.1)
+depends=(
+  fontconfig
+  libfreetype.so
+  libxml2
+)
+makedepends=(
+  apache-ant
+  git
+  java-environment=8
+)
+optdepends=('java-runtime=8: BD-J library')
+provides=(libbluray.so)
+source=(
+  git+https://code.videolan.org/videolan/libbluray.git#tag=${pkgver}
+  git+https://code.videolan.org/videolan/libudfread.git
+)
+sha256sums=(
+  SKIP
+  SKIP
+)
+
+prepare() {
+  cd libbluray
+
+  for submodule in contrib/libudfread; do
+git submodule init ${submodule}
+git config submodule.${submodule}.url ../${submodule#*/}
+git submodule update ${submodule}
+  done
+
+  autoreconf -fiv
+}
+
+build() {
+  cd libbluray
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  make DESTDIR="${pkgdir}" -C libbluray install
+}
+
+# vim: ts=2 sw=2 et:


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

2018-08-22 Thread Maxime Gauduin via arch-commits
Date: Wednesday, August 22, 2018 @ 07:11:18
  Author: alucryd
Revision: 332782

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 332781, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   71 ++---
 1 file changed, 36 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-22 07:11:10 UTC (rev 332781)
+++ PKGBUILD2018-08-22 07:11:18 UTC (rev 332782)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.0.2
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('fontconfig' 'glibc' 'libfreetype.so' 'libxml2')
-makedepends=('apache-ant' 'java-environment=8')
-optdepends=('java-runtime=8: BD-J library')
-provides=('libbluray.so')
-source=("ftp://ftp.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2;)
-sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff')
-
-build() {
-  cd libbluray-${pkgver}
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  cd libbluray-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 332781, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-22 07:11:18 UTC (rev 332782)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.0.2
+pkgrel=2
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=('x86_64')
+url='http://www.videolan.org/developers/libbluray.html'
+license=('LGPL2.1')
+depends=('fontconfig' 'libxml2'
+ 'libfreetype.so')
+makedepends=('apache-ant' 'java-environment=8')
+optdepends=('java-runtime=8: BD-J library')
+provides=('libbluray.so')
+source=("https://download.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2;)
+sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff')
+
+build() {
+  cd libbluray-${pkgver}
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  cd libbluray-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


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

2018-03-18 Thread Jan de Groot via arch-commits
Date: Sunday, March 18, 2018 @ 22:34:36
  Author: jgc
Revision: 319606

archrelease: copy trunk to extra-x86_64

Added:
  libbluray/repos/extra-x86_64/PKGBUILD
(from rev 319605, libbluray/trunk/PKGBUILD)
Deleted:
  libbluray/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   70 ++---
 1 file changed, 35 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-18 22:32:22 UTC (rev 319605)
+++ PKGBUILD2018-03-18 22:34:36 UTC (rev 319606)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Ionut Biru 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Andrew Cook 
-
-pkgname=libbluray
-pkgver=1.0.1
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('i686' 'x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('fontconfig' 'glibc' 'libfreetype.so' 'libxml2')
-makedepends=('apache-ant')
-optdepends=('java-environment: BD-J library')
-provides=('libbluray.so')
-source=("ftp://ftp.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2;)
-sha256sums=('0f9f9a1db2f48cafc70ed2596ff3594b597e2027408f5f2be6191c245d67853a')
-
-build() {
-  cd libbluray-${pkgver}
-
-  ./configure \
---prefix='/usr'
-  make
-}
-
-package() {
-  cd libbluray-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 319605, 
libbluray/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-18 22:34:36 UTC (rev 319606)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Ionut Biru 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Andrew Cook 
+
+pkgname=libbluray
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=('x86_64')
+url='http://www.videolan.org/developers/libbluray.html'
+license=('LGPL2.1')
+depends=('fontconfig' 'glibc' 'libfreetype.so' 'libxml2')
+makedepends=('apache-ant' 'java-environment=8')
+optdepends=('java-runtime=8: BD-J library')
+provides=('libbluray.so')
+source=("ftp://ftp.videolan.org/pub/videolan/libbluray/${pkgver}/libbluray-${pkgver}.tar.bz2;)
+sha256sums=('6d9e7c4e416f664c330d9fa5a05ad79a3fb39b95adfc3fd6910cbed503b7aeff')
+
+build() {
+  cd libbluray-${pkgver}
+
+  ./configure \
+--prefix='/usr'
+  make
+}
+
+package() {
+  cd libbluray-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et: