pygtfs-0.1.6 fix RequiredUseDefaults

This commit is contained in:
Andreas Billmeier 2022-03-19 12:05:56 +01:00 committed by Andreas Billmeier
parent 5afc0d4021
commit 2c93f11ae6
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 42 deletions

View File

@ -496,11 +496,11 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1766 Ebuilds in total, 1758 of them have in total 1766 (34 different) licenses assigned.
There are 1765 Ebuilds in total, 1757 of them have in total 1765 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1067|
|MIT|1066|
|Apache-2.0|323|
|GPL-3|105|
|BSD|103|

View File

@ -1,5 +1,3 @@
DIST pygtfs-0.1.5.tar.gz 22559 BLAKE2B c983b8e7ac90816f01ef1d325d78f5e60487c794586a3b6ed8add7ddb0a622e5f15f84e6d097a7edffc9264a805ba9db9a92dc523e9f12fcdaff0c6ba205d4fe SHA512 6aed68cee2526829ad092af4c9be8c48e3cc2187e8d0064f94c70b7c1d2a8dcccf5c764bec888fdb10a06e1c16b8790fbb4c1f9b1ad8ea9a440731cb08de66e5
DIST pygtfs-0.1.6.tar.gz 26335 BLAKE2B 21d098b76f3b2668c830bbb328397f6f11c502ae6d8b18ebdd5f7f22fb506180913b966ef43d98c51e21e4b5e3308b8b8e067c5fdbddca31cef277739694ef9e SHA512 a958d2f5e9552c4d61d79c1d4bf41a3028a1dd1d6f78e28faec81cfeb64410d7caa2814e91334a34572471f5dd2b97febda7e7115ea324a3a15b0d608a375c2b
EBUILD pygtfs-0.1.5.ebuild 851 BLAKE2B af6ca04690c19a69cfb63afa3daebd604ced7840b89a53c025bc4cb989b3a8eb82a76bf3d4d4964e88791a9a9ac4d8b411e424aae9a46cd8983d0ae0890bd41f SHA512 58bee98d0b40e6e9c9e1ba0763c5945c0e7e5454e7e27d6f724d1fe585474f3e0a6bd1600eef7ad540dfdc21a9b3130215633ff15af67cf9714aae5210e2571e
EBUILD pygtfs-0.1.6.ebuild 859 BLAKE2B 5cf96c18e1c3210b7f46b8af83f291f9c6763454f7b942e4c7022e1638e80df1be79f534612e3d596f843bd554ba28e7432a1a95b2d58280e7191e6d0dffce3b SHA512 71e853ff4b30f8a9e4dc73ff74547002fbf16c74b1917fb5873bb42386d2545717ed6515c075ba40ed3f24fa49e94b33fcc88cd10c7988f21b600d7877e7c18c
EBUILD pygtfs-0.1.6.ebuild 853 BLAKE2B 40f3ed53b807412d234164fbbfebefc2e95c03cebb688734ccbc0da5d53d5c00f6511ac0de9d665f53d85dc2373b9184b03313fa593e99093e9c02e05d7b733f SHA512 1db3bf4778be6d9330fc80dd63c9a4203ee06c39effeb4cb6d09d123f7e04b981472c7250f9a88782b2031c33dc8fcfd581b264d6cc4f1a2dac440b0b32e61f2
MISC metadata.xml 447 BLAKE2B 12188c27fdaa11a82a504dd94558b4065c2a3651b763513badb14b76a390708649bb769c05877c64663b03eb729c75101bbaae9b31159f7ae1b480472a56ed35 SHA512 18f7b9deb98c4e04064f856071d14e9794450c223b32582b9f697176010641240bb7abba718b0d63172e0385b48f2dc526263f7ff80ec7c763f08cbd73c4c0a4

View File

@ -1,34 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Models GTFS data in a database."
HOMEPAGE="https://github.com/jarondl/pygtfs https://pypi.org/project/pygtfs/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/sqlalchemy-0.7.8[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/docopt[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"