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 configparser-3.7.4.tar.gz 71987 BLAKE2B 5ca8d73ddd975e6871e26f8ec415fae76a4be4b4bbecf1333cefd45c3bd54affbdf312f2095929de057acaa4f00d04c6b8b6f82f12c9186fbc8b921573b1e03c SHA512 205a7bc921ccfb3df5a25afaf2f5ab78d3a5a92bfd2c9c78098e8d009c1fe8d431b8bf09d2da44f7ebf172e912121619dc7bbfadc74f355133f8d32bc42a8b00
EBUILD configparser-3.7.4.ebuild 693 BLAKE2B 68da11ab0539f1a751843bfedac94be30166047a331c55a2a8b86847a2808d968f9e5ad5e7db2c7f15c66c0b3d6fc6170eae93d0878748e4489d621139938355 SHA512 81e588b31b7b38251c14f15d4f41f21c2265267aca6a47781fff3a04deae3365a31d73c3a520bbc7bc04b0f8131e09ad3ae188296d4cbb425dc594e77166e713

View file

@ -0,0 +1,24 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 pypy )
inherit distutils-r1
DESCRIPTION="Backport of Python-3 built-in configparser"
HOMEPAGE="https://pypi.org/project/configparser/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE=""
RDEPEND="dev-python/backports[${PYTHON_USEDEP}]"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
python_install_all() {
distutils-r1_python_install_all
find "${D}" -name '*.pth' -delete || die
}