* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2012-10-24 14:48 Justin Lecher (jlec)
0 siblings, 0 replies; 9+ messages in thread
From: Justin Lecher (jlec) @ 2012-10-24 14:48 UTC (permalink / raw
To: gentoo-commits
jlec 12/10/24 14:48:55
Modified: inchi-1.04.ebuild ChangeLog
Log:
sci-libs/inchi: Imported bug fix for #439440 (Add USE=static-libs), kindly prepared by Reinis Danne
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Revision Changes Path
1.2 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.1&r2=1.2
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- inchi-1.04.ebuild 4 Mar 2012 13:22:18 -0000 1.1
+++ inchi-1.04.ebuild 24 Oct 2012 14:48:55 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.1 2012/03/04 13:22:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.2 2012/10/24 14:48:55 jlec Exp $
EAPI=4
@@ -15,7 +15,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc"
+IUSE="doc static-libs"
DEPEND="app-arch/unzip"
RDEPEND=""
@@ -23,25 +23,39 @@
S="${WORKDIR}"/INCHI-1-API
src_prepare() {
- epatch "${FILESDIR}"/${PN}-1.03-shared.patch
+ epatch \
+ "${FILESDIR}"/${PN}-1.03-shared.patch \
+ "${FILESDIR}"/${PN}-1.04-static.patch
+ tc-export AR RANLIB
}
src_compile() {
+ local dir common_opts
+ common_opts=(
+ C_COMPILER=$(tc-getCC)
+ CPP_COMPILER=$(tc-getCXX)
+ LINKER="$(tc-getCXX) ${LDFLAGS}"
+ SHARED_LINK="$(tc-getCC) ${LDFLAGS} -shared"
+ C_COMPILER_OPTIONS="\${P_INCL} -ansi -DCOMPILE_ANSI_ONLY ${CFLAGS} -c "
+ CPP_COMPILER_OPTIONS="\${P_INCL} -D_LIB -ansi ${CXXFLAGS} -frtti -c "
+ C_OPTIONS="${CFLAGS} -fPIC -c "
+ LINKER_OPTIONS="${LDFLAGS}"
+ CREATE_MAIN=
+ ISLINUX=1
+ )
for dir in INCHI/gcc/inchi-1 INCHI_API/gcc_so_makefile; do
pushd ${dir} > /dev/null
emake \
- C_COMPILER=$(tc-getCC) \
- CPP_COMPILER=$(tc-getCXX) \
- LINKER="$(tc-getCXX) ${LDFLAGS}" \
- SHARED_LINK="$(tc-getCC) ${LDFLAGS} -shared" \
- C_COMPILER_OPTIONS="\${P_INCL} -ansi -DCOMPILE_ANSI_ONLY ${CFLAGS} -c " \
- CPP_COMPILER_OPTIONS="\${P_INCL} -D_LIB -ansi ${CXXFLAGS} -frtti -c " \
- C_OPTIONS="${CFLAGS} -fPIC -c " \
- LINKER_OPTIONS="${LDFLAGS}" \
- CREATE_MAIN= \
- ISLINUX=1
+ "${common_opts[@]}"
popd
done
+ if use static-libs ; then
+ pushd INCHI_API/gcc_so_makefile > /dev/null
+ emake libinchi.a \
+ "${common_opts[@]}" \
+ STATIC=1
+ popd
+ fi
}
src_install() {
@@ -51,11 +65,11 @@
docinto doc
dodoc *.pdf readme.txt
fi
- cd "${S}/INCHI/gcc/inchi-1"
- dobin inchi-1
+ dobin "${S}"/INCHI/gcc/inchi-1/inchi-1
cd "${S}/INCHI_API/gcc_so_makefile/result"
rm *gz
- dolib.so lib*
+ dolib.so lib*so*
+ use static-libs && dolib.a lib*a
insinto /usr/include
doins ../../inchi_main/inchi_api.h
}
1.3 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.2&r2=1.3
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 4 Mar 2012 13:22:18 -0000 1.2
+++ ChangeLog 24 Oct 2012 14:48:55 -0000 1.3
@@ -1,6 +1,11 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.2 2012/03/04 13:22:18 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.3 2012/10/24 14:48:55 jlec Exp $
+
+ 24 Oct 2012; Justin Lecher <jlec@gentoo.org> inchi-1.04.ebuild,
+ +files/inchi-1.04-static.patch:
+ Imported bug fix for #439440 (Add USE=static-libs), kindly prepared by Reinis
+ Danne
*inchi-1.04 (04 Mar 2012)
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2012-12-11 17:46 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-11 17:46 UTC (permalink / raw
To: gentoo-commits
ago 12/12/11 17:46:53
Modified: inchi-1.04.ebuild ChangeLog
Log:
Add ~ppc64, wrt bug #360573
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.3 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.2&r2=1.3
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- inchi-1.04.ebuild 24 Oct 2012 14:48:55 -0000 1.2
+++ inchi-1.04.ebuild 11 Dec 2012 17:46:53 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.2 2012/10/24 14:48:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.3 2012/12/11 17:46:53 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.4 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 24 Oct 2012 14:48:55 -0000 1.3
+++ ChangeLog 11 Dec 2012 17:46:53 -0000 1.4
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.3 2012/10/24 14:48:55 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.4 2012/12/11 17:46:53 ago Exp $
+
+ 11 Dec 2012; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Add ~ppc64, wrt bug #360573
24 Oct 2012; Justin Lecher <jlec@gentoo.org> inchi-1.04.ebuild,
+files/inchi-1.04-static.patch:
@@ -18,4 +21,3 @@
26 Mar 2011; Justin Lecher <jlec@gentoo.org> +inchi-1.03.ebuild,
+files/inchi-1.03-shared.patch, +metadata.xml:
New addition, mainly written by rei4dan
-
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2012-12-11 17:47 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-11 17:47 UTC (permalink / raw
To: gentoo-commits
ago 12/12/11 17:47:40
Modified: inchi-1.04.ebuild ChangeLog
Log:
Add ~ppc, wrt bug #360573
(Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)
Revision Changes Path
1.4 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.3&r2=1.4
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- inchi-1.04.ebuild 11 Dec 2012 17:46:53 -0000 1.3
+++ inchi-1.04.ebuild 11 Dec 2012 17:47:40 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.3 2012/12/11 17:46:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.4 2012/12/11 17:47:40 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.5 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 11 Dec 2012 17:46:53 -0000 1.4
+++ ChangeLog 11 Dec 2012 17:47:40 -0000 1.5
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.4 2012/12/11 17:46:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.5 2012/12/11 17:47:40 ago Exp $
+
+ 11 Dec 2012; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Add ~ppc, wrt bug #360573
11 Dec 2012; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Add ~ppc64, wrt bug #360573
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2013-02-20 19:42 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20 19:42 UTC (permalink / raw
To: gentoo-commits
ago 13/02/20 19:42:07
Modified: inchi-1.04.ebuild ChangeLog
Log:
Add ~arm, wrt bug #455960
(Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)
Revision Changes Path
1.5 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.4&r2=1.5
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- inchi-1.04.ebuild 11 Dec 2012 17:47:40 -0000 1.4
+++ inchi-1.04.ebuild 20 Feb 2013 19:42:07 -0000 1.5
@@ -1,6 +1,6 @@
-# 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/sci-libs/inchi/inchi-1.04.ebuild,v 1.4 2012/12/11 17:47:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.5 2013/02/20 19:42:07 ago Exp $
EAPI=4
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.6 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 11 Dec 2012 17:47:40 -0000 1.5
+++ ChangeLog 20 Feb 2013 19:42:07 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.5 2012/12/11 17:47:40 ago Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.6 2013/02/20 19:42:07 ago Exp $
+
+ 20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Add ~arm, wrt bug #455960
11 Dec 2012; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Add ~ppc, wrt bug #360573
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2015-01-09 13:49 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-09 13:49 UTC (permalink / raw
To: gentoo-commits
ago 15/01/09 13:49:28
Modified: inchi-1.04.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #534610
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.7 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.6&r2=1.7
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- inchi-1.04.ebuild 4 Jan 2015 13:37:37 -0000 1.6
+++ inchi-1.04.ebuild 9 Jan 2015 13:49:28 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.6 2015/01/04 13:37:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.7 2015/01/09 13:49:28 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.8 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 4 Jan 2015 13:37:37 -0000 1.7
+++ ChangeLog 9 Jan 2015 13:49:28 -0000 1.8
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.7 2015/01/04 13:37:37 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.8 2015/01/09 13:49:28 ago Exp $
+
+ 09 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Stable for amd64, wrt bug #534610
04 Jan 2015; Justin Lecher <jlec@gentoo.org> -inchi-1.03.ebuild,
inchi-1.04.ebuild, metadata.xml:
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2015-01-17 13:59 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-17 13:59 UTC (permalink / raw
To: gentoo-commits
ago 15/01/17 13:59:33
Modified: inchi-1.04.ebuild ChangeLog
Log:
Stable for ppc, wrt bug #534610
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)
Revision Changes Path
1.8 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.7&r2=1.8
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- inchi-1.04.ebuild 9 Jan 2015 13:49:28 -0000 1.7
+++ inchi-1.04.ebuild 17 Jan 2015 13:59:33 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.7 2015/01/09 13:49:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.8 2015/01/17 13:59:33 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.9 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 9 Jan 2015 13:49:28 -0000 1.8
+++ ChangeLog 17 Jan 2015 13:59:33 -0000 1.9
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.8 2015/01/09 13:49:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.9 2015/01/17 13:59:33 ago Exp $
+
+ 17 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Stable for ppc, wrt bug #534610
09 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Stable for amd64, wrt bug #534610
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2015-01-18 8:46 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-18 8:46 UTC (permalink / raw
To: gentoo-commits
ago 15/01/18 08:46:33
Modified: inchi-1.04.ebuild ChangeLog
Log:
Stable for ppc64, wrt bug #534610
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.9 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.8&r2=1.9
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- inchi-1.04.ebuild 17 Jan 2015 13:59:33 -0000 1.8
+++ inchi-1.04.ebuild 18 Jan 2015 08:46:33 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.8 2015/01/17 13:59:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.9 2015/01/18 08:46:33 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.10 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.9&r2=1.10
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog 17 Jan 2015 13:59:33 -0000 1.9
+++ ChangeLog 18 Jan 2015 08:46:33 -0000 1.10
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.9 2015/01/17 13:59:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.10 2015/01/18 08:46:33 ago Exp $
+
+ 18 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Stable for ppc64, wrt bug #534610
17 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Stable for ppc, wrt bug #534610
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2015-01-26 10:34 Agostino Sarubbo (ago)
0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-01-26 10:34 UTC (permalink / raw
To: gentoo-commits
ago 15/01/26 10:34:22
Modified: inchi-1.04.ebuild ChangeLog
Log:
Stable for x86, wrt bug #534610
(Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.10 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.9&r2=1.10
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- inchi-1.04.ebuild 18 Jan 2015 08:46:33 -0000 1.9
+++ inchi-1.04.ebuild 26 Jan 2015 10:34:22 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.9 2015/01/18 08:46:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.10 2015/01/26 10:34:22 ago Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.11 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 18 Jan 2015 08:46:33 -0000 1.10
+++ ChangeLog 26 Jan 2015 10:34:22 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.10 2015/01/18 08:46:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.11 2015/01/26 10:34:22 ago Exp $
+
+ 26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
+ Stable for x86, wrt bug #534610
18 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Stable for ppc64, wrt bug #534610
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog
@ 2015-05-30 15:38 Mikle Kolyada (zlogene)
0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada (zlogene) @ 2015-05-30 15:38 UTC (permalink / raw
To: gentoo-commits
zlogene 15/05/30 15:38:38
Modified: inchi-1.04.ebuild ChangeLog
Log:
arm stable wrt bug #534610
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xC42EB5D6)
Revision Changes Path
1.11 sci-libs/inchi/inchi-1.04.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild?r1=1.10&r2=1.11
Index: inchi-1.04.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- inchi-1.04.ebuild 26 Jan 2015 10:34:22 -0000 1.10
+++ inchi-1.04.ebuild 30 May 2015 15:38:38 -0000 1.11
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.10 2015/01/26 10:34:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/inchi-1.04.ebuild,v 1.11 2015/05/30 15:38:38 zlogene Exp $
EAPI=5
@@ -14,7 +14,7 @@
LICENSE="IUPAC-InChi"
SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="doc static-libs"
DEPEND="app-arch/unzip"
1.12 sci-libs/inchi/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/inchi/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 26 Jan 2015 10:34:22 -0000 1.11
+++ ChangeLog 30 May 2015 15:38:38 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for sci-libs/inchi
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.11 2015/01/26 10:34:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/inchi/ChangeLog,v 1.12 2015/05/30 15:38:38 zlogene Exp $
+
+ 30 May 2015; Mikle Kolyada <zlogene@gentoo.org> inchi-1.04.ebuild:
+ arm stable wrt bug #534610
26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> inchi-1.04.ebuild:
Stable for x86, wrt bug #534610
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-05-30 15:38 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-30 15:38 [gentoo-commits] gentoo-x86 commit in sci-libs/inchi: inchi-1.04.ebuild ChangeLog Mikle Kolyada (zlogene)
-- strict thread matches above, loose matches on Subject: below --
2015-01-26 10:34 Agostino Sarubbo (ago)
2015-01-18 8:46 Agostino Sarubbo (ago)
2015-01-17 13:59 Agostino Sarubbo (ago)
2015-01-09 13:49 Agostino Sarubbo (ago)
2013-02-20 19:42 Agostino Sarubbo (ago)
2012-12-11 17:47 Agostino Sarubbo (ago)
2012-12-11 17:46 Agostino Sarubbo (ago)
2012-10-24 14:48 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox