* [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog
@ 2012-01-27 15:49 Thomas Sachau (tommy)
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Sachau (tommy) @ 2012-01-27 15:49 UTC (permalink / raw
To: gentoo-commits
tommy 12/01/27 15:49:02
Modified: ChangeLog
Added: polarssl-1.1.1.ebuild
Log:
Version bump
(Portage version: 2.2.0_alpha84-r1/cvs/Linux x86_64)
Revision Changes Path
1.24 net-libs/polarssl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 19 Nov 2011 14:45:31 -0000 1.23
+++ ChangeLog 27 Jan 2012 15:49:02 -0000 1.24
@@ -1,6 +1,12 @@
# ChangeLog for net-libs/polarssl
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.23 2011/11/19 14:45:31 tommy Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.24 2012/01/27 15:49:02 tommy Exp $
+
+*polarssl-1.1.1 (27 Jan 2012)
+
+ 27 Jan 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
+ +polarssl-1.1.1.ebuild:
+ Version bump
*polarssl-1.0.0 (19 Nov 2011)
1.1 net-libs/polarssl/polarssl-1.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.1&content-type=text/plain
Index: polarssl-1.1.1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.1 2012/01/27 15:49:02 tommy Exp $
EAPI=2
inherit eutils
DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://polarssl.org/"
SRC_URI="http://polarssl.org/code/download/${P}-gpl.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="examples sse2"
src_prepare() {
# sed -i '/.SILENT:/d' Makefile */Makefile
epatch "${FILESDIR}"/${PN}-1.0.0-makefile.patch
cd library
if use sse2 ; then
sed -i '15iCFLAGS += -DHAVE_SSE2 -fPIC' Makefile
else
sed -i '15iCFLAGS += -fPIC' Makefile
fi
}
src_compile() {
emake -C library libpolarssl.so || die "emake failed"
if use examples ; then
emake -C programs all || die "emake failed"
fi
ln -s libpolarssl.so library/libpolarssl.so.0
}
src_test() {
cd programs
emake test/selftest || die "emake selftest failed"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" ./test/selftest || die "selftest failed"
cd "${S}"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:../library" emake check || die
}
src_install() {
insinto /usr/include/polarssl
doins include/polarssl/*.h || die
dolib.so library/libpolarssl.so || die
ln -s libpolarssl.so "${D}"usr/$(get_libdir)/libpolarssl.so.0
dolib.a library/libpolarssl.a || die
if use examples ; then
for p in programs/*/* ; do
if [[ -x "${p}" && ! -d "${p}" ]] ; then
f=polarssl_`basename "${p}"`
newbin "${p}" "${f}" || die
fi
done
for e in aes hash pkey ssl test ; do
docinto "${e}"
dodoc programs/"${e}"/*.c || die
dodoc programs/"${e}"/*.txt || die
done
fi
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog
@ 2012-04-26 16:11 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 16:11 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 16:11:45
Modified: polarssl-1.1.1.ebuild ChangeLog
Log:
tc-export CC to be more cross-compile friendly.
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.2 net-libs/polarssl/polarssl-1.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?r1=1.1&r2=1.2
Index: polarssl-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- polarssl-1.1.1.ebuild 27 Jan 2012 15:49:02 -0000 1.1
+++ polarssl-1.1.1.ebuild 26 Apr 2012 16:11:45 -0000 1.2
@@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.1 2012/01/27 15:49:02 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.2 2012/04/26 16:11:45 aballier Exp $
EAPI=2
-inherit eutils
+inherit eutils toolchain-funcs
DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://polarssl.org/"
@@ -27,6 +27,7 @@
}
src_compile() {
+ tc-export CC
emake -C library libpolarssl.so || die "emake failed"
if use examples ; then
1.25 net-libs/polarssl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 27 Jan 2012 15:49:02 -0000 1.24
+++ ChangeLog 26 Apr 2012 16:11:45 -0000 1.25
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/polarssl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.24 2012/01/27 15:49:02 tommy Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.25 2012/04/26 16:11:45 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> polarssl-1.1.1.ebuild:
+ tc-export CC to be more cross-compile friendly.
*polarssl-1.1.1 (27 Jan 2012)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog
@ 2012-04-26 16:13 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-26 16:13 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/26 16:13:22
Modified: polarssl-1.1.1.ebuild ChangeLog
Log:
keyword ~amd64-fbsd
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.3 net-libs/polarssl/polarssl-1.1.1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild?r1=1.2&r2=1.3
Index: polarssl-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- polarssl-1.1.1.ebuild 26 Apr 2012 16:11:45 -0000 1.2
+++ polarssl-1.1.1.ebuild 26 Apr 2012 16:13:22 -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/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.2 2012/04/26 16:11:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/polarssl-1.1.1.ebuild,v 1.3 2012/04/26 16:13:22 aballier Exp $
EAPI=2
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE="examples sse2"
src_prepare() {
1.26 net-libs/polarssl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/polarssl/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 26 Apr 2012 16:11:45 -0000 1.25
+++ ChangeLog 26 Apr 2012 16:13:22 -0000 1.26
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/polarssl
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.25 2012/04/26 16:11:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/polarssl/ChangeLog,v 1.26 2012/04/26 16:13:22 aballier Exp $
+
+ 26 Apr 2012; Alexis Ballier <aballier@gentoo.org> polarssl-1.1.1.ebuild:
+ keyword ~amd64-fbsd
26 Apr 2012; Alexis Ballier <aballier@gentoo.org> polarssl-1.1.1.ebuild:
tc-export CC to be more cross-compile friendly.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-04-26 16:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-26 16:11 [gentoo-commits] gentoo-x86 commit in net-libs/polarssl: polarssl-1.1.1.ebuild ChangeLog Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2012-04-26 16:13 Alexis Ballier (aballier)
2012-01-27 15:49 Thomas Sachau (tommy)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox