diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-24 07:42:10 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2007-12-24 07:42:10 +0000 |
commit | ec3a93dd2aed4d315a8003e1ec5d6ebe1eb8174d (patch) | |
tree | 18ab80c95dcf516c816f5b24ade45ffafea79b5a /dev-cpp | |
parent | Changed xerces-c version to match only 2.7.0 (bug #202922) since upstream doe... (diff) | |
download | gentoo-2-ec3a93dd2aed4d315a8003e1ec5d6ebe1eb8174d.tar.gz gentoo-2-ec3a93dd2aed4d315a8003e1ec5d6ebe1eb8174d.tar.bz2 gentoo-2-ec3a93dd2aed4d315a8003e1ec5d6ebe1eb8174d.zip |
Version bump (bug #202975), only do 'make clean' when tests have been run (bug #203109)
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/asio/ChangeLog | 10 | ||||
-rw-r--r-- | dev-cpp/asio/asio-0.3.7-r1.ebuild | 48 | ||||
-rw-r--r-- | dev-cpp/asio/asio-0.3.9.ebuild (renamed from dev-cpp/asio/asio-0.3.8.ebuild) | 9 | ||||
-rw-r--r-- | dev-cpp/asio/files/asio-0.3.7-double_delete_fix.patch | 12 | ||||
-rw-r--r-- | dev-cpp/asio/files/digest-asio-0.3.7-r1 | 3 | ||||
-rw-r--r-- | dev-cpp/asio/files/digest-asio-0.3.8 | 3 | ||||
-rw-r--r-- | dev-cpp/asio/files/digest-asio-0.3.9 | 3 |
7 files changed, 18 insertions, 70 deletions
diff --git a/dev-cpp/asio/ChangeLog b/dev-cpp/asio/ChangeLog index 236c6c8cf02c..d41aedefaa3a 100644 --- a/dev-cpp/asio/ChangeLog +++ b/dev-cpp/asio/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-cpp/asio # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.10 2007/12/01 18:28:12 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/ChangeLog,v 1.11 2007/12/24 07:42:09 dev-zero Exp $ + +*asio-0.3.9 (24 Dec 2007) + + 24 Dec 2007; Tiziano Müller <dev-zero@gentoo.org> + -files/asio-0.3.7-double_delete_fix.patch, -asio-0.3.7-r1.ebuild, + -asio-0.3.8.ebuild, +asio-0.3.9.ebuild: + Version bump (bug #202975), only do 'make clean' when tests have been run + (bug #203109) *asio-0.3.8 (01 Dec 2007) diff --git a/dev-cpp/asio/asio-0.3.7-r1.ebuild b/dev-cpp/asio/asio-0.3.7-r1.ebuild deleted file mode 100644 index 34b831814913..000000000000 --- a/dev-cpp/asio/asio-0.3.7-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.7-r1.ebuild,v 1.1 2007/07/12 23:17:07 dev-zero Exp $ - -inherit eutils - -KEYWORDS="~amd64 ~x86" - -DESCRIPTION="asynchronous network library" -HOMEPAGE="http://asio.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -LICENSE="Boost-1.0" -SLOT="0" -IUSE="doc examples ssl" - -DEPEND="ssl? ( dev-libs/openssl ) - >=dev-libs/boost-1.33.0" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}/${P}-recursive_init.patch" - epatch "${FILESDIR}/${P}-double_delete_fix.patch" - - # Don't build nor install any examples or unittests - # since we don't have a script to run them - cat > src/Makefile.in <<-EOF -all: - -install: - EOF -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc README THANKS TODO - - if use doc ; then - dohtml -r doc/* - fi - if use examples ; then - insinto /usr/share/doc/${PF} - doins -r src/examples - fi -} diff --git a/dev-cpp/asio/asio-0.3.8.ebuild b/dev-cpp/asio/asio-0.3.9.ebuild index 19dd082eedc2..e552c9f8b980 100644 --- a/dev-cpp/asio/asio-0.3.8.ebuild +++ b/dev-cpp/asio/asio-0.3.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.8.ebuild,v 1.2 2007/12/02 01:47:28 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/asio/asio-0.3.9.ebuild,v 1.1 2007/12/24 07:42:09 dev-zero Exp $ inherit eutils @@ -41,8 +41,11 @@ src_install() { dohtml -r doc/* fi if use examples ; then - # Get rid of the object files - emake clean || die "emake clean failed" + + if use test ; then + # Get rid of the object files + emake clean || die "emake clean failed" + fi insinto /usr/share/doc/${PF} doins -r src/examples diff --git a/dev-cpp/asio/files/asio-0.3.7-double_delete_fix.patch b/dev-cpp/asio/files/asio-0.3.7-double_delete_fix.patch deleted file mode 100644 index be914ec8fc97..000000000000 --- a/dev-cpp/asio/files/asio-0.3.7-double_delete_fix.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- include/asio/detail/reactor_op_queue.hpp 2006/11/05 08:00:27 1.22 -+++ include/asio/detail/reactor_op_queue.hpp 2006/12/16 22:34:59 1.23 -@@ -160,8 +160,8 @@ - i->second = this_op; - return; - } -- operations_.erase(i); - } -+ operations_.erase(i); - } - } - diff --git a/dev-cpp/asio/files/digest-asio-0.3.7-r1 b/dev-cpp/asio/files/digest-asio-0.3.7-r1 deleted file mode 100644 index 0a58cbb1b4df..000000000000 --- a/dev-cpp/asio/files/digest-asio-0.3.7-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 5481c9764ece613d8e099c1a9b32ded2 asio-0.3.7.tar.bz2 1791047 -RMD160 dc35c3ad0225823fdf10e72258993a0d837da1ba asio-0.3.7.tar.bz2 1791047 -SHA256 a7e2f105cab8a120bf24ec9761881f588b27361ce9303ac4374f2ce1d80b794f asio-0.3.7.tar.bz2 1791047 diff --git a/dev-cpp/asio/files/digest-asio-0.3.8 b/dev-cpp/asio/files/digest-asio-0.3.8 deleted file mode 100644 index 25b6053359f2..000000000000 --- a/dev-cpp/asio/files/digest-asio-0.3.8 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 309d2c353392d1b7caf3bb48980c743d asio-0.3.8.tar.bz2 509783 -RMD160 2b47a071cf65730b9958dcdcd312a2a7e00441b6 asio-0.3.8.tar.bz2 509783 -SHA256 461466c6630c1025ff5a8174868967cad87500c13e5751337f4ce102eb335e7e asio-0.3.8.tar.bz2 509783 diff --git a/dev-cpp/asio/files/digest-asio-0.3.9 b/dev-cpp/asio/files/digest-asio-0.3.9 new file mode 100644 index 000000000000..1bd7545133a7 --- /dev/null +++ b/dev-cpp/asio/files/digest-asio-0.3.9 @@ -0,0 +1,3 @@ +MD5 22ff8e4d9016bda918491c2bbcd10c7c asio-0.3.9.tar.bz2 553708 +RMD160 22bf83006de480d13dd0a28a4f0b5e7beceb19b4 asio-0.3.9.tar.bz2 553708 +SHA256 41e96d922ae0a1051e3a4d39f0787f3e054f301e1ebeccd53fcfeced56e96680 asio-0.3.9.tar.bz2 553708 |