[arch-commits] Commit in x264/repos (4 files)
Maxime Gauduin
alucryd at archlinux.org
Sun Oct 2 14:28:27 UTC 2016
Date: Sunday, October 2, 2016 @ 14:28:26
Author: alucryd
Revision: 277556
archrelease: copy trunk to extra-i686, extra-x86_64
Added:
x264/repos/extra-i686/PKGBUILD
(from rev 277555, x264/trunk/PKGBUILD)
x264/repos/extra-x86_64/PKGBUILD
(from rev 277555, x264/trunk/PKGBUILD)
Deleted:
x264/repos/extra-i686/PKGBUILD
x264/repos/extra-x86_64/PKGBUILD
-----------------------+
/PKGBUILD | 168 ++++++++++++++++++++++++++++++++++++++++++++++++
extra-i686/PKGBUILD | 84 ------------------------
extra-x86_64/PKGBUILD | 84 ------------------------
3 files changed, 168 insertions(+), 168 deletions(-)
Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2016-10-02 14:28:11 UTC (rev 277555)
+++ extra-i686/PKGBUILD 2016-10-02 14:28:26 UTC (rev 277556)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Paul Mattal <paul at archlinux.org>
-
-pkgname=('x264' 'libx264' 'libx264-10bit')
-pkgver=148.20160613
-pkgrel=2
-epoch=2
-arch=('i686' 'x86_64')
-url='http://www.videolan.org/developers/x264.html'
-license=('GPL')
-depends=('glibc')
-makedepends=('yasm' 'git' 'ffmpeg' 'l-smash')
-_commit='a5e06b9a435852f0125de4ecb198ad47340483fa'
-source=("git://git.videolan.org/x264.git#commit=${_commit}")
-sha256sums=('SKIP')
-
-pkgver() {
- cd ${pkgbase}
-
- local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
- local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
-
- echo ${_ver}.${_date}
-}
-
-prepare() {
- cp -r ${pkgbase} ${pkgbase}-10bit
-}
-
-build() {
- cd ${pkgbase}
-
- ./configure \
- --prefix='/usr' \
- --enable-shared \
- --enable-pic
- make
-
- cd ../${pkgbase}-10bit
-
- ./configure \
- --prefix='/usr' \
- --enable-shared \
- --enable-pic \
- --bit-depth='10'
- make
-}
-
-package_x264() {
- pkgdesc='CLI tools for encoding H264/AVC video streams'
- depends+=('libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
- provides=('x264-10bit')
- conflicts=('x264-10bit')
- replaces=('x264-10bit')
-
- make -C ${pkgbase} DESTDIR="${pkgdir}" install-cli
- install -m 755 ${pkgbase}-10bit/x264 "${pkgdir}"/usr/bin/x264-10bit
-}
-
-package_libx264() {
- pkgdesc='Library for encoding H264/AVC video streams'
- provides=('libx264.so' 'x264-dev')
- conflicts=('x264-dev')
- replaces=('x264-dev')
-
- install -dm 755 "${pkgdir}"/usr/lib
- make -C ${pkgbase} DESTDIR="${pkgdir}" install-lib-shared
-}
-
-package_libx264-10bit() {
- pkgdesc='Library for encoding H264/AVC video streams. 10bit-depth.'
- provides=('libx264.so' 'libx264' 'x264-dev')
- conflicts=('libx264' 'x264-dev')
-
- install -dm 755 "${pkgdir}"/usr/lib
- make -C ${pkgbase}-10bit DESTDIR="${pkgdir}" install-lib-shared
-}
-
-# vim: ts=2 sw=2 et:
Copied: x264/repos/extra-i686/PKGBUILD (from rev 277555, x264/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2016-10-02 14:28:26 UTC (rev 277556)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Paul Mattal <paul at archlinux.org>
+
+pkgname=('x264' 'libx264' 'libx264-10bit')
+pkgver=148.20160920
+pkgrel=1
+epoch=2
+arch=('i686' 'x86_64')
+url='http://www.videolan.org/developers/x264.html'
+license=('GPL')
+depends=('glibc')
+makedepends=('yasm' 'git' 'ffmpeg' 'l-smash')
+_commit='86b71982e131eaa70125f8d0e725fcade9c4c677'
+source=("git://git.videolan.org/x264.git#commit=${_commit}")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd ${pkgbase}
+
+ local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
+ local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
+
+ echo ${_ver}.${_date}
+}
+
+prepare() {
+ cp -r ${pkgbase} ${pkgbase}-10bit
+}
+
+build() {
+ cd ${pkgbase}
+
+ ./configure \
+ --prefix='/usr' \
+ --enable-shared \
+ --enable-pic
+ make
+
+ cd ../${pkgbase}-10bit
+
+ ./configure \
+ --prefix='/usr' \
+ --enable-shared \
+ --enable-pic \
+ --bit-depth='10'
+ make
+}
+
+package_x264() {
+ pkgdesc='CLI tools for encoding H264/AVC video streams'
+ depends+=('libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
+ 'libswscale.so')
+ provides=('x264-10bit')
+ conflicts=('x264-10bit')
+ replaces=('x264-10bit')
+
+ make -C ${pkgbase} DESTDIR="${pkgdir}" install-cli
+ install -m 755 ${pkgbase}-10bit/x264 "${pkgdir}"/usr/bin/x264-10bit
+}
+
+package_libx264() {
+ pkgdesc='Library for encoding H264/AVC video streams'
+ provides=('libx264.so' 'x264-dev')
+ conflicts=('x264-dev')
+ replaces=('x264-dev')
+
+ install -dm 755 "${pkgdir}"/usr/lib
+ make -C ${pkgbase} DESTDIR="${pkgdir}" install-lib-shared
+}
+
+package_libx264-10bit() {
+ pkgdesc='Library for encoding H264/AVC video streams. 10bit-depth.'
+ provides=('libx264.so' 'libx264' 'x264-dev')
+ conflicts=('libx264' 'x264-dev')
+
+ install -dm 755 "${pkgdir}"/usr/lib
+ make -C ${pkgbase}-10bit DESTDIR="${pkgdir}" install-lib-shared
+}
+
+# vim: ts=2 sw=2 et:
Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD 2016-10-02 14:28:11 UTC (rev 277555)
+++ extra-x86_64/PKGBUILD 2016-10-02 14:28:26 UTC (rev 277556)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Paul Mattal <paul at archlinux.org>
-
-pkgname=('x264' 'libx264' 'libx264-10bit')
-pkgver=148.20160613
-pkgrel=2
-epoch=2
-arch=('i686' 'x86_64')
-url='http://www.videolan.org/developers/x264.html'
-license=('GPL')
-depends=('glibc')
-makedepends=('yasm' 'git' 'ffmpeg' 'l-smash')
-_commit='a5e06b9a435852f0125de4ecb198ad47340483fa'
-source=("git://git.videolan.org/x264.git#commit=${_commit}")
-sha256sums=('SKIP')
-
-pkgver() {
- cd ${pkgbase}
-
- local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
- local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
-
- echo ${_ver}.${_date}
-}
-
-prepare() {
- cp -r ${pkgbase} ${pkgbase}-10bit
-}
-
-build() {
- cd ${pkgbase}
-
- ./configure \
- --prefix='/usr' \
- --enable-shared \
- --enable-pic
- make
-
- cd ../${pkgbase}-10bit
-
- ./configure \
- --prefix='/usr' \
- --enable-shared \
- --enable-pic \
- --bit-depth='10'
- make
-}
-
-package_x264() {
- pkgdesc='CLI tools for encoding H264/AVC video streams'
- depends+=('libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
- 'libswscale.so')
- provides=('x264-10bit')
- conflicts=('x264-10bit')
- replaces=('x264-10bit')
-
- make -C ${pkgbase} DESTDIR="${pkgdir}" install-cli
- install -m 755 ${pkgbase}-10bit/x264 "${pkgdir}"/usr/bin/x264-10bit
-}
-
-package_libx264() {
- pkgdesc='Library for encoding H264/AVC video streams'
- provides=('libx264.so' 'x264-dev')
- conflicts=('x264-dev')
- replaces=('x264-dev')
-
- install -dm 755 "${pkgdir}"/usr/lib
- make -C ${pkgbase} DESTDIR="${pkgdir}" install-lib-shared
-}
-
-package_libx264-10bit() {
- pkgdesc='Library for encoding H264/AVC video streams. 10bit-depth.'
- provides=('libx264.so' 'libx264' 'x264-dev')
- conflicts=('libx264' 'x264-dev')
-
- install -dm 755 "${pkgdir}"/usr/lib
- make -C ${pkgbase}-10bit DESTDIR="${pkgdir}" install-lib-shared
-}
-
-# vim: ts=2 sw=2 et:
Copied: x264/repos/extra-x86_64/PKGBUILD (from rev 277555, x264/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2016-10-02 14:28:26 UTC (rev 277556)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Paul Mattal <paul at archlinux.org>
+
+pkgname=('x264' 'libx264' 'libx264-10bit')
+pkgver=148.20160920
+pkgrel=1
+epoch=2
+arch=('i686' 'x86_64')
+url='http://www.videolan.org/developers/x264.html'
+license=('GPL')
+depends=('glibc')
+makedepends=('yasm' 'git' 'ffmpeg' 'l-smash')
+_commit='86b71982e131eaa70125f8d0e725fcade9c4c677'
+source=("git://git.videolan.org/x264.git#commit=${_commit}")
+sha256sums=('SKIP')
+
+pkgver() {
+ cd ${pkgbase}
+
+ local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
+ local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
+
+ echo ${_ver}.${_date}
+}
+
+prepare() {
+ cp -r ${pkgbase} ${pkgbase}-10bit
+}
+
+build() {
+ cd ${pkgbase}
+
+ ./configure \
+ --prefix='/usr' \
+ --enable-shared \
+ --enable-pic
+ make
+
+ cd ../${pkgbase}-10bit
+
+ ./configure \
+ --prefix='/usr' \
+ --enable-shared \
+ --enable-pic \
+ --bit-depth='10'
+ make
+}
+
+package_x264() {
+ pkgdesc='CLI tools for encoding H264/AVC video streams'
+ depends+=('libavcodec.so' 'libavformat.so' 'libavutil.so' 'liblsmash.so'
+ 'libswscale.so')
+ provides=('x264-10bit')
+ conflicts=('x264-10bit')
+ replaces=('x264-10bit')
+
+ make -C ${pkgbase} DESTDIR="${pkgdir}" install-cli
+ install -m 755 ${pkgbase}-10bit/x264 "${pkgdir}"/usr/bin/x264-10bit
+}
+
+package_libx264() {
+ pkgdesc='Library for encoding H264/AVC video streams'
+ provides=('libx264.so' 'x264-dev')
+ conflicts=('x264-dev')
+ replaces=('x264-dev')
+
+ install -dm 755 "${pkgdir}"/usr/lib
+ make -C ${pkgbase} DESTDIR="${pkgdir}" install-lib-shared
+}
+
+package_libx264-10bit() {
+ pkgdesc='Library for encoding H264/AVC video streams. 10bit-depth.'
+ provides=('libx264.so' 'libx264' 'x264-dev')
+ conflicts=('libx264' 'x264-dev')
+
+ install -dm 755 "${pkgdir}"/usr/lib
+ make -C ${pkgbase}-10bit DESTDIR="${pkgdir}" install-lib-shared
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list