28 lines
614 B
Bash
28 lines
614 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{4..13} )
|
|
DISTUTILS_USE_PEP517=no
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A simple Python library to format datetime with '*** time ago' statements"
|
|
HOMEPAGE="https://github.com/hustcc/timeago"
|
|
SRC_URI="https://github.com/hustcc/timeago/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
S="${WORKDIR}/${P}/src"
|
|
|
|
pkg_setup() {
|
|
python_setup
|
|
}
|