public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2012-06-14 18:31 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2012-06-14 18:31 UTC (permalink / raw
  To: gentoo-commits

commit:     def8995a7d62680dbb42681c62ca7c8d2c0cb9e8
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 14 18:30:50 2012 +0000
Commit:     Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Thu Jun 14 18:30:50 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=def8995a

initial commit

(Portage version: 2.2.0_alpha110/git/Linux i686, unsigned Manifest commit)

---
 dev-lang/ispc/ChangeLog        |   10 +++++++++
 dev-lang/ispc/ispc-9999.ebuild |   44 ++++++++++++++++++++++++++++++++++++++++
 dev-lang/ispc/metadata.xml     |    8 +++++++
 3 files changed, 62 insertions(+), 0 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
new file mode 100644
index 0000000..d441c79
--- /dev/null
+++ b/dev-lang/ispc/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-lang/ispc
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*ispc-9999 (14 Jun 2012)
+
+  14 Jun 2012; Christoph Junghans <ottxor@gentoo.org> +ispc-9999.ebuild,
+  +metadata.xml:
+  initial commit
+

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
new file mode 100644
index 0000000..f45d860
--- /dev/null
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.2.2.ebuild,v 1.1 2012/06/14 17:31:34 ottxor Exp $
+
+EAPI=4
+
+inherit git-2 toolchain-funcs
+
+DESCRIPTION="Intel SPMD Program Compiler"
+HOMEPAGE="http://ispc.github.com/"
+SRC_URI=""
+
+EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+
+LICENSE="ispc"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="examples"
+
+RDEPEND="
+	>=sys-devel/clang-3.0
+	>=sys-devel/llvm-3.0
+	"
+DEPEND="
+	${RDEPEND}
+	sys-devel/bison
+	sys-devel/flex
+	"
+
+DOCS=( README.rst )
+
+src_compile() {
+	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
+}
+
+src_install() {
+	dobin ispc
+
+	if use examples; then
+		insinto "/usr/share/doc/${PF}/examples"
+		docompress -x "/usr/share/doc/${PF}/examples"
+		doins -r examples/*
+	fi
+}

diff --git a/dev-lang/ispc/metadata.xml b/dev-lang/ispc/metadata.xml
new file mode 100644
index 0000000..745b9e1
--- /dev/null
+++ b/dev-lang/ispc/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer>
+		<email>ottxor@gentoo.org</email>
+		<name>Christoph Junghans</name>
+	</maintainer>
+</pkgmetadata>



^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2012-06-17  2:39 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2012-06-17  2:39 UTC (permalink / raw
  To: gentoo-commits

commit:     c9c084567c4caa1456b2da668ff060deebab4ce7
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 02:39:11 2012 +0000
Commit:     Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Sun Jun 17 02:39:11 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c9c08456

fixed redundant license (bug #421401)

(Portage version: 2.2.0_alpha110/git/Linux i686, unsigned Manifest commit)

---
 dev-lang/ispc/ChangeLog        |    3 +++
 dev-lang/ispc/ispc-9999.ebuild |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index d441c79..04f5d93 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  17 Jun 2012; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  fixed redundant license (bug #421401)
+
 *ispc-9999 (14 Jun 2012)
 
   14 Jun 2012; Christoph Junghans <ottxor@gentoo.org> +ispc-9999.ebuild,

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index f45d860..3931052 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 EGIT_REPO_URI="git://github.com/ispc/ispc.git"
 
-LICENSE="ispc"
+LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
 KEYWORDS="~x86"
 IUSE="examples"



^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2012-06-18 22:04 Sebastien Fabbro
  0 siblings, 0 replies; 15+ messages in thread
From: Sebastien Fabbro @ 2012-06-18 22:04 UTC (permalink / raw
  To: gentoo-commits

commit:     6db0d7b1c08f2e79350416b33d60a5f5f2f37022
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 02:39:11 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 02:43:03 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6db0d7b1

fixed redundant license (bug #421401)

(Portage version: 2.2.0_alpha110/git/Linux i686, unsigned Manifest commit)

---
 dev-lang/ispc/ChangeLog        |    3 +++
 dev-lang/ispc/ispc-9999.ebuild |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index d441c79..04f5d93 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  17 Jun 2012; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  fixed redundant license (bug #421401)
+
 *ispc-9999 (14 Jun 2012)
 
   14 Jun 2012; Christoph Junghans <ottxor@gentoo.org> +ispc-9999.ebuild,

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index f45d860..3931052 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 EGIT_REPO_URI="git://github.com/ispc/ispc.git"
 
-LICENSE="ispc"
+LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
 KEYWORDS="~x86"
 IUSE="examples"



^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2012-08-26 18:32 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2012-08-26 18:32 UTC (permalink / raw
  To: gentoo-commits

commit:     f76906d097da4e564e3c0f7dd05753ff5c1a7a6c
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 26 18:32:39 2012 +0000
Commit:     Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Sun Aug 26 18:32:39 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f76906d0

sync with gx86

(Portage version: 2.2.0_alpha122/git/Linux i686, unsigned Manifest commit)

---
 dev-lang/ispc/ChangeLog        |    4 +++-
 dev-lang/ispc/ispc-9999.ebuild |   18 +++++++++++-------
 2 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index 04f5d93..81a6141 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  26 Aug 2012; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  sync with gx86
+
   17 Jun 2012; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   fixed redundant license (bug #421401)
 
@@ -10,4 +13,3 @@
   14 Jun 2012; Christoph Junghans <ottxor@gentoo.org> +ispc-9999.ebuild,
   +metadata.xml:
   initial commit
-

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index 3931052..f1c5130 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -1,20 +1,25 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.2.2.ebuild,v 1.1 2012/06/14 17:31:34 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $
 
 EAPI=4
 
-inherit git-2 toolchain-funcs
+inherit base toolchain-funcs
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"
-SRC_URI=""
 
-EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+if [[ ${PV} = *9999 ]]; then
+	inherit git-2
+	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+else
+	inherit vcs-snapshot
+	SRC_URI="https://github.com/${PN}/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+fi
 
 LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="examples"
 
 RDEPEND="
@@ -27,14 +32,13 @@ DEPEND="
 	sys-devel/flex
 	"
 
-DOCS=( README.rst )
-
 src_compile() {
 	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
 }
 
 src_install() {
 	dobin ispc
+	dodoc README.rst
 
 	if use examples; then
 		insinto "/usr/share/doc/${PF}/examples"


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2013-01-08  4:36 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2013-01-08  4:36 UTC (permalink / raw
  To: gentoo-commits

commit:     51824bb37562772d7a02adabda11528e4f091886
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Tue Jan  8 04:35:19 2013 +0000
Commit:     Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Tue Jan  8 04:36:35 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=51824bb3

fixed python dep

Package-Manager: portage-2.2.0_alpha149

---
 dev-lang/ispc/ChangeLog        |    5 ++++-
 dev-lang/ispc/ispc-9999.ebuild |   10 ++++++++--
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index 81a6141..e87b0c0 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for dev-lang/ispc
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  08 Jan 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  fixed python dep
+
   26 Aug 2012; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   sync with gx86
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index f1c5130..e65b5c1 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $
 
 EAPI=4
 
-inherit base toolchain-funcs
+PYTHON_DEPEND="2"
+
+inherit base toolchain-funcs python
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"
@@ -32,6 +34,10 @@ DEPEND="
 	sys-devel/flex
 	"
 
+pkg_setup() {
+	python_set_active_version 2
+}
+
 src_compile() {
 	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
 }


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2013-05-31 23:26 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2013-05-31 23:26 UTC (permalink / raw
  To: gentoo-commits

commit:     1cc55beacf5fcb9b047639e777af5a385eae852b
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Fri May 31 23:25:55 2013 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri May 31 23:26:53 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=1cc55bea

sync with gx86

Package-Manager: portage-2.2.0_alpha177

---
 dev-lang/ispc/ChangeLog        |  3 +++
 dev-lang/ispc/ispc-9999.ebuild | 13 ++++---------
 2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index e87b0c0..8c34eaf 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  31 May 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  sync with gx86
+
   08 Jan 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   fixed python dep
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index e65b5c1..e22c4ba 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -2,11 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $
 
-EAPI=4
+EAPI=5
 
-PYTHON_DEPEND="2"
+PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit base toolchain-funcs python
+inherit base toolchain-funcs python-any-r1
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"
@@ -15,8 +15,7 @@ if [[ ${PV} = *9999 ]]; then
 	inherit git-2
 	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
 else
-	inherit vcs-snapshot
-	SRC_URI="https://github.com/${PN}/${PN}/tarball/v${PV} -> ${P}.tar.gz"
+	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 fi
 
 LICENSE="BSD BSD-2 UoI-NCSA"
@@ -34,10 +33,6 @@ DEPEND="
 	sys-devel/flex
 	"
 
-pkg_setup() {
-	python_set_active_version 2
-}
-
 src_compile() {
 	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
 }


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2013-06-04 11:59 Justin Lecher
  0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2013-06-04 11:59 UTC (permalink / raw
  To: gentoo-commits

commit:     399413fd5c2943680f916a3c2cbd485f0d336d9a
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  4 11:54:02 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue Jun  4 11:54:02 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=399413fd

dev-lang/ispc: Fix for correct usage of new python eclasses

Package-Manager: portage-2.2.0_alpha177

---
 dev-lang/ispc/ChangeLog        | 3 +++
 dev-lang/ispc/ispc-9999.ebuild | 3 ++-
 dev-lang/ispc/metadata.xml     | 8 ++++----
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index 8c34eaf..e4df78d 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  04 Jun 2013; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild, metadata.xml:
+  Fix for correct usage of new python eclasses
+
   31 May 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   sync with gx86
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index e22c4ba..3483f10 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/ispc/ispc-1.3.0.ebuild,v 1.2 2012/07/20 19:58:21 ottxor Exp $
+# $Header: $
 
 EAPI=5
 
@@ -29,6 +29,7 @@ RDEPEND="
 	"
 DEPEND="
 	${RDEPEND}
+	${PYTHON_DEPS}
 	sys-devel/bison
 	sys-devel/flex
 	"

diff --git a/dev-lang/ispc/metadata.xml b/dev-lang/ispc/metadata.xml
index 745b9e1..06c3d15 100644
--- a/dev-lang/ispc/metadata.xml
+++ b/dev-lang/ispc/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer>
-		<email>ottxor@gentoo.org</email>
-		<name>Christoph Junghans</name>
-	</maintainer>
+  <maintainer>
+    <email>ottxor@gentoo.org</email>
+    <name>Christoph Junghans</name>
+  </maintainer>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
  2013-06-14 11:21 [gentoo-commits] proj/sci:fixing " Justin Lecher
@ 2013-06-14 11:21 ` Justin Lecher
  0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2013-06-14 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     17d657fd4acb43db7326eb0e0e1fbadfa3280c0c
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 14 11:06:24 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun 14 11:06:24 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=17d657fd

dev-lang/ispc: Drop KEYWORDS of live ebuilds

Package-Manager: portage-2.2.0_alpha179

---
 dev-lang/ispc/ChangeLog        | 3 +++
 dev-lang/ispc/ispc-9999.ebuild | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index e4df78d..dddbc8a 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  14 Jun 2013; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
+  Drop KEYWORDS of live ebuilds
+
   04 Jun 2013; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild, metadata.xml:
   Fix for correct usage of new python eclasses
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index 3483f10..3b6eac0 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -20,7 +20,7 @@ fi
 
 LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS=""
 IUSE="examples"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2013-06-26  0:29 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2013-06-26  0:29 UTC (permalink / raw
  To: gentoo-commits

commit:     15f3319d64c0fd71459ecd4107637732a9b8fe8a
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 26 00:29:11 2013 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Jun 26 00:29:11 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=15f3319d

sync with gx86

Package-Manager: portage-2.2.0_alpha185

---
 dev-lang/ispc/ChangeLog        | 3 +++
 dev-lang/ispc/ispc-9999.ebuild | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index dddbc8a..e7634ed 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  26 Jun 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  sync with gx86
+
   14 Jun 2013; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
   Drop KEYWORDS of live ebuilds
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index 3b6eac0..fa19e55 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -14,13 +14,14 @@ HOMEPAGE="http://ispc.github.com/"
 if [[ ${PV} = *9999 ]]; then
 	inherit git-2
 	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+	KEYWORDS=""
 else
 	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
-KEYWORDS=""
 IUSE="examples"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2014-01-06 17:41 Justin Lecher
  0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2014-01-06 17:41 UTC (permalink / raw
  To: gentoo-commits

commit:     4cfddb3234a6dd98e6d17896ee19f5d58817a28e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 17:23:15 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 17:23:15 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=4cfddb32

dev-lang/ispc: Punt base.eclass

Package-Manager: portage-2.2.8

---
 dev-lang/ispc/ChangeLog        | 5 ++++-
 dev-lang/ispc/ispc-9999.ebuild | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index e7634ed..32b0b18 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for dev-lang/ispc
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
+  Punt base.eclass
+
   26 Jun 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   sync with gx86
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index fa19e55..a0ee3b0 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit base toolchain-funcs python-any-r1
+inherit toolchain-funcs python-any-r1
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2014-01-06 19:27 Justin Lecher
  0 siblings, 0 replies; 15+ messages in thread
From: Justin Lecher @ 2014-01-06 19:27 UTC (permalink / raw
  To: gentoo-commits

commit:     66601918f54b9a870d8e436d77c4fdefd046f264
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 19:11:23 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 19:11:23 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=66601918

dev-lang/ispc: Switch from git-2 to git-r3

Package-Manager: portage-2.2.8

---
 dev-lang/ispc/ChangeLog        |  3 +++
 dev-lang/ispc/ispc-9999.ebuild | 14 ++++----------
 2 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index 32b0b18..6a9e82e 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -3,6 +3,9 @@
 # $Header: $
 
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
+  Switch from git-2 to git-r3
+
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
   Punt base.eclass
 
   26 Jun 2013; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index a0ee3b0..afb92c3 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -6,23 +6,17 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit toolchain-funcs python-any-r1
+inherit git-r3 toolchain-funcs python-any-r1
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"
-
-if [[ ${PV} = *9999 ]]; then
-	inherit git-2
-	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/ispc/ispc.git"
 
 LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
 IUSE="examples"
+KEYWORDS=""
 
 RDEPEND="
 	>=sys-devel/clang-3.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2014-05-12  2:17 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2014-05-12  2:17 UTC (permalink / raw
  To: gentoo-commits

commit:     8c6cdf75fa1e6e9aa4b84b18c978d1d908e650db
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Mon May 12 02:17:23 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon May 12 02:17:23 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8c6cdf75

sync with gx86

Package-Manager: portage-2.2.8-r1

---
 dev-lang/ispc/ChangeLog        |  3 +++
 dev-lang/ispc/ispc-9999.ebuild | 14 ++++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index 6a9e82e..e81a159 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 May 2014; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  sync with gx86
+
   06 Jan 2014; Justin Lecher <jlec@gentoo.org> ispc-9999.ebuild:
   Switch from git-2 to git-r3
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index afb92c3..c859a81 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -6,17 +6,23 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit git-r3 toolchain-funcs python-any-r1
+inherit toolchain-funcs python-any-r1
 
 DESCRIPTION="Intel SPMD Program Compiler"
 HOMEPAGE="http://ispc.github.com/"
-SRC_URI=""
-EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+
+if [[ ${PV} = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
+	KEYWORDS=""
+else
+	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
 
 LICENSE="BSD BSD-2 UoI-NCSA"
 SLOT="0"
 IUSE="examples"
-KEYWORDS=""
 
 RDEPEND="
 	>=sys-devel/clang-3.0


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2014-10-25  4:04 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2014-10-25  4:04 UTC (permalink / raw
  To: gentoo-commits

commit:     6cfe9770eed83a00a0dac37b6992ba31ac885f74
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 04:04:26 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 04:04:26 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6cfe9770

sync with gx86

Package-Manager: portage-2.2.8-r2

---
 dev-lang/ispc/ChangeLog        | 3 +++
 dev-lang/ispc/ispc-9999.ebuild | 1 +
 2 files changed, 4 insertions(+)

diff --git a/dev-lang/ispc/ChangeLog b/dev-lang/ispc/ChangeLog
index e81a159..529d48d 100644
--- a/dev-lang/ispc/ChangeLog
+++ b/dev-lang/ispc/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  25 Oct 2014; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
+  sync with gx86
+
   12 May 2014; Christoph Junghans <ottxor@gentoo.org> ispc-9999.ebuild:
   sync with gx86
 

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index c859a81..793182d 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -36,6 +36,7 @@ DEPEND="
 	"
 
 src_compile() {
+	sed -i '/^\t@/s/@//' Makefile || die #make all slient commands ("@") verbose
 	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
 }
 


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2016-05-30 20:14 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2016-05-30 20:14 UTC (permalink / raw
  To: gentoo-commits

commit:     62b5ec5f57ab5546d045c86370ffd784b763a611
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 20:14:26 2016 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon May 30 20:14:26 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=62b5ec5f

dev-lang/ispc: sync with gx86

Package-Manager: portage-2.2.28

 dev-lang/ispc/ispc-9999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
index 8783019..53edbc7 100644
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ b/dev-lang/ispc/ispc-9999.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
 inherit toolchain-funcs python-any-r1
 
 DESCRIPTION="Intel SPMD Program Compiler"
-HOMEPAGE="http://ispc.github.com/"
+HOMEPAGE="https://ispc.github.com/"
 
 if [[ ${PV} = *9999 ]]; then
 	inherit git-r3


^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/
@ 2016-07-13 15:31 Christoph Junghans
  0 siblings, 0 replies; 15+ messages in thread
From: Christoph Junghans @ 2016-07-13 15:31 UTC (permalink / raw
  To: gentoo-commits

commit:     683a38065d6ca0733397993160a0a2f814f565de
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 13 15:31:22 2016 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Jul 13 15:31:50 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=683a3806

dev-lang/ispc: moved to gx86

 dev-lang/ispc/ispc-9999.ebuild | 52 ------------------------------------------
 dev-lang/ispc/metadata.xml     | 11 ---------
 2 files changed, 63 deletions(-)

diff --git a/dev-lang/ispc/ispc-9999.ebuild b/dev-lang/ispc/ispc-9999.ebuild
deleted file mode 100644
index 53edbc7..0000000
--- a/dev-lang/ispc/ispc-9999.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit toolchain-funcs python-any-r1
-
-DESCRIPTION="Intel SPMD Program Compiler"
-HOMEPAGE="https://ispc.github.com/"
-
-if [[ ${PV} = *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="git://github.com/ispc/ispc.git"
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="BSD BSD-2 UoI-NCSA"
-SLOT="0"
-IUSE="examples"
-
-RDEPEND="
-	>=sys-devel/clang-3.0
-	>=sys-devel/llvm-3.0
-	"
-DEPEND="
-	${RDEPEND}
-	${PYTHON_DEPS}
-	sys-devel/bison
-	sys-devel/flex
-	"
-
-src_compile() {
-	sed -i '/^\t@/s/@//' Makefile || die #make all slient commands ("@") verbose
-	emake LDFLAGS="${LDFLAGS}" OPT="${CXXFLAGS}" CXX="$(tc-getCXX)" CPP="$(tc-getCPP)"
-}
-
-src_install() {
-	dobin ispc
-	dodoc README.rst
-
-	if use examples; then
-		insinto "/usr/share/doc/${PF}/examples"
-		docompress -x "/usr/share/doc/${PF}/examples"
-		doins -r examples/*
-	fi
-}

diff --git a/dev-lang/ispc/metadata.xml b/dev-lang/ispc/metadata.xml
deleted file mode 100644
index 2010b02..0000000
--- a/dev-lang/ispc/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-  <maintainer type="person">
-    <email>ottxor@gentoo.org</email>
-    <name>Christoph Junghans</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">ispc/ispc</remote-id>
-  </upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2016-07-13 15:32 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-26  0:29 [gentoo-commits] proj/sci:master commit in: dev-lang/ispc/ Christoph Junghans
  -- strict thread matches above, loose matches on Subject: below --
2016-07-13 15:31 Christoph Junghans
2016-05-30 20:14 Christoph Junghans
2014-10-25  4:04 Christoph Junghans
2014-05-12  2:17 Christoph Junghans
2014-01-06 19:27 Justin Lecher
2014-01-06 17:41 Justin Lecher
2013-06-14 11:21 [gentoo-commits] proj/sci:fixing " Justin Lecher
2013-06-14 11:21 ` [gentoo-commits] proj/sci:master " Justin Lecher
2013-06-04 11:59 Justin Lecher
2013-05-31 23:26 Christoph Junghans
2013-01-08  4:36 Christoph Junghans
2012-08-26 18:32 Christoph Junghans
2012-06-18 22:04 Sebastien Fabbro
2012-06-17  2:39 Christoph Junghans
2012-06-14 18:31 Christoph Junghans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox