www-apps/syncserver: new package (and deps) for Firefox Sync Server

This commit is contained in:
nemunaire 2019-07-21 22:22:03 +02:00
commit b1dc230fa4
98 changed files with 1907 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST pyasn1-modules-0.2.4.tar.gz 70505 BLAKE2B 6719b02e4ec5ad6d6341b599e3179f81504c007b5ee3239da7ed6add57afe319e636fc4cead815b9f6c399b7609a19913f4cc8064d3e6e0266dd513c19049531 SHA512 c9e16475629b9c62880ecc67317ed734953a8719089fec89b14ab81e7ef4504bc534aa777b1c25dead7867c483177423ee4a218c14470994017e30704e1cc1dc
EBUILD pyasn1-modules-0.2.4.ebuild 821 BLAKE2B f12da15f07eb6af5946f946ab786d6bbeadbe61175352ee65189a3593ef75f0edffa9e79bede1a2329951828fa77df56fda896107347d64baf5eaf1d060cc178 SHA512 a082ff240f8b0d285e7ad95a9dc91e059c7b5b477a85d1d6a8f6d9d45a0ce560860f59350a1222ba657c0deb38059169d682946220dbfc9d25af97a14880924d

View file

@ -0,0 +1,32 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="pyasn1 modules"
HOMEPAGE="http://snmplabs.com/pyasn1/ https://github.com/etingof/pyasn1-modules/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/pyasn1-0.4.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
python_test() {
esetup.py test
}
python_install_all() {
distutils-r1_python_install_all
insinto /usr/share/${P}
doins -r tools
}