public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild
@ 2010-10-13  0:07 Dane Smith (c1pher)
  0 siblings, 0 replies; 5+ messages in thread
From: Dane Smith (c1pher) @ 2010-10-13  0:07 UTC (permalink / raw
  To: gentoo-commits

c1pher      10/10/13 00:07:36

  Modified:             ChangeLog
  Added:                botan-1.8.10.ebuild
  Log:
  Version bump for Botan.
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.61                 dev-libs/botan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	18 Apr 2010 17:17:37 -0000	1.60
+++ ChangeLog	13 Oct 2010 00:07:36 -0000	1.61
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/botan
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.60 2010/04/18 17:17:37 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.61 2010/10/13 00:07:36 c1pher Exp $
+
+*botan-1.8.10 (13 Oct 2010)
+
+  13 Oct 2010; Dane Smith <c1pher@gentoo.org> +botan-1.8.10.ebuild:
+  Version bump for botan wrt bug #332615. thanks Jack Lloyd for the updated
+  ebuild.
 
   18 Apr 2010; <nixnut@gentoo.org> botan-1.8.8-r1.ebuild:
   ppc stable #312177



1.1                  dev-libs/botan/botan-1.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.1&content-type=text/plain

Index: botan-1.8.10.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v 1.1 2010/10/13 00:07:36 c1pher Exp $

EAPI="3"
PYTHON_DEPEND="2"
inherit eutils multilib python toolchain-funcs

MY_PN="Botan"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A C++ crypto library"
HOMEPAGE="http://botan.randombit.net/"
SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"

KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~ppc-macos"
SLOT="0"
LICENSE="BSD"
IUSE="bzip2 gmp ssl threads zlib"

S="${WORKDIR}/${MY_P}"

RDEPEND="bzip2? ( >=app-arch/bzip2-1.0.5 )
	zlib? ( >=sys-libs/zlib-1.2.3 )
	gmp? ( >=dev-libs/gmp-4.2.2 )
	ssl? ( >=dev-libs/openssl-0.9.8g )"

DEPEND="${RDEPEND}"

pkg_setup() {
	python_set_active_version 2
}

src_prepare() {
	# Install documentation in /usr/share/doc/${PF}.
	sed -e "/^DOCDIR *=/s/Botan-\$(VERSION)/${PF}/" -i src/build-data/makefile/unix_shr.in || die "sed failed"
}

src_configure() {
	local disable_modules="proc_walk,unix_procs,cpu_counter"

	if ! useq threads; then
		disable_modules="${disable_modules},pthreads"
	fi

	# Enable v9 instructions for sparc64
	if [[ "${PROFILE_ARCH}" = "sparc64" ]]; then
		CHOSTARCH="sparc32-v9"
	else
		CHOSTARCH="${CHOST%%-*}"
	fi

	cd "${S}"
	elog "Disabling modules: ${disable_modules}"

	local myos=
	case ${CHOST} in
		*-darwin*)   myos=darwin ;;
		*)           myos=linux  ;;
	esac

	# foobared buildsystem, --prefix translates into DESTDIR, see also make
	# install in src_install, we need the correct live-system prefix here on
	# Darwin for a shared lib with correct install_name
	./configure.py \
		--prefix="${EPREFIX}/usr" \
		--libdir=$(get_libdir) \
		--docdir=share/doc \
		--cc=gcc \
		--os=${myos} \
		--cpu=${CHOSTARCH} \
		--with-endian="$(tc-endian)" \
		--with-tr1=system \
		$(use_with bzip2) \
		$(use_with gmp gnump) \
		$(use_with ssl openssl) \
		$(use_with zlib) \
		--disable-modules=${disable_modules} \
		|| die "configure.py failed"
}

src_compile() {
	emake CXX="$(tc-getCXX)" AR="$(tc-getAR) crs" LIB_OPT="${CXXFLAGS}" MACH_OPT="" || die "emake failed"
}

src_test() {
	chmod -R ugo+rX "${S}"
	emake CXX="$(tc-getCXX)" CHECK_OPT="${CXXFLAGS}" check || die "emake check failed"
	LD_LIBRARY_PATH="${S}" ./check --validate || die "Validation tests failed"
}

