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

Felix Yan felixonmars at archlinux.org
Fri Aug 12 13:39:41 UTC 2016


    Date: Friday, August 12, 2016 @ 13:39:40
  Author: felixonmars
Revision: 273630

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

Added:
  libglvnd/repos/extra-i686/LICENSE
    (from rev 273629, libglvnd/trunk/LICENSE)
  libglvnd/repos/extra-i686/PKGBUILD
    (from rev 273629, libglvnd/trunk/PKGBUILD)
  libglvnd/repos/extra-x86_64/LICENSE
    (from rev 273629, libglvnd/trunk/LICENSE)
  libglvnd/repos/extra-x86_64/PKGBUILD
    (from rev 273629, libglvnd/trunk/PKGBUILD)
Deleted:
  libglvnd/repos/extra-i686/LICENSE
  libglvnd/repos/extra-i686/PKGBUILD
  libglvnd/repos/extra-x86_64/LICENSE
  libglvnd/repos/extra-x86_64/PKGBUILD

-----------------------+
 /LICENSE              |   52 +++++++++++++++++++++++++++++++++
 /PKGBUILD             |   74 ++++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/LICENSE    |   26 ----------------
 extra-i686/PKGBUILD   |   38 ------------------------
 extra-x86_64/LICENSE  |   26 ----------------
 extra-x86_64/PKGBUILD |   38 ------------------------
 6 files changed, 126 insertions(+), 128 deletions(-)

Deleted: extra-i686/LICENSE
===================================================================
--- extra-i686/LICENSE	2016-08-12 13:38:36 UTC (rev 273629)
+++ extra-i686/LICENSE	2016-08-12 13:39:40 UTC (rev 273630)
@@ -1,26 +0,0 @@
-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/extra-i686/LICENSE (from rev 273629, libglvnd/trunk/LICENSE)
===================================================================
--- extra-i686/LICENSE	                        (rev 0)
+++ extra-i686/LICENSE	2016-08-12 13:39:40 UTC (rev 273630)
@@ -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

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-08-12 13:38:36 UTC (rev 273629)
+++ extra-i686/PKGBUILD	2016-08-12 13:39:40 UTC (rev 273630)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=libglvnd
-pkgver=0.1.0.20160411
-_commit=5a69af6
-pkgrel=1
-pkgdesc="The GL Vendor-Neutral Dispatch library"
-arch=('i686' 'x86_64')
-url="https://github.com/NVIDIA/libglvnd"
-license=('custom:BSD-like')
-depends=('libxext')
-makedepends=('xorg-server-devel' 'git' 'python2')
-source=("git+https://github.com/NVIDIA/libglvnd.git#commit=$_commit"
-        LICENSE)
-sha1sums=('SKIP'
-          'c88e07f333fcf8dcdbef370b85372b4d88ad8a66')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-
-  # For compatibility with older nvidia drivers for bumblebee
-  # Symlinks to /usr/lib will be in nvidia-libgl
-  mkdir "$pkgdir/usr/lib/nvidia"
-  for _lib in libGL.so libGLESv1_CM.so libGLESv2.so; do
-    mv "$pkgdir"/usr/lib/$_lib* "$pkgdir"/usr/lib/nvidia/
-  done
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libglvnd/repos/extra-i686/PKGBUILD (from rev 273629, libglvnd/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-08-12 13:39:40 UTC (rev 273630)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=libglvnd
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('i686' 'x86_64')
+url="https://github.com/NVIDIA/libglvnd"
+license=('custom:BSD-like')
+depends=('libxext')
+makedepends=('xorg-server-devel' 'git' 'python2')
+source=("git+https://github.com/NVIDIA/libglvnd.git#tag=v$pkgver"
+        LICENSE)
+sha1sums=('SKIP'
+          'c88e07f333fcf8dcdbef370b85372b4d88ad8a66')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+
+  # For compatibility with older nvidia drivers for bumblebee
+  # Symlinks to /usr/lib will be in nvidia-libgl
+  mkdir "$pkgdir/usr/lib/nvidia"
+  for _lib in libGL.so libGLESv1_CM.so libGLESv2.so; do
+    mv "$pkgdir"/usr/lib/$_lib* "$pkgdir"/usr/lib/nvidia/
+  done
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/LICENSE
===================================================================
--- extra-x86_64/LICENSE	2016-08-12 13:38:36 UTC (rev 273629)
+++ extra-x86_64/LICENSE	2016-08-12 13:39:40 UTC (rev 273630)
@@ -1,26 +0,0 @@
-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/extra-x86_64/LICENSE (from rev 273629, libglvnd/trunk/LICENSE)
===================================================================
--- extra-x86_64/LICENSE	                        (rev 0)
+++ extra-x86_64/LICENSE	2016-08-12 13:39:40 UTC (rev 273630)
@@ -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

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-08-12 13:38:36 UTC (rev 273629)
+++ extra-x86_64/PKGBUILD	2016-08-12 13:39:40 UTC (rev 273630)
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=libglvnd
-pkgver=0.1.0.20160411
-_commit=5a69af6
-pkgrel=1
-pkgdesc="The GL Vendor-Neutral Dispatch library"
-arch=('i686' 'x86_64')
-url="https://github.com/NVIDIA/libglvnd"
-license=('custom:BSD-like')
-depends=('libxext')
-makedepends=('xorg-server-devel' 'git' 'python2')
-source=("git+https://github.com/NVIDIA/libglvnd.git#commit=$_commit"
-        LICENSE)
-sha1sums=('SKIP'
-          'c88e07f333fcf8dcdbef370b85372b4d88ad8a66')
-
-build() {
-  cd $pkgname
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-
-  # For compatibility with older nvidia drivers for bumblebee
-  # Symlinks to /usr/lib will be in nvidia-libgl
-  mkdir "$pkgdir/usr/lib/nvidia"
-  for _lib in libGL.so libGLESv1_CM.so libGLESv2.so; do
-    mv "$pkgdir"/usr/lib/$_lib* "$pkgdir"/usr/lib/nvidia/
-  done
-
-  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: libglvnd/repos/extra-x86_64/PKGBUILD (from rev 273629, libglvnd/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-08-12 13:39:40 UTC (rev 273630)
@@ -0,0 +1,37 @@
+# $Id: PKGBUILD 249779 2015-10-27 00:47:25Z eric $
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=libglvnd
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="The GL Vendor-Neutral Dispatch library"
+arch=('i686' 'x86_64')
+url="https://github.com/NVIDIA/libglvnd"
+license=('custom:BSD-like')
+depends=('libxext')
+makedepends=('xorg-server-devel' 'git' 'python2')
+source=("git+https://github.com/NVIDIA/libglvnd.git#tag=v$pkgver"
+        LICENSE)
+sha1sums=('SKIP'
+          'c88e07f333fcf8dcdbef370b85372b4d88ad8a66')
+
+build() {
+  cd $pkgname
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+
+  # For compatibility with older nvidia drivers for bumblebee
+  # Symlinks to /usr/lib will be in nvidia-libgl
+  mkdir "$pkgdir/usr/lib/nvidia"
+  for _lib in libGL.so libGLESv1_CM.so libGLESv2.so; do
+    mv "$pkgdir"/usr/lib/$_lib* "$pkgdir"/usr/lib/nvidia/
+  done
+
+  install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}



More information about the arch-commits mailing list