Skip to content

Commit b5cf24f

Browse files
committed
dev-python/freezegun: new package, add 1.4.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3348 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 9549bb0 commit b5cf24f

File tree

4 files changed

+56
-2
lines changed

4 files changed

+56
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
606606

607607
## Licenses
608608
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.
609-
There are 1817 Ebuilds in total, 1806 of them have in total 1825 (42 different) licenses assigned.
609+
There are 1818 Ebuilds in total, 1807 of them have in total 1826 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613613
|MIT|1045|
614-
|Apache-2.0|396|
614+
|Apache-2.0|397|
615615
|GPL-3|107|
616616
|BSD|106|
617617
|LGPL-3|25|

dev-python/freezegun/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST freezegun-1.4.0.tar.gz 31748 BLAKE2B a7ea433ea8e5f0137fc5d88a5375e3fc0e2f307a04684ab5b844168ed214fd9dd1d1ed2a0e0c91ed20ee1fc32c8e3e75fb9dc73de64723efe881e843a38269a1 SHA512 bbdad19b7fc2da9a2851d6b4c14427ccda1f2e06617993cf7173ded65cced9b98d36e1da05a2718b70653a69986cd81d84317003271eda2075177ccf63495b7a
2+
EBUILD freezegun-1.4.0.ebuild 636 BLAKE2B 1391700966d94a8f8bc65f236bef32aa86258fe06712c8878183a93a897bca4fb1503d7366e925a1746e3c39a4be88d9b171ff3025c76a8244b45a1960da9554 SHA512 75a57f33c0cfbdd6d324b031190001c70f8e836ca2b16bbfd3f5c30d8e2158eec5954dea924c3d2a7007273e209416b2bbfa22e445895b35d84019617aa56709
3+
MISC metadata.xml 507 BLAKE2B e30cf172447077c12f3e7ea9cc7f3ebd24a0ebaf9c7c1a3eed8959e2ec38c01df641a14dbdc6cfc6c6189a88982274e03c6fb68829b61ce95e6b1663cc850bd1 SHA512 1da2e65ed01c4ff3540b31433d8c1e94c34f7e0597e9d1bfe373e720b1bd15256af25ea9d51bfaad3aab9cbe01177161cdf263c92fde8db880189ff3f89e89db
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
DISTUTILS_USE_PEP517=setuptools
7+
PYTHON_COMPAT=( python3_{11..13} )
8+
9+
inherit distutils-r1 pypi
10+
11+
DESCRIPTION="Let your Python tests travel through time"
12+
HOMEPAGE="
13+
https://github.com/spulec/freezegun/
14+
https://pypi.org/project/freezegun/
15+
"
16+
17+
LICENSE="Apache-2.0"
18+
SLOT="0"
19+
KEYWORDS="amd64 arm arm64 x86"
20+
21+
RDEPEND="
22+
>dev-python/python-dateutil-2.7[${PYTHON_USEDEP}]
23+
"
24+
BDEPEND="
25+
test? (
26+
$(python_gen_impl_dep sqlite)
27+
)
28+
"
29+
30+
distutils_enable_tests pytest
31+
32+
python_test() {
33+
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
34+
epytest
35+
}

dev-python/freezegun/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">freezegun</remote-id>
10+
<remote-id type="github">spulec/freezegun</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Steve Pulec</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

0 commit comments

Comments
 (0)