[arch-commits] Commit in libcrossguid/repos (4 files)

2017-09-07 Thread Ike Devolder
Date: Thursday, September 7, 2017 @ 18:36:14
  Author: idevolder
Revision: 256109

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

Added:
  libcrossguid/repos/community-i686/PKGBUILD
(from rev 256108, libcrossguid/trunk/PKGBUILD)
  libcrossguid/repos/community-x86_64/PKGBUILD
(from rev 256108, libcrossguid/trunk/PKGBUILD)
Deleted:
  libcrossguid/repos/community-i686/PKGBUILD
  libcrossguid/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   70 
 community-i686/PKGBUILD   |   41 -
 community-x86_64/PKGBUILD |   41 -
 3 files changed, 70 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-07 18:35:23 UTC (rev 256108)
+++ community-i686/PKGBUILD 2017-09-07 18:36:14 UTC (rev 256109)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=fef89a4
-pkgver=20160907.fef89a4
-pkgrel=2
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 256108, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-07 18:36:14 UTC (rev 256109)
@@ -0,0 +1,35 @@
+# Maintainer: BlackEagle 
+# Contributer: graysky 
+# Contributer: Cedric Girard 
+
+pkgname=libcrossguid
+epoch=1
+pkgver=0.2.2
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('cmake')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/graeme-hill/crossguid/archive/v$pkgver.tar.gz;)
+sha512sums=('49a707f830b32ba136bd52e72dda191a7d29acee9795df54f225bb269853cc123390c01875dd1da7cbaebd5bb7001988d6f9758dcffa9171b5f2961f576682ca')
+
+build() {
+cd "crossguid-$pkgver"
+
+cmake .
+make
+}
+
+check(){
+cd "crossguid-$pkgver"
+./xgtest
+}
+
+package() {
+cd "crossguid-$pkgver"
+install -D -m644 libxg.a "${pkgdir}/usr/lib/libxg.a"
+install -D -m644 Guid.hpp "${pkgdir}/usr/include/Guid.hpp"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-07 18:35:23 UTC (rev 256108)
+++ community-x86_64/PKGBUILD   2017-09-07 18:36:14 UTC (rev 256109)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=fef89a4
-pkgver=20160907.fef89a4
-pkgrel=2
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 256108, 
libcrossguid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-09-07 18:36:14 UTC (rev 256109)
@@ -0,0 

[arch-commits] Commit in libcrossguid/repos (4 files)

2017-07-10 Thread Jelle van der Waa
Date: Monday, July 10, 2017 @ 17:52:42
  Author: jelle
Revision: 243762

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

Added:
  libcrossguid/repos/community-i686/PKGBUILD
(from rev 243761, libcrossguid/trunk/PKGBUILD)
  libcrossguid/repos/community-x86_64/PKGBUILD
(from rev 243761, libcrossguid/trunk/PKGBUILD)
Deleted:
  libcrossguid/repos/community-i686/PKGBUILD
  libcrossguid/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 community-i686/PKGBUILD   |   41 --
 community-x86_64/PKGBUILD |   41 --
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-10 17:52:31 UTC (rev 243761)
+++ community-i686/PKGBUILD 2017-07-10 17:52:42 UTC (rev 243762)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=fef89a4
-pkgver=20160907.fef89a4
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 243761, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-10 17:52:42 UTC (rev 243762)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=fef89a4
+pkgver=20160907.fef89a4
+pkgrel=2
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-10 17:52:31 UTC (rev 243761)
+++ community-x86_64/PKGBUILD   2017-07-10 17:52:42 UTC (rev 243762)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=fef89a4
-pkgver=20160907.fef89a4
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 243761, 
libcrossguid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   

[arch-commits] Commit in libcrossguid/repos (4 files)

2016-09-12 Thread Ike Devolder
Date: Monday, September 12, 2016 @ 07:23:28
  Author: idevolder
Revision: 189183

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

Added:
  libcrossguid/repos/community-i686/PKGBUILD
(from rev 189182, libcrossguid/trunk/PKGBUILD)
  libcrossguid/repos/community-x86_64/PKGBUILD
(from rev 189182, libcrossguid/trunk/PKGBUILD)
Deleted:
  libcrossguid/repos/community-i686/PKGBUILD
  libcrossguid/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 community-i686/PKGBUILD   |   41 --
 community-x86_64/PKGBUILD |   41 --
 3 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-09-12 07:23:15 UTC (rev 189182)
+++ community-i686/PKGBUILD 2016-09-12 07:23:28 UTC (rev 189183)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=8f399e8
-pkgver=20150803.$_commit
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 189182, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-09-12 07:23:28 UTC (rev 189183)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=fef89a4
+pkgver=20160907.fef89a4
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-09-12 07:23:15 UTC (rev 189182)
+++ community-x86_64/PKGBUILD   2016-09-12 07:23:28 UTC (rev 189183)
@@ -1,41 +0,0 @@
-# Maintainer: BlackEagle 
-
-pkgname=libcrossguid
-_gitname=libcrossguid
-_commit=8f399e8
-pkgver=20150803.$_commit
-pkgrel=1
-pkgdesc="Lightweight cross platform C++ GUID/UUID library"
-arch=('i686' 'x86_64')
-url="https://github.com/graeme-hill/crossguid;
-license=('MIT')
-makedepends=('git')
-provides=('libcrossguid')
-conflicts=('libcrossguid')
-source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
-md5sums=('SKIP')
-
-build() {
-cd libcrossguid
-
-g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
-ar rvs libcrossguid.a guid.o
-
-g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
-g++ -c testmain.cpp -o testmain.o $CXXFLAGS
-g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
-chmod +x test
-}
-
-check(){
-cd libcrossguid
-./test
-}
-
-package() {
-cd libcrossguid
-install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
-install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
-install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 189182, 
libcrossguid/trunk/PKGBUILD)
===
--- 

[arch-commits] Commit in libcrossguid/repos (4 files)

2016-02-23 Thread Ike Devolder
Date: Tuesday, February 23, 2016 @ 20:34:44
  Author: idevolder
Revision: 163225

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

Added:
  libcrossguid/repos/community-i686/
  libcrossguid/repos/community-i686/PKGBUILD
(from rev 163224, libcrossguid/trunk/PKGBUILD)
  libcrossguid/repos/community-x86_64/
  libcrossguid/repos/community-x86_64/PKGBUILD
(from rev 163224, libcrossguid/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   41 +
 community-x86_64/PKGBUILD |   41 +
 2 files changed, 82 insertions(+)

Copied: libcrossguid/repos/community-i686/PKGBUILD (from rev 163224, 
libcrossguid/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-02-23 19:34:44 UTC (rev 163225)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+

Copied: libcrossguid/repos/community-x86_64/PKGBUILD (from rev 163224, 
libcrossguid/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2016-02-23 19:34:44 UTC (rev 163225)
@@ -0,0 +1,41 @@
+# Maintainer: BlackEagle 
+
+pkgname=libcrossguid
+_gitname=libcrossguid
+_commit=8f399e8
+pkgver=20150803.$_commit
+pkgrel=1
+pkgdesc="Lightweight cross platform C++ GUID/UUID library"
+arch=('i686' 'x86_64')
+url="https://github.com/graeme-hill/crossguid;
+license=('MIT')
+makedepends=('git')
+provides=('libcrossguid')
+conflicts=('libcrossguid')
+source=("$_gitname::git+https://github.com/graeme-hill/crossguid.git#commit=$_commit;)
+md5sums=('SKIP')
+
+build() {
+cd libcrossguid
+
+g++ -c guid.cpp -o guid.o $CXXFLAGS -std=c++11 -DGUID_LIBUUID
+ar rvs libcrossguid.a guid.o
+
+g++ -c test.cpp -o test.o $CXXFLAGS  -std=c++11
+g++ -c testmain.cpp -o testmain.o $CXXFLAGS
+g++ test.o guid.o testmain.o -o test $CXXFLAGS -luuid
+chmod +x test
+}
+
+check(){
+cd libcrossguid
+./test
+}
+
+package() {
+cd libcrossguid
+install -D -m644 libcrossguid.a "${pkgdir}/usr/lib/libcrossguid.a"
+install -D -m644 guid.h "${pkgdir}/usr/include/guid.h"
+install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}
+