src_install() {
	emake DESTDIR="${ED}usr" install || die "emake install failed"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild
@ 2010-11-15 10:09 Thomas Kahle (tomka)
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Kahle (tomka) @ 2010-11-15 10:09 UTC (permalink / raw
  To: gentoo-commits

tomka       10/11/15 10:09:13

  Modified:             ChangeLog botan-1.8.10.ebuild
  Log:
  x86 stable per bug 345473
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.62                 dev-libs/botan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	13 Oct 2010 00:07:36 -0000	1.61
+++ ChangeLog	15 Nov 2010 10:09:13 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/botan
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.61 2010/10/13 00:07:36 c1pher Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.62 2010/11/15 10:09:13 tomka Exp $
+
+  15 Nov 2010; Thomas Kahle <tomka@gentoo.org> botan-1.8.10.ebuild:
+  x86 stable per bug 345473
 
 *botan-1.8.10 (13 Oct 2010)
 



1.2                  dev-libs/botan/botan-1.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?r1=1.1&r2=1.2

Index: botan-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- botan-1.8.10.ebuild	13 Oct 2010 00:07:36 -0000	1.1
+++ botan-1.8.10.ebuild	15 Nov 2010 10:09:13 -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/dev-libs/botan/botan-1.8.10.ebuild,v 1.1 2010/10/13 00:07:36 c1pher Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v 1.2 2010/11/15 10:09:13 tomka Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -12,7 +12,7 @@
 HOMEPAGE="http://botan.randombit.net/"
 SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"
 
-KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~ppc-macos"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc x86 ~ppc-macos"
 SLOT="0"
 LICENSE="BSD"
 IUSE="bzip2 gmp ssl threads zlib"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild
@ 2010-11-15 13:27 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-11-15 13:27 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/11/15 13:27:09

  Modified:             ChangeLog botan-1.8.10.ebuild
  Log:
  Stable on amd64 wrt bug #345473
  
  (Portage version: 2.1.9.24/cvs/Linux x86_64)

Revision  Changes    Path
1.63                 dev-libs/botan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	15 Nov 2010 10:09:13 -0000	1.62
+++ ChangeLog	15 Nov 2010 13:27:09 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/botan
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.62 2010/11/15 10:09:13 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.63 2010/11/15 13:27:09 hwoarang Exp $
+
+  15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> botan-1.8.10.ebuild:
+  Stable on amd64 wrt bug #345473
 
   15 Nov 2010; Thomas Kahle <tomka@gentoo.org> botan-1.8.10.ebuild:
   x86 stable per bug 345473



1.3                  dev-libs/botan/botan-1.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?r1=1.2&r2=1.3

Index: botan-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- botan-1.8.10.ebuild	15 Nov 2010 10:09:13 -0000	1.2
+++ botan-1.8.10.ebuild	15 Nov 2010 13:27:09 -0000	1.3
@@ -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/dev-libs/botan/botan-1.8.10.ebuild,v 1.2 2010/11/15 10:09:13 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v 1.3 2010/11/15 13:27:09 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -12,7 +12,7 @@
 HOMEPAGE="http://botan.randombit.net/"
 SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"
 
-KEYWORDS="~amd64 ~ia64 ~ppc ~sparc x86 ~ppc-macos"
+KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86 ~ppc-macos"
 SLOT="0"
 LICENSE="BSD"
 IUSE="bzip2 gmp ssl threads zlib"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild
@ 2011-01-06 23:03 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2011-01-06 23:03 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/06 23:03:18

  Modified:             ChangeLog botan-1.8.10.ebuild
  Log:
  Marking botan-1.8.10 ppc for bug 345473
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.64                 dev-libs/botan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	15 Nov 2010 13:27:09 -0000	1.63
+++ ChangeLog	6 Jan 2011 23:03:18 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/botan
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.63 2010/11/15 13:27:09 hwoarang Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.64 2011/01/06 23:03:18 ranger Exp $
+
+  06 Jan 2011; Brent Baude <ranger@gentoo.org> botan-1.8.10.ebuild:
+  Marking botan-1.8.10 ppc for bug 345473
 
   15 Nov 2010; Markos Chandras <hwoarang@gentoo.org> botan-1.8.10.ebuild:
   Stable on amd64 wrt bug #345473



1.4                  dev-libs/botan/botan-1.8.10.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild?r1=1.3&r2=1.4

Index: botan-1.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- botan-1.8.10.ebuild	15 Nov 2010 13:27:09 -0000	1.3
+++ botan-1.8.10.ebuild	6 Jan 2011 23:03:18 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v 1.3 2010/11/15 13:27:09 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/botan-1.8.10.ebuild,v 1.4 2011/01/06 23:03:18 ranger Exp $
 
 EAPI="3"
 PYTHON_DEPEND="2"
@@ -12,7 +12,7 @@
 HOMEPAGE="http://botan.randombit.net/"
 SRC_URI="http://files.randombit.net/botan/${MY_P}.tbz"
 
-KEYWORDS="amd64 ~ia64 ~ppc ~sparc x86 ~ppc-macos"
+KEYWORDS="amd64 ~ia64 ppc ~sparc x86 ~ppc-macos"
 SLOT="0"
 LICENSE="BSD"
 IUSE="bzip2 gmp ssl threads zlib"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild
@ 2011-02-28 15:31 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 5+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-02-28 15:31 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/02/28 15:31:35

  Modified:             ChangeLog
  Removed:              botan-1.8.10.ebuild
  Log:
  Delete older ebuild.
  
  (Portage version: 2.2.0_alpha25_p10/cvs/Linux x86_64)

Revision  Changes    Path
1.69                 dev-libs/botan/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/botan/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	28 Feb 2011 01:02:11 -0000	1.68
+++ ChangeLog	28 Feb 2011 15:31:34 -0000	1.69
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/botan
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.68 2011/02/28 01:02:11 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/botan/ChangeLog,v 1.69 2011/02/28 15:31:34 arfrever Exp $
+
+  28 Feb 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  -files/botan-1.8.8-darwin-install_name-fix.patch,
+  -files/botan-1.8.8-use_negative_lea_displacement.patch, -botan-1.8.10.ebuild:
+  Delete.
 
   28 Feb 2011; Brent Baude <ranger@gentoo.org> botan-1.8.11.ebuild:
   stable ppc, bug 353858






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

end of thread, other threads:[~2011-02-28 15:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-28 15:31 [gentoo-commits] gentoo-x86 commit in dev-libs/botan: ChangeLog botan-1.8.10.ebuild Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-06 23:03 Brent Baude (ranger)
2010-11-15 13:27 Markos Chandras (hwoarang)
2010-11-15 10:09 Thomas Kahle (tomka)
2010-10-13  0:07 Dane Smith (c1pher)

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