www-apps/syncserver: new package (and deps) for Firefox Sync Server
This commit is contained in:
parent
ceb5871da9
commit
b1dc230fa4
98 changed files with 1907 additions and 0 deletions
2
dev-python/mako/Manifest
Normal file
2
dev-python/mako/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST Mako-1.0.9.tar.gz 459569 BLAKE2B 90370a52dc16744886fabf1f22606a816439b200b64370a55f7f2f13751aea9ace71a6b03a819e75fe142bfa9c9742de49f264481bf3692a21e4c5611a60d14a SHA512 2b40b96edba9f1ac0c2090e5677742c1f7578d5a55ab1c09aa4198493144e30c25d6179a7bdee2d3fa12410da6c3b1105d2d70af77d4265d679f577a7e711c63
|
||||
EBUILD mako-1.0.9.ebuild 1158 BLAKE2B fc258968390d99944bd2ccbff261b4a055552100f1648b82876281b2176b4662cf5a9ef978fd9f9ca99a0a199695c845481f009382e57eb3fae3273657ef414d SHA512 5f003e0972be2c737ad21062ac24e152be3d99b463bebf34584096da098de0dfdd2ced3acc6b775d5a3cfbeb881eaf32bc81b034ed900c90bc9723c52e7eb362
|
||||
49
dev-python/mako/mako-1.0.9.ebuild
Normal file
49
dev-python/mako/mako-1.0.9.ebuild
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( pypy{,3} python{2_7,3_{5,6,7}} )
|
||||
|
||||
inherit distutils-r1 eutils
|
||||
|
||||
MY_PN="Mako"
|
||||
MY_P=${MY_PN}-${PV}
|
||||
|
||||
DESCRIPTION="A Python templating language"
|
||||
HOMEPAGE="http://www.makotemplates.org/ https://pypi.org/project/Mako/"
|
||||
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
|
||||
IUSE="doc test"
|
||||
|
||||
RDEPEND=">=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
${RDEPEND}
|
||||
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' pypy python2_7)
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
python_test() {
|
||||
py.test -v || die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
rm -r doc/build || die
|
||||
|
||||
use doc && local HTML_DOCS=( doc/. )
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "Optional dependencies:"
|
||||
optfeature "caching support" dev-python/beaker
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue