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-0.4.5.tar.gz 119741 BLAKE2B fe78370b187d39c48940182858da97c24579f634f8be857703b28f7ae1343df07c75e72d002495fe90d4c493983b31d16da636961f2f8b17506baac0433aa16b SHA512 8bacd1245a732b005f3a937f486920a348a9bd7d9af7828eb41d69712769f93fd09799e9cea1ad563f4b45c793246b8aecb96855d9deb223a8f2fb631f89dd8e
EBUILD pyasn1-0.4.5.ebuild 893 BLAKE2B eff347e726db88cadde9681a2501f25b737bf647a9cc0f53750b9e13a0ef228e9717b4fb60a4145389bdd5c59f3b888defcef47c33ff47425917eb0f4971b5a7 SHA512 ce3f454aef1ae42187f558869360b86b6d85fb71fb63a7ae05556ffdeecb3dabed202bb338f90f9e4b10e62f964e4199729454aff73d0de418fd0f708ec50912

View file

@ -0,0 +1,40 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="ASN.1 library for Python"
HOMEPAGE="http://snmplabs.com/pyasn1/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="doc"
RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
python_test() {
esetup.py test
}
src_compile() {
if use doc; then
python_setup
esetup.py build_sphinx
fi
distutils-r1_src_compile
}
src_install() {
local HTML_DOCS
use doc && HTML_DOCS=( build/sphinx/html/. )
distutils-r1_src_install
}