public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/coinor-utils: metadata.xml coinor-utils-2.9.11.ebuild ChangeLog Manifest
@ 2014-01-14 17:51 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; only message in thread
From: Sebastien Fabbro (bicatali) @ 2014-01-14 17:51 UTC (permalink / raw
  To: gentoo-commits

bicatali    14/01/14 17:51:59

  Added:                metadata.xml coinor-utils-2.9.11.ebuild ChangeLog
                        Manifest
  Log:
  Initial import in main tree
  
  (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)

Revision  Changes    Path
1.1                  sci-libs/coinor-utils/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>sci</herd>
<longdescription lang="en">
  CoinUtils (Coin-or Utilities) is a collection of classes that are
  generally useful to COmputational INfrastructure for Operations
  Research (COIN-OR) projects. These include vector, matrix, mps file
  reading classes.
</longdescription>
<use>
  <flag name='glpk'>Enable GNU Linear Programming Kit
  <pkg>sci-mathematics/glpk</pkg> support</flag>
</use>
</pkgmetadata>



1.1                  sci-libs/coinor-utils/coinor-utils-2.9.11.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/coinor-utils-2.9.11.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/coinor-utils-2.9.11.ebuild?rev=1.1&content-type=text/plain

Index: coinor-utils-2.9.11.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-utils/coinor-utils-2.9.11.ebuild,v 1.1 2014/01/14 17:51:59 bicatali Exp $

EAPI=5

inherit autotools-utils multilib toolchain-funcs

MYPN=CoinUtils

DESCRIPTION="COIN-OR Matrix, Vector and other utility classes"
HOMEPAGE="https://projects.coin-or.org/CoinUtils/"
SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"

LICENSE="EPL-1.0"
SLOT="0/3"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 doc glpk blas lapack static-libs test zlib"

RDEPEND="
	sys-libs/readline
	bzip2? ( app-arch/bzip2 )
	blas? ( virtual/blas )
	glpk? ( sci-mathematics/glpk:= )
	lapack? ( virtual/lapack )
	zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	doc? ( app-doc/doxygen[dot] )
	test? ( sci-libs/coinor-sample )"

S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"

src_prepare() {
	# as-needed fix
	# hack to avoid eautoreconf (coinor has its own weird autotools)
	sed -i \
		-e 's:\(libCoinUtils_la_LIBADD.*=\).*:\1 @COINUTILSLIB_LIBS@:' \
		src/Makefile.in || die
}

src_configure() {
	local myeconfargs=(
		$(use_enable zlib)
		$(use_enable bzip2 bzlib)
		$(use_with doc dot)
	)
	if use blas; then
		myeconfargs+=( --with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)" )
	else
		myeconfargs+=( --without-blas )
	fi
	if use glpk; then
		myeconfargs+=(
			--with-glpk-incdir="${EPREFIX}"/usr/include
			--with-glpk-lib=-lglpk
		)
	else
		myeconfargs+=( --without-glpk )
	fi
	if use lapack; then
		myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )
	else
		myeconfargs+=( --without-lapack )
	fi
	PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig \
		autotools-utils_src_configure
}

src_compile() {
	autotools-utils_src_compile all $(use doc && echo doxydoc)
}

src_test() {
	pushd "${BUILD_DIR}" > /dev/null || die
	emake test
	popd > /dev/null || die
}

src_install() {
	use doc && HTML_DOC=("${BUILD_DIR}/doxydocs/html/")
	autotools-utils_src_install
	# already installed
	rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
}



1.1                  sci-libs/coinor-utils/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for sci-libs/coinor-utils
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-utils/ChangeLog,v 1.1 2014/01/14 17:51:59 bicatali Exp $

*coinor-utils-2.9.11 (14 Jan 2014)

  14 Jan 2014; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.9.11.ebuild, +metadata.xml:
  Initial import in main tree

*coinor-utils-2.9.10 (07 Dec 2013)

  07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.9.10.ebuild, -coinor-utils-2.9.3.ebuild:
  sci-libs/coinor-utils: Version bump

