[arch-commits] Commit in libglvnd/repos (6 files)

Laurent Carlier lcarlier at archlinux.org
Mon Feb 13 09:22:38 UTC 2017


    Date: Monday, February 13, 2017 @ 09:22:38
  Author: lcarlier
Revision: 288855

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

Added:
  libglvnd/repos/staging-i686/
  libglvnd/repos/staging-i686/LICENSE
    (from rev 288854, libglvnd/trunk/LICENSE)
  libglvnd/repos/staging-i686/PKGBUILD
    (from rev 288854, libglvnd/trunk/PKGBUILD)
  libglvnd/repos/staging-x86_64/
  libglvnd/repos/staging-x86_64/LICENSE
    (from rev 288854, libglvnd/trunk/LICENSE)
  libglvnd/repos/staging-x86_64/PKGBUILD
    (from rev 288854, libglvnd/trunk/PKGBUILD)

-------------------------+
 staging-i686/LICENSE    |   26 ++++++++++++++++++++++++++
 staging-i686/PKGBUILD   |   33 +++++++++++++++++++++++++++++++++
 staging-x86_64/LICENSE  |   26 ++++++++++++++++++++++++++
 staging-x86_64/PKGBUILD |   33 +++++++++++++++++++++++++++++++++
 4 files changed, 118 insertions(+)

Copied: libglvnd/repos/staging-i686/LICENSE (from rev 288854, libglvnd/trunk/LICENSE)
===================================================================
--- staging-i686/LICENSE	                        (rev 0)
+++ staging-i686/LICENSE	2017-02-13 09:22:38 UTC (rev 288855)
@@ -0,0 +1,26 @@
+Copyright (c) 2013, NVIDIA CORPORATION.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and/or associated documentation files (the
+"Materials"), to deal in the Materials without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Materials, and to
+permit persons to whom the Materials are furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+unaltered in all copies or substantial portions of the Materials.
+Any additions, deletions, or changes to the original source files
+must be clearly indicated in accompanying documentation.
+
+If only executable code is distributed, then the accompanying
+documentation must state that "this software is based in part on the
+work of the Khronos Group."
+
+THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Copied: libglvnd/repos/staging-i686/PKGBUILD (from rev 288854, libglvnd/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD	                        (rev 0)
+++ staging-i686/PKGBUILD	2017-02-13 09:22:38 UTC (rev 288855)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=libglvnd
+pkgver=0.2.999+g4ba53457
+_commit=4ba5345742d6c98b528ac28fb7127006d2cc3f75
+pkgrel=0.1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('i686' 'x86_64')
+url="https://github.com/NVIDIA/libglvnd"
+license=('custom:BSD-like')
+makedepends=('libxext' 'libx11' 'glproto' 'git' 'python')
+provides=('libgl' 'libegl' 'libgles')
+#source=("git+https://github.com/NVIDIA/libglvnd.git#tag=v$pkgver"
+source=("git+https://github.com/NVIDIA/libglvnd.git#commit=$_commit"
+        LICENSE)
+sha256sums=('SKIP'
+            '1a99f7487849c41fc3520e0af3dfcf28a0df05e78956d9ec58c2c52b1f20a77d')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends=('libxext') # 'opengl-driver')
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: libglvnd/repos/staging-x86_64/LICENSE (from rev 288854, libglvnd/trunk/LICENSE)
===================================================================
--- staging-x86_64/LICENSE	                        (rev 0)
+++ staging-x86_64/LICENSE	2017-02-13 09:22:38 UTC (rev 288855)
@@ -0,0 +1,26 @@
+Copyright (c) 2013, NVIDIA CORPORATION.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and/or associated documentation files (the
+"Materials"), to deal in the Materials without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Materials, and to
+permit persons to whom the Materials are furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be included
+unaltered in all copies or substantial portions of the Materials.
+Any additions, deletions, or changes to the original source files
+must be clearly indicated in accompanying documentation.
+
+If only executable code is distributed, then the accompanying
+documentation must state that "this software is based in part on the
+work of the Khronos Group."
+
+THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
\ No newline at end of file

Copied: libglvnd/repos/staging-x86_64/PKGBUILD (from rev 288854, libglvnd/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2017-02-13 09:22:38 UTC (rev 288855)
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=libglvnd
+pkgver=0.2.999+g4ba53457
+_commit=4ba5345742d6c98b528ac28fb7127006d2cc3f75
+pkgrel=0.1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('i686' 'x86_64')
+url="https://github.com/NVIDIA/libglvnd"
+license=('custom:BSD-like')
+makedepends=('libxext' 'libx11' 'glproto' 'git' 'python')
+provides=('libgl' 'libegl' 'libgles')
+#source=("git+https://github.com/NVIDIA/libglvnd.git#tag=v$pkgver"
+source=("git+https://github.com/NVIDIA/libglvnd.git#commit=$_commit"
+        LICENSE)
+sha256sums=('SKIP'
+            '1a99f7487849c41fc3520e0af3dfcf28a0df05e78956d9ec58c2c52b1f20a77d')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  depends=('libxext') # 'opengl-driver')
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list