add ha-av-10.0.0_beta4

This commit is contained in:
Andreas Billmeier 2022-07-16 13:32:08 +02:00 committed by Andreas Billmeier
parent f784c34be6
commit b13e6e8920
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 14 additions and 10 deletions

View File

@ -564,9 +564,9 @@ There are 1768 Ebuilds in total, 1761 of them have in total 1769 (35 different)
|CC-BY-NC-SA-4.0|1|
|CC0-1.0|1|
(Last counted: 09/07/2022)
(Last counted: 16/07/2022)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 09/07/2022
Last updated: 16/07/2022

View File

@ -1,3 +1,3 @@
DIST ha-av-9.1.1_p3.tar.gz 2384953 BLAKE2B b3cd9f3cbcb730661c6ed0c1d36a8c1298dd9a6bbdfc721096acfa423b157aed0d302179ce56df7d32b51d349300dbc1935a52a4ebd1a577dd1217243717a2e4 SHA512 d40360c82f535af669c97aabf0de81078b05e7861b297d912e9f903d63f76d0c579dafdaf0403d0a1b4ca3f8e008dd53dd7d30418d6f0ac209a7550779630bf1
EBUILD ha-av-9.1.1_p3.ebuild 832 BLAKE2B 34945e643c4c43cf340946ff4354ee44dabb2e850ab0b3313e21f084598ab30ba455127393ac8632119e949eff2e48879add2a759929f5f19a7a660798826ffb SHA512 5480853fa2b87980d357d92bb5a6a4ed9d4cff36df082a30afdb93f9be1d85c442073642f8d9391683edb93cb5dcc45c5c3f2098db7194db44b7f4f596ea7c89
DIST ha-av-10.0.0b4.tar.gz 2496702 BLAKE2B 47650a53b1dd10399c20d2869f305cf7ff2f306247762264c4fc006a550903d048808be2821bf180cfdc59b0fd37dfb52dd0e6c2f17428ecfe8ba5172fee7db8 SHA512 227eb2c00c1b8158083fcf03e749718cfd79b80276b01a61b6612177484344747c9fb718c6a8d779c74eb1de634e2588f35ccf0ffd7f1a8a2c21721c8eca32dc
EBUILD ha-av-10.0.0_beta4.ebuild 936 BLAKE2B 25b39b943c8d9263f6ac436f8e823b4fd787d3c66b7927a1971ab9d7a0fef98dd86a56af3c54ef212250b9d98be64d30500a61f7682e192a9cb7878aa2b51417 SHA512 49c029f96902443996369be6e6340904434d64378f16677eb3d25dd68b20d1a07730e952e74e5c5f552768e9278c1c159275976703618d4f38f895dfa637e01b
MISC metadata.xml 446 BLAKE2B 4db222b4ee4793ad47f72f48705f37ab1bd968241dba55ca1e099e9edbbc9ab0ddc52eb279a7133a96dd29f8733cb999879c0ee361850ff7a1d04f5049f0f4ae SHA512 06d8513282dba897a574d40c7be84178e3bfb6c31de2c6c8b48012dbb782b5204d0de4ab20014b531aab6a180ec7a932efb2fa8da8f298b2049caebdd8ef8ff5

View File

@ -8,21 +8,23 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Pythonic bindings for FFmpeg's libraries."
HOMEPAGE="https://github.com/PyAV-Org/PyAV https://pypi.org/project/ha-av/"
MY_PV=${PV/_p/.post}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"
HOMEPAGE="https://github.com/conda-forge/av-feedstock/ https://github.com/PyAV-Org/PyAV https://pypi.org/project/ha-av/"
MY_P=${P/_beta/b}
MY_PV=${PV/_beta/b}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="!dev-python/av
media-video/ffmpeg
dev-python/ha-ffmpeg[${PYTHON_USEDEP}]
media-plugins/gst-plugins-libav"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
@ -35,3 +37,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest