Skip to content

Commit c2567a6

Browse files
committed
dev-python/sqlparse: new package, add 0.5.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3762 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 3010626 commit c2567a6

File tree

4 files changed

+43
-2
lines changed

4 files changed

+43
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ 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 1997 Ebuilds in total, 1986 of them have in total 2014 (42 different) licenses assigned.
609+
There are 1998 Ebuilds in total, 1987 of them have in total 2015 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
@@ -617,8 +617,8 @@ There are 1997 Ebuilds in total, 1986 of them have in total 2014 (42 different)
617617
|LGPL-3|25|
618618
|GPL-2|25|
619619
|GPL-3+|16|
620+
|BSD-2|15|
620621
|all-rights-reserved|15|
621-
|BSD-2|14|
622622
|LGPL-3+|14|
623623
|Unlicense|9|
624624
|PSF-2|9|

dev-python/sqlparse/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST sqlparse-0.5.0.tar.gz 83475 BLAKE2B 6553de08385e90bbb0b7ce45db5894aabceb997885f1c610d83725b1a5d632caae1944e022ef43b3ed586ed05d160d5e88e450a077a6531955abda8a794dc173 SHA512 eade99e832054ddbc466d1c56a4d5ce6f79d31be8dbfa0b175b8413e4326af18baa20a42d9661bc09e91f04edd8329d4c0df2ca6f62983df3daef67d38342269
2+
EBUILD sqlparse-0.5.0.ebuild 483 BLAKE2B 4ec2efa49eda36673452400250f739fac2c51301aeb16674bd853efb27c3fdca1219180cdef4deffc7b38d971a3b0adf7effeb07863153b52f415848d1e3ebc0 SHA512 3bf49b28c5fe90462891d3a68de348cdf8475b27862120435a7c0fa938a81bb6b397f59a7bdaee410aa38cae2a07450fa5d3db1aaf7a9227e629ce20f8436726
3+
MISC metadata.xml 520 BLAKE2B 06fb8ac7579b89686a917ffe90d86d3f8e0a183b241df988a28327ca716712536ded35d323e20cf4b9e0240b8435215f77e02ba8336a680d4c7eb70bbbe00660 SHA512 d1514cb58679ef052eda31169d8622b3ba535e3958dfe99c4259d07fe19b14576a5083edaf9affb17b2df5197966619cbc778262631dce4c0f2a808112d9046f

dev-python/sqlparse/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">sqlparse</remote-id>
10+
<remote-id type="github">andialbrecht/sqlparse</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Andi Albrecht</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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=hatchling
7+
PYTHON_COMPAT=( python3_{11..13} )
8+
9+
inherit distutils-r1 pypi
10+
11+
DESCRIPTION="A non-validating SQL parser module for Python"
12+
HOMEPAGE="
13+
https://github.com/andialbrecht/sqlparse/
14+
https://pypi.org/project/sqlparse/
15+
"
16+
17+
LICENSE="BSD-2"
18+
SLOT="0"
19+
KEYWORDS="amd64 arm arm64 x86"
20+
21+
distutils_enable_sphinx docs/source
22+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)