From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 876DD139695 for ; Fri, 17 Feb 2017 11:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2A1AE0C3D; Fri, 17 Feb 2017 11:19:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BED31E0C3D for ; Fri, 17 Feb 2017 11:19:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0517834102B for ; Fri, 17 Feb 2017 11:19:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A16AE4AE5 for ; Fri, 17 Feb 2017 11:19:55 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1487330389.e100765f696dbef8f07806185513ec4bf029c9e9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/SchemaSync/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/SchemaSync/SchemaSync-0.9.2-r1.ebuild dev-db/SchemaSync/SchemaSync-0.9.2.ebuild X-VCS-Directories: dev-db/SchemaSync/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e100765f696dbef8f07806185513ec4bf029c9e9 X-VCS-Branch: master Date: Fri, 17 Feb 2017 11:19:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8f3ed627-97dd-4927-bdc7-b1eb15f0eb8a X-Archives-Hash: 47e6371ad71816f133dee93ad347c28b commit: e100765f696dbef8f07806185513ec4bf029c9e9 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 17 11:16:58 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 17 11:19:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e100765f dev-db/SchemaSync: distutils-r1, EAPI=6, HOMEPAGE dev-db/SchemaSync/SchemaSync-0.9.2-r1.ebuild | 25 ++++++++++++++++ dev-db/SchemaSync/SchemaSync-0.9.2.ebuild | 45 ---------------------------- 2 files changed, 25 insertions(+), 45 deletions(-) diff --git a/dev-db/SchemaSync/SchemaSync-0.9.2-r1.ebuild b/dev-db/SchemaSync/SchemaSync-0.9.2-r1.ebuild new file mode 100644 index 0000000000..f09a656ac4 --- /dev/null +++ b/dev-db/SchemaSync/SchemaSync-0.9.2-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="MySQL Schema Versioning and Migration Utility" +HOMEPAGE="https://github.com/mmatuson/SchemaSync" +# old download location is down +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/mysql-python[${PYTHON_USEDEP}] + dev-python/SchemaObject[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" diff --git a/dev-db/SchemaSync/SchemaSync-0.9.2.ebuild b/dev-db/SchemaSync/SchemaSync-0.9.2.ebuild deleted file mode 100644 index 2769787743..0000000000 --- a/dev-db/SchemaSync/SchemaSync-0.9.2.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -PYTHON_DEPEND="2:2.5:2.7" - -inherit distutils - -DESCRIPTION="MySQL Schema Versioning and Migration Utility" -HOMEPAGE="http://schemasync.org/" -SRC_URI="http://www.schemasync.org/downloads/${P}.tar.gz" - -# Switch to ,, when we switch to EAPI=6. -#pn="${PN,,}" -pn="schemasync" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - dev-python/setuptools - dev-python/mysql-python - dev-python/SchemaObject" -DEPEND="${RDEPEND}" - -pkg_setup() { - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - python_convert_shebangs -r 2 . -} - -pkg_postinst() { - python_mod_optimize "${pn}" -} - -pkg_postrm() { - python_mod_cleanup "${pn}" -}