Update to 6.0.1, update LICENSE:
6.0.1: * Clarification of license. Thanks to Jan Staněk <jstanek@redhat.com> for bringing this issue up. This work is now explicitly licensed under 3-clause BSD license. * Fixed a long standing bug (August 2008, rev 9fd52748fa59) on "dbtables.py". Notified by Maxime Labelle. * If you want to link with Oracle Berkeley DB 6.0, you will need to create the environment variable 'YES_I_HAVE_THE_RIGHT_TO_USE_THIS_BERKELEY_DB_VERSION' to signal to the pybsddb that you are legal. To be legal, your code MUST be AGPL3 *OR* you have to buy a commercial license from Oracle. If you are not legally entitled to use Berkeley DB 6.0 and you have previous versions of Berkeley DB on your system, you can a) delete Berkeley DB 6.0 and try again, OR b) instruct pybsddb to use a previous Berkeley DB version, using environment variables or command line options. Sorry for the inconvenience. I am trying to protect you. Some details: https://forums.oracle.com/message/11184885 http://lists.debian.org/debian-legal/2013/07/
This commit is contained in:
parent
f0b68772cc
commit
5f8763d30e
2 changed files with 13 additions and 9 deletions
|
@ -1,24 +1,28 @@
|
|||
# $NetBSD: Makefile,v 1.46 2013/10/23 08:35:28 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.47 2013/12/11 19:18:56 wiz Exp $
|
||||
|
||||
DISTNAME= bsddb3-6.0.0
|
||||
DISTNAME= bsddb3-6.0.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= http://pypi.python.org/packages/source/b/bsddb3/
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://pypi.python.org/pypi/bsddb3/
|
||||
COMMENT= Python extension module for Berkeley DB 4
|
||||
LICENSE= mit
|
||||
COMMENT= Python extension module for Berkeley DB 4 and 5
|
||||
LICENSE= modified-bsd
|
||||
|
||||
BDB_ACCEPTED= db4 db5
|
||||
|
||||
PYSETUPBUILDARGS= --berkeley-db=${BDBBASE}
|
||||
PYSETUPINSTALLARGS= --berkeley-db=${BDBBASE}
|
||||
PYSETUPBUILDARGS+= --berkeley-db-incdir=${BDBBASE}/include/${BDB_TYPE}
|
||||
PYSETUPINSTALLARGS+= --berkeley-db-incdir=${BDBBASE}/include/${BDB_TYPE}
|
||||
|
||||
PYDISTUTILSPKG= yes
|
||||
PYTHON_VERSIONS_INCLUDE_3X= yes
|
||||
|
||||
REPLACE_PYTHON= Lib/bsddb/dbshelve.py
|
||||
REPLACE_PYTHON+= Lib3/bsddb/dbshelve.py
|
||||
REPLACE_PYTHON+= Lib/bsddb/test/test_dbtables.py
|
||||
REPLACE_PYTHON+= Lib3/bsddb/test/test_dbtables.py
|
||||
|
||||
SUBST_CLASSES+= bdb
|
||||
SUBST_STAGE.bdb= pre-configure
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.22 2013/10/23 08:35:28 wiz Exp $
|
||||
$NetBSD: distinfo,v 1.23 2013/12/11 19:18:56 wiz Exp $
|
||||
|
||||
SHA1 (bsddb3-6.0.0.tar.gz) = ca5c204b2c9cf4fff396ba3d49994fe1a95d669f
|
||||
RMD160 (bsddb3-6.0.0.tar.gz) = 5e33f120cf82d0d7f8b88f7699cd546855b51384
|
||||
Size (bsddb3-6.0.0.tar.gz) = 342086 bytes
|
||||
SHA1 (bsddb3-6.0.1.tar.gz) = c12e47f7c21b4bc586c68cce64e0079d070312e8
|
||||
RMD160 (bsddb3-6.0.1.tar.gz) = ede4858b3bd004653fe024b2eaa97dfb5ab93770
|
||||
Size (bsddb3-6.0.1.tar.gz) = 347002 bytes
|
||||
|
|
Loading…
Reference in a new issue