diff options
author | David Roman <davidroman96@gmail.com> | 2024-04-21 16:23:39 -0700 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2024-04-21 16:33:19 -0700 |
commit | 3eceedb6b96bf5214eaa84cfd8ef6da148d26369 (patch) | |
tree | 75750b57633206f2dbe045b1e3b688947996303d /www-misc | |
parent | gui-apps/wofi: add 1.4 (diff) | |
download | gentoo-3eceedb6b96bf5214eaa84cfd8ef6da148d26369.tar.gz gentoo-3eceedb6b96bf5214eaa84cfd8ef6da148d26369.tar.bz2 gentoo-3eceedb6b96bf5214eaa84cfd8ef6da148d26369.zip |
www-misc/buku: add 4.9
Closes: https://bugs.gentoo.org/929879
Signed-off-by: David Roman <davidroman96@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/36243
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'www-misc')
-rw-r--r-- | www-misc/buku/Manifest | 1 | ||||
-rw-r--r-- | www-misc/buku/buku-4.9.ebuild | 77 |
2 files changed, 78 insertions, 0 deletions
diff --git a/www-misc/buku/Manifest b/www-misc/buku/Manifest index fd6de91b4d7b..0d0153569be1 100644 --- a/www-misc/buku/Manifest +++ b/www-misc/buku/Manifest @@ -1 +1,2 @@ DIST buku-4.8.tar.gz 591883 BLAKE2B 459ff04a414d3f320a76e8d7792a977f40b030597b846cff34abc862f062956dcfe477d01606744b13e8afe1c6d48f73848816488094f4941b4723a5cd4fedb6 SHA512 a87311adbd72ed614e870c24ecf890633672a6dab12d18f40017177049b2aaebbc66776740f893248b99f2f79d85b6d7b9e57c1fd1bbf6c95963ca57649dc2bf +DIST buku-4.9.tar.gz 615794 BLAKE2B 79e0b7980d1df2b063be5b115c6d55fce63b9e9a58bae5c1ae4d81d77b644c90df2698e20a1743daf5468f4b08ab7b2125af073906385693419249b989686f3f SHA512 3804ea759c3b0172ab07b266123b27683f4785f1fb10859b4fd5b41e267b93e6ad0901b2456a27e434aef216f2063c5881d2755ec45789b3f2d42fe608b32eb2 diff --git a/www-misc/buku/buku-4.9.ebuild b/www-misc/buku/buku-4.9.ebuild new file mode 100644 index 000000000000..a97191b80844 --- /dev/null +++ b/www-misc/buku/buku-4.9.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10,11,12} ) +PYTHON_REQ_USE="sqlite" + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="Powerful command-line bookmark manager" +HOMEPAGE="https://github.com/jarun/buku" +SRC_URI="https://github.com/jarun/${PN}/archive/v$(ver_cut 1-2).tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/beautifulsoup4-4.6.0[${PYTHON_USEDEP}] + dev-python/cryptography[${PYTHON_USEDEP}] + >=dev-python/html5lib-1.0.1[${PYTHON_USEDEP}] + dev-python/urllib3[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + test? ( + dev-python/attrs[${PYTHON_USEDEP}] + >=dev-python/click-7.0[${PYTHON_USEDEP}] + dev-python/hypothesis[${PYTHON_USEDEP}] + >=dev-python/py-1.5.0[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + >=dev-python/pyyaml-4.2[${PYTHON_USEDEP}] + >=dev-python/vcrpy-4.0.2[${PYTHON_USEDEP}] + ) +" + +EPYTEST_IGNORE=( + # bukuserver tests + tests/test_views.py + tests/test_server.py +) + +EPYTEST_DESELECT=( + # Broken with network-sandbox + tests/test_buku.py::test_network_handler_with_url + tests/test_buku.py::test_fetch_data_with_url + tests/test_bukuDb.py::TestBukuDb::test_tnyfy_url + tests/test_bukuDb.py::test_add_rec_exec_arg + tests/test_bukuDb.py::test_load_firefox + tests/test_bukuDb.py::test_print_db + tests/test_bukuDb.py::test_print_rec + tests/test_bukuDb.py::test_refreshdb +) + +distutils_enable_tests pytest + +python_prepare_all() { + # Remove support for bukuserver - complex depgraph which isn't all + # sufficiently packaged in Gentoo + sed -ie '/console_scripts/s/,.*/]/' setup.py || die + + distutils-r1_python_prepare_all +} + +python_install_all() { + distutils-r1_python_install_all + + insinto /usr/share/zsh/site-functions + doins auto-completion/zsh/_* + + newbashcomp auto-completion/bash/buku-completion.bash "${PN}" + + doman buku.1 +} |