*coinor-utils-2.9.3 (17 Jul 2013)

  17 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.9.3.ebuild, -coinor-utils-2.9.1.ebuild:
  sci-libs/coinor-utils: Version bump

*coinor-utils-2.9.1 (03 Jul 2013)

  03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.9.1.ebuild, -coinor-utils-2.9.0.ebuild:
  sci-libs/coinor-utils: Version bump

*coinor-utils-2.9.0 (26 May 2013)

  26 May 2013; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.9.0.ebuild, -coinor-utils-2.8.8.ebuild:
  sci-libs/coinor-utils: Version bump

*coinor-utils-2.8.8 (29 Jan 2013)

  29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.8.8.ebuild, -coinor-utils-2.8.6.ebuild:
  sci-libs/coinor-utils: Version bump

*coinor-utils-2.8.6 (16 Jul 2012)

  16 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org>
  +coinor-utils-2.8.6.ebuild, +metadata.xml:
  sci-libs/coinor-utils: Initial import



1.1                  sci-libs/coinor-utils/Manifest

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/Manifest?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/coinor-utils/Manifest?rev=1.1&content-type=text/plain

Index: Manifest
===================================================================
DIST CoinUtils-2.9.11.tgz 1740411 SHA256 9c2d9d8f8cb0e249bf3f050afeb02a1a95ad382f55ae98b59d8f7b9ab75cc80b SHA512 3cbbce47cda4d5f63338644853601bf0a3dd9b9388e71a7aea7fedd51dfc007134359e5f12f24d8f6135d86b77a88a95bcb88249b1ba880eb3cd9cf41d039424 WHIRLPOOL 8a2d2b2eea7c11d38f10449ac13bc9c70e1ac6e01469e2d4014d1206cbe48681d949509ec6cc0074e6e603f45152ead6145b6b19e2d2d6c5bf02b572f2174015
EBUILD coinor-utils-2.9.11.ebuild 2033 SHA256 d01210f947e11de6658404c8b95383000cef7e457e135cd2e6960fe351219365 SHA512 58875e550820fcf5daf783919bec4d20219e1649472daff30d4fc9db69c42bdd651493e7835bd0fd6848642905eb4f28ae5c0be7c2086a044212676c7c02d7d8 WHIRLPOOL c7e5145f670e29780f3974d591ebc6e97d2fd6e5e4cc5fd4bd070bea835e8770234e9e0319684db127755d7d4b1fe35d356ca14279a7f10e2f114f9fb017453f
MISC ChangeLog 1402 SHA256 b70f278e756d97b467b6ec63be65177686f74cd415e8e53ca9e19ec3b5f065ed SHA512 b17ae45521ec37ef61fd5cf1a75b9a1318e71eed8f666f0d4d26b60ecf7b9fed08a39ef92a1a6323af724cbf81a297dd22d01f37f8079bded915e7b0ffc5e7ad WHIRLPOOL d152fb6e574f906f99954c1e1ea9ef6992218b56605d1cac404f3155eaba9b6f068d974d6aeb7485ae888ecd5e8743c3f28270ea6d8ec218013ec62965500c90
MISC metadata.xml 542 SHA256 ccb5306312576ccb7dc85789733b26ce863d1c77d0295c8347973a4ba21b2ca2 SHA512 fbfbd8820e8d1fab34c5d1317bc2754a01d4dd9dad9158979b8024682aa80af0e0dbb0ef649632c5f7be7b9f6d3c782c06513b7cb59a39119f92abca3eb26f5e WHIRLPOOL f018d5bec9caeac06f06b72fa1973cb16adddf1ecfab722096bd0876b5c4e211c2277cf33462188bebf40b497a09ec13e3461e4fa9fdde07a4b08628b1b2d2ad





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-01-14 17:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-14 17:51 [gentoo-commits] gentoo-x86 commit in sci-libs/coinor-utils: metadata.xml coinor-utils-2.9.11.ebuild ChangeLog Manifest 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