SchemaSync-0.9.4.ebuild 550 B

123456789101112131415161718192021222324
  1. # Copyright 1999-2017 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=6
  4. PYTHON_COMPAT=( python2_7 )
  5. inherit distutils-r1
  6. DESCRIPTION="MySQL Schema Versioning and Migration Utility"
  7. HOMEPAGE="https://github.com/mmatuson/SchemaSync"
  8. SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
  9. LICENSE="Apache-2.0"
  10. SLOT="0"
  11. KEYWORDS="~amd64 ~x86"
  12. IUSE=""
  13. RDEPEND="
  14. dev-python/setuptools[${PYTHON_USEDEP}]
  15. dev-python/mysql-python[${PYTHON_USEDEP}]
  16. dev-python/SchemaObject[${PYTHON_USEDEP}]"
  17. DEPEND="${RDEPEND}"