diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-01-14 21:11:20 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-01-14 21:11:20 +0000 |
commit | 239c5e840896422c27c2150ccf8d4365a2e236d2 (patch) | |
tree | 4bb5ec0744e5278cf0e5c10be9c6814ee14c1228 /dev-python/pysqlite | |
parent | Fix trailing whitespace in ebuild and also typo in previous commit message (diff) | |
download | gentoo-2-239c5e840896422c27c2150ccf8d4365a2e236d2.tar.gz gentoo-2-239c5e840896422c27c2150ccf8d4365a2e236d2.tar.bz2 gentoo-2-239c5e840896422c27c2150ccf8d4365a2e236d2.zip |
Fix installing examples.
(Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Diffstat (limited to 'dev-python/pysqlite')
-rw-r--r-- | dev-python/pysqlite/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-python/pysqlite/ChangeLog b/dev-python/pysqlite/ChangeLog index 30dbed117380..12eeb54f44fc 100644 --- a/dev-python/pysqlite/ChangeLog +++ b/dev-python/pysqlite/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/pysqlite # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/ChangeLog,v 1.143 2013/01/14 11:59:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/ChangeLog,v 1.144 2013/01/14 21:11:20 mgorny Exp $ + + 14 Jan 2013; Michał Górny <mgorny@gentoo.org> pysqlite-2.6.3-r1.ebuild: + Fix installing examples. *pysqlite-2.6.3-r1 (14 Jan 2013) diff --git a/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild b/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild index a1f18af0dcec..65b99757ebc4 100644 --- a/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild +++ b/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild,v 1.1 2013/01/14 11:59:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pysqlite/pysqlite-2.6.3-r1.ebuild,v 1.2 2013/01/14 21:11:20 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_5,2_6,2_7} ) @@ -52,6 +52,6 @@ python_install_all() { if use examples; then insinto /usr/share/doc/${PF}/examples - doins doc/includes/sqlite3/. || die + doins -r doc/includes/sqlite3/. || die fi } |