public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/mpqc/, sci-chemistry/mpqc/files/
Date: Sun, 24 Jan 2016 09:55:17 +0000 (UTC)	[thread overview]
Message-ID: <1453629287.f9904c3ee7b9a0690a972f8f7eae415a4e871c0d.soap@gentoo> (raw)

commit:     f9904c3ee7b9a0690a972f8f7eae415a4e871c0d
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 09:52:13 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 09:54:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9904c3e

sci-chemistry/mpqc: Fix -Werror=format-security errors

Gentoo-Bug: 542278
Also update to EAPI=6.

Package-Manager: portage-2.2.27

 .../mpqc/files/mpqc-2.3.1-wformat-security.patch   |  71 ++++++++++++++
 sci-chemistry/mpqc/mpqc-2.3.1-r4.ebuild            | 106 +++++++++++++++++++++
 2 files changed, 177 insertions(+)

diff --git a/sci-chemistry/mpqc/files/mpqc-2.3.1-wformat-security.patch b/sci-chemistry/mpqc/files/mpqc-2.3.1-wformat-security.patch
new file mode 100644
index 0000000..7f25a92
--- /dev/null
+++ b/sci-chemistry/mpqc/files/mpqc-2.3.1-wformat-security.patch
@@ -0,0 +1,71 @@
+Fix -Werror=format-security errors
+https://bugs.gentoo.org/show_bug.cgi?id=542278
+
+--- mpqc-2.3.1/src/lib/chemistry/molecule/atominfo.cc
++++ mpqc-2.3.1/src/lib/chemistry/molecule/atominfo.cc
+@@ -493,7 +493,7 @@
+   if (iname != symbol_to_Z_.end()) return iname->second;
+ 
+   if (allow_exceptions) {
+-      ExEnv::err0() << sprintf("AtomInfo: invalid name: %s\n",name.c_str());
++      ExEnv::err0() << fprintf(stderr, "AtomInfo: invalid name: %s\n",name.c_str());
+       throw std::runtime_error("invalid atom name");
+     }
+ 
+--- mpqc-2.3.1/src/lib/chemistry/molecule/atominfo.h
++++ mpqc-2.3.1/src/lib/chemistry/molecule/atominfo.h
+@@ -49,8 +49,8 @@
+     struct atom
+     {
+       int Z;
+-      char *name;
+-      char *symbol;
++      const char *name;
++      const char *symbol;
+     };
+ 
+     static struct atom elements_[Nelement];
+--- mpqc-2.3.1/src/lib/chemistry/molecule/simple.cc
++++ mpqc-2.3.1/src/lib/chemistry/molecule/simple.cc
+@@ -214,7 +214,7 @@
+       os << scprintf(" %4d", atoms[i]);
+ 
+   if (mol.nonnull()) {
+-      char *separator = " ";
++      const char *separator = " ";
+       os << "  ";
+       for (i=0; i<(4-natoms()); i++) {
+           os << "   ";
+--- mpqc-2.3.1/src/lib/chemistry/qc/psi/psiexenv.cc
++++ mpqc-2.3.1/src/lib/chemistry/qc/psi/psiexenv.cc
+@@ -147,7 +147,7 @@
+   return 0;
+ }
+ 
+-int PsiExEnv::run_psi_module(char *module)
++int PsiExEnv::run_psi_module(const char *module)
+ {
+   int errcod;
+   char *module_cmd = new char[2*cwd_.size()+strlen(module)+psiprefix_.size()+fileprefix_.size()+stdout_.size()+stderr_.size()+40];
+--- mpqc-2.3.1/src/lib/chemistry/qc/psi/psiexenv.h
++++ mpqc-2.3.1/src/lib/chemistry/qc/psi/psiexenv.h
+@@ -57,7 +57,7 @@
+     /// Executes Psi input+driver
+     int run_psi();
+     /// Executes a Psi module
+-    int run_psi_module(char *);
++    int run_psi_module(const char *);
+ 
+     /// Returns current working directory
+     string get_cwd() const { return cwd_;};
+--- mpqc-2.3.1/src/lib/chemistry/qc/psi/psiwfn.cc
++++ mpqc-2.3.1/src/lib/chemistry/qc/psi/psiwfn.cc
+@@ -44,7 +44,7 @@
+     bytes = 2000000;
+   int bytes_str_len = (int)ceil(log10((long double)bytes));
+   memory_ = new char[bytes_str_len+5];
+-  sprintf(memory_,"(%ld B)",bytes);
++  sprintf(memory_,"(%d B)",bytes);
+ }
+ 
+ PsiWavefunction::~PsiWavefunction()

diff --git a/sci-chemistry/mpqc/mpqc-2.3.1-r4.ebuild b/sci-chemistry/mpqc/mpqc-2.3.1-r4.ebuild
new file mode 100644
index 0000000..1cf3fd5
--- /dev/null
+++ b/sci-chemistry/mpqc/mpqc-2.3.1-r4.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools toolchain-funcs
+
+DESCRIPTION="The Massively Parallel Quantum Chemistry Program"
+HOMEPAGE="http://www.mpqc.org/"
+SRC_URI="mirror://sourceforge/mpqc/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="doc mpi threads static-libs tk"
+
+RDEPEND="
+	virtual/blas
+	virtual/lapack
+	mpi? ( virtual/mpi[cxx] )
+	tk? ( dev-lang/tk:0 )"
+DEPEND="${RDEPEND}
+	dev-lang/perl
+	sys-devel/flex
+	sys-apps/sed
+	virtual/pkgconfig
+	doc? (
+		app-doc/doxygen
+		media-gfx/graphviz )"
+
+PATCHES=(
+	"${FILESDIR}/${P}-as-needed.patch"
+	"${FILESDIR}/${P}-respect-ldflags.patch"
+	"${FILESDIR}/${P}-test-failure-hack.patch"
+	"${FILESDIR}/${P}-blas.patch"
+	"${FILESDIR}/${P}-wformat-security.patch"
+)
+DOCS=(CHANGES CITATION README)
+
+src_prepare() {
+	# do not install tkmolrender if not requested
+	if ! use tk; then
+		sed \
+			-e "s:.*/bin/molrender/tkmolrender.*::" \
+			-e "s:.*\$(INSTALLBINOPT) tkmolrender.*::" \
+			-e "s:/bin/rm -f tkmolrender::" \
+			-i "./src/bin/molrender/Makefile" \
+			|| die "failed to disable tkmolrender"
+	fi
+	default
+	mv configure.{in,ac} || die
+	eautoreconf
+}
+
+src_configure() {
+	tc-export CC CXX
+	if use mpi; then
+		export CC=mpicc
+		export CXX=mpicxx
+	fi
+
+	econf \
+		$(use_enable threads) \
+		$(use_enable mpi parallel) \
+		$(use_enable static-libs static)
+
+	sed \
+		-e "s:^CFLAGS =.*$:CFLAGS=${CFLAGS}:" \
+		-e "s:^FFLAGS =.*$:FFLAGS=${FFLAGS:- -O2}:" \
+		-e "s:^CXXFLAGS =.*$:CXXFLAGS=${CXXFLAGS}:" \
+		-i lib/LocalMakefile || die
+}
+
+src_test() {
+	cd src/bin/mpqc/validate || die
+
+	# we'll only run the small test set, since the
+	# medium and large ones take >10h and >24h on my
+	# 1.8Ghz P4M
+	emake -j1 check1
+}
+
+src_install() {
+	emake installroot="${D}" install install_devel install_inc
+
+	# make extended docs
+	if use doc; then
+		cd doc || die
+		emake all
+		doman man/man1/* man/man3/*
+		dodoc -r html/
+	fi
+}
+
+pkg_postinst() {
+	echo
+	einfo "MPQC can be picky with regard to compilation flags."
+	einfo "If during mpqc runs you have trouble converging or "
+	einfo "experience oscillations during SCF interations, "
+	einfo "consider recompiling with less aggressive CFLAGS/CXXFLAGS."
+	einfo "Particularly, replacing -march=pentium4 by -march=pentium3"
+	einfo "might help if you encounter problems with correlation "
+	einfo "consistent basis sets."
+	echo
+}


             reply	other threads:[~2016-01-24  9:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-24  9:55 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-01-29  0:00 [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/mpqc/, sci-chemistry/mpqc/files/ David Seifert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1453629287.f9904c3ee7b9a0690a972f8f7eae415a4e871c0d.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox