diff --git a/gentodo-1.1.0.ebuild b/gentodo-1.1.0.ebuild deleted file mode 100644 index 329f866..0000000 --- a/gentodo-1.1.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) - -DISTUTILS_USE_PEP517=setuptools -inherit python-r1 distutils-r1 bash-completion-r1 - -if [[ ${PV} == 9999* ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/csfore/gentodo.git" -else - SRC_URI="https://github.com/csfore/gentodo/releases/download/${PV}/gentodo-${PV}.tar.gz" - KEYWORDS="~amd64" -fi - -HOMEPAGE="https://github.com/csfore/gentodo" -DESCRIPTION="Todo program to help enhance your Gentoo workflow" - -LICENSE="GPL-3" -SLOT="0" - -IUSE="bash-completion" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -BDEPENDS=" - ${PYTHON_DEPS} -" -DEPEND=" - ${PYTHON_DEPS} -" -RDEPEND=" - ${PYTHON_DEPS} - dev-python/python-bugzilla - dev-python/click -" - -python_install_all() { - newbashcomp src/gentodo/gentodo-completions.bash gentodo - distutils-r1_python_install_all -} diff --git a/gentodo-1.0.0.ebuild b/gentodo-1.1.1.ebuild similarity index 66% rename from gentodo-1.0.0.ebuild rename to gentodo-1.1.1.ebuild index 329f866..11602fd 100644 --- a/gentodo-1.0.0.ebuild +++ b/gentodo-1.1.1.ebuild @@ -6,13 +6,13 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools -inherit python-r1 distutils-r1 bash-completion-r1 +inherit python-r1 distutils-r1 if [[ ${PV} == 9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/csfore/gentodo.git" else - SRC_URI="https://github.com/csfore/gentodo/releases/download/${PV}/gentodo-${PV}.tar.gz" + SRC_URI="https://github.com/csfore/gentodo/archive/${PV}.tar.gz" KEYWORDS="~amd64" fi @@ -22,8 +22,6 @@ DESCRIPTION="Todo program to help enhance your Gentoo workflow" LICENSE="GPL-3" SLOT="0" -IUSE="bash-completion" - REQUIRED_USE="${PYTHON_REQUIRED_USE}" BDEPENDS=" @@ -35,10 +33,4 @@ DEPEND=" RDEPEND=" ${PYTHON_DEPS} dev-python/python-bugzilla - dev-python/click " - -python_install_all() { - newbashcomp src/gentodo/gentodo-completions.bash gentodo - distutils-r1_python_install_all -} diff --git a/src/gentodo/__init__.py b/src/gentodo/__init__.py index 30b0109..3674ac7 100644 --- a/src/gentodo/__init__.py +++ b/src/gentodo/__init__.py @@ -1,2 +1,2 @@ '''__init__.py''' -__version__ = "1.1.0" +__version__ = "1.1.1"