public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/torch: torch-3.1.ebuild ChangeLog
@ 2010-02-13 20:33 Justin Lecher (jlec)
  0 siblings, 0 replies; 2+ messages in thread
From: Justin Lecher (jlec) @ 2010-02-13 20:33 UTC (permalink / raw
  To: gentoo-commits

jlec        10/02/13 20:33:42

  Modified:             ChangeLog
  Added:                torch-3.1.ebuild
  Log:
  Version Bump per 184500
  (Portage version: 2.2_rc62/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  sci-libs/torch/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	23 Sep 2009 20:09:57 -0000	1.6
+++ ChangeLog	13 Feb 2010 20:33:42 -0000	1.7
@@ -1,6 +1,11 @@
 # ChangeLog for sci-libs/torch
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.6 2009/09/23 20:09:57 patrick Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.7 2010/02/13 20:33:42 jlec Exp $
+
+*torch-3.1 (13 Feb 2010)
+
+  13 Feb 2010; Justin Lecher (jlec) <jlec@gentoo.org> +torch-3.1.ebuild:
+  Version Bump per 184500
 
   23 Sep 2009; Patrick Lauer <patrick@gentoo.org> torch-3.ebuild:
   Remove virtual/libc



1.1                  sci-libs/torch/torch-3.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/torch-3.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/torch-3.1.ebuild?rev=1.1&content-type=text/plain

Index: torch-3.1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.1.ebuild,v 1.1 2010/02/13 20:33:42 jlec Exp $

inherit toolchain-funcs multilib

DESCRIPTION="machine-learning library, written in simple C++"
HOMEPAGE="http://www.torch.ch/"
SRC_URI="http://www.torch.ch/archives/Torch${PV%.1}src.tgz
	doc? ( http://www.torch.ch/archives/Torch3doc.tgz )"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug doc examples"

S=${WORKDIR}/Torch${PV%.1}

TORCH_PACKAGES="convolutions datasets decoder distributions gradients kernels matrix nonparametrics speech"

src_compile() {
	local shalldebug="OPT"
	use debug && shalldebug="DBG"
	# -malign-double makes no sense on a 64-bit arch
	use amd64 || extraflags="-malign-double"
	cp config/Makefile_options_Linux .
	sed -i \
		-e "s:^PACKAGES.*:PACKAGES = ${TORCH_PACKAGES}:" \
		-e "s:^DEBUG.*:DEBUG = ${shalldebug}:" \
		-e "s:^CFLAGS_OPT_FLOAT.*:CFLAGS_OPT_FLOAT = ${CFLAGS} -ffast-math ${extraflags}:" \
		Makefile_options_Linux

	emake -j1 depend || die
	emake || die "emake failed"
}

src_install() {
	dolib lib/*/*.a || die
	insinto /usr/include/torch
	for directory in core ${torch_packages}; do
		doins ${directory}/*.h || die
	done

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples || die
	fi

	if use doc; then
		cd "${WORKDIR}"/docs
		doins *.pdf || die
		dohtml -r manual/. || die
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in sci-libs/torch: torch-3.1.ebuild ChangeLog
@ 2010-03-15  4:48 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2010-03-15  4:48 UTC (permalink / raw
  To: gentoo-commits

bicatali    10/03/15 04:48:18

  Modified:             torch-3.1.ebuild ChangeLog
  Log:
  Now install headers, thanks Joshua Rich for the patch, bug #309225
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sci-libs/torch/torch-3.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/torch-3.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/torch-3.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/torch-3.1.ebuild?r1=1.1&r2=1.2

Index: torch-3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- torch-3.1.ebuild	13 Feb 2010 20:33:42 -0000	1.1
+++ torch-3.1.ebuild	15 Mar 2010 04:48:17 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.1.ebuild,v 1.1 2010/02/13 20:33:42 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/torch-3.1.ebuild,v 1.2 2010/03/15 04:48:17 bicatali Exp $
 
 inherit toolchain-funcs multilib
 
@@ -37,7 +37,7 @@
 src_install() {
 	dolib lib/*/*.a || die
 	insinto /usr/include/torch
-	for directory in core ${torch_packages}; do
+	for directory in core ${TORCH_PACKAGES}; do
 		doins ${directory}/*.h || die
 	done
 



1.8                  sci-libs/torch/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/torch/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	13 Feb 2010 20:33:42 -0000	1.7
+++ ChangeLog	15 Mar 2010 04:48:17 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for sci-libs/torch
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.7 2010/02/13 20:33:42 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/torch/ChangeLog,v 1.8 2010/03/15 04:48:17 bicatali Exp $
+
+  15 Mar 2010; Sébastien Fabbro <bicatali@gentoo.org> torch-3.1.ebuild:
+  Now install headers, thanks Joshua Rich for the patch, bug #309225
 
 *torch-3.1 (13 Feb 2010)
 






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

end of thread, other threads:[~2010-03-15  4:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-13 20:33 [gentoo-commits] gentoo-x86 commit in sci-libs/torch: torch-3.1.ebuild ChangeLog Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-15  4:48 Sebastien Fabbro (bicatali)

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