blob: 99c1b0a2356953498c8f1060b42394795448f1f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="Chromium HSTS Preload list as a Python package"
HOMEPAGE="
https://hstspreload.org
https://github.com/sethmlarson/hstspreload
https://pypi.org/project/hstspreload
"
SRC_URI="https://github.com/sethmlarson/hstspreload/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
SLOT="0"
RESTRICT="test"
PROPERTIES="test_network"
distutils_enable_tests pytest
|