* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2024-06-04 19:00 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2024-06-04 19:00 UTC (permalink / raw
To: gentoo-commits
commit: 892e054f8c7ae80ac69c080eb54e72e0ecf8453e
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Tue Jun 4 18:55:53 2024 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Tue Jun 4 18:59:53 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=892e054f
app-backup/b2-3.18.0: fix broken tests.
On the last version bump, the number of skipped tests was decreased in
an attempt to improve test coverage. This was poorly tested resulting in
failing tests.
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
Closes: https://bugs.gentoo.org/932105
app-backup/b2/b2-3.18.0.ebuild | 22 ++++++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/app-backup/b2/b2-3.18.0.ebuild b/app-backup/b2/b2-3.18.0.ebuild
index de51fe0a3..d9cef16ef 100644
--- a/app-backup/b2/b2-3.18.0.ebuild
+++ b/app-backup/b2/b2-3.18.0.ebuild
@@ -48,11 +48,25 @@ DEPEND="
distutils_enable_tests pytest
-# - integration tests require an application key and id (which is reasonable)
-# - sync tests require network access
+EPYTEST_DESELECT=(
+ # fixture 'worker_id' not found
+ "test/integration/test_b2_command_line.py"
+ "test/integration/test_help.py::test_help"
+ "test/integration/test_autocomplete.py"
+
+ # Timeout exceeded
+ # I think this is trying to access files outside of the sandbox
+ "test/unit/console_tool/test_install_autocomplete.py::test_install_autocomplete"
+
+ # TypeError: super(type, obj): obj must be an instance or subtype of type
+ # This test itself does not fail, but running it causes subsequent test to
+ # fail, which otherwise pass. Not really sure why (I assume this test is
+ # somehow polluting the test fixture?) but disabling causes the other tests
+ # to pass
+ "test/unit/_cli/test_autocomplete_cache.py"
+)
python_test() {
- epytest --deselect test/unit/console_tool test/unit
- epytest test/unit/console_tool
+ epytest test
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2024-06-05 0:04 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2024-06-05 0:04 UTC (permalink / raw
To: gentoo-commits
commit: 1bfdd20db1fccf22764ecfdcf06d2a1e1a36c6e5
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Wed Jun 5 00:03:45 2024 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Wed Jun 5 00:03:45 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1bfdd20d
app-backup/b2: remove redundant test code
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/b2-3.18.0.ebuild | 3 ---
app-backup/b2/b2-4.0.1.ebuild | 3 ---
2 files changed, 6 deletions(-)
diff --git a/app-backup/b2/b2-3.18.0.ebuild b/app-backup/b2/b2-3.18.0.ebuild
index d9cef16ef..c4fd77264 100644
--- a/app-backup/b2/b2-3.18.0.ebuild
+++ b/app-backup/b2/b2-3.18.0.ebuild
@@ -65,9 +65,6 @@ EPYTEST_DESELECT=(
# to pass
"test/unit/_cli/test_autocomplete_cache.py"
)
-python_test() {
- epytest test
-}
pkg_postinst() {
elog "The b2 executable has been renamed to backblaze2 in order to"
diff --git a/app-backup/b2/b2-4.0.1.ebuild b/app-backup/b2/b2-4.0.1.ebuild
index 1f428d20f..35d2c99fd 100644
--- a/app-backup/b2/b2-4.0.1.ebuild
+++ b/app-backup/b2/b2-4.0.1.ebuild
@@ -65,9 +65,6 @@ EPYTEST_DESELECT=(
# to pass
"test/unit/_cli/test_autocomplete_cache.py"
)
-python_test() {
- epytest test
-}
pkg_postinst() {
elog "The b2 executable has been renamed to backblaze2 in order to"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2024-04-03 2:40 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2024-04-03 2:40 UTC (permalink / raw
To: gentoo-commits
commit: 683347b16b1a3b51098bf5c811f93122e8231446
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Wed Apr 3 02:30:17 2024 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Wed Apr 3 02:40:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=683347b1
app-backup/b2-3.9.0: update PYTHON_COMPAT
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/b2-3.9.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-backup/b2/b2-3.9.0.ebuild b/app-backup/b2/b2-3.9.0.ebuild
index e7159e74cd..92990f4610 100644
--- a/app-backup/b2/b2-3.9.0.ebuild
+++ b/app-backup/b2/b2-3.9.0.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-PYTHON_COMPAT=( python3_10 python3_11 )
+PYTHON_COMPAT=( python3_10 python3_11 python3_12 )
DISTUTILS_USE_PEP517=setuptools
DISTUTILS_SINGLE_IMPL=1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2023-06-05 3:13 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2023-06-05 3:13 UTC (permalink / raw
To: gentoo-commits
commit: b98316887ee5dbb1430461d26013bbe317687ae4
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Mon Jun 5 01:36:36 2023 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Mon Jun 5 03:13:17 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b9831688
app-backup/b2: Bump PYTHON_COMPAT to 3.11
Also addressed a few lints
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/b2-3.4.0.ebuild | 4 ++--
app-backup/b2/metadata.xml | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/app-backup/b2/b2-3.4.0.ebuild b/app-backup/b2/b2-3.4.0.ebuild
index 8e9a4ac79..1af6890ea 100644
--- a/app-backup/b2/b2-3.4.0.ebuild
+++ b/app-backup/b2/b2-3.4.0.ebuild
@@ -3,8 +3,8 @@
EAPI=7
-PYTHON_COMPAT=( python3_10 )
-
+PYTHON_COMPAT=( python3_10 python3_11 )
+DISTUTILS_USE_PEP517=setuptools
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1 pypi
diff --git a/app-backup/b2/metadata.xml b/app-backup/b2/metadata.xml
index 917b9a52a..cb84a3148 100644
--- a/app-backup/b2/metadata.xml
+++ b/app-backup/b2/metadata.xml
@@ -11,4 +11,7 @@
This program provides command-line access to the B2 service.
</longdescription>
+ <upstream>
+ <remote-id type="github">Backblaze/B2_Command_Line_Tool</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2023-03-09 7:53 Anna Vyalkova
0 siblings, 0 replies; 11+ messages in thread
From: Anna Vyalkova @ 2023-03-09 7:53 UTC (permalink / raw
To: gentoo-commits
commit: f47258a370f943c04011da50c5cc7edcb7e21c29
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Mar 9 07:52:26 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Mar 9 07:52:26 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f47258a3
app-backup/b2: drop 3.0.3
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
app-backup/b2/Manifest | 1 -
app-backup/b2/b2-3.0.3.ebuild | 58 -------------------------------------------
2 files changed, 59 deletions(-)
diff --git a/app-backup/b2/Manifest b/app-backup/b2/Manifest
index 1c9c1877a..939d66585 100644
--- a/app-backup/b2/Manifest
+++ b/app-backup/b2/Manifest
@@ -1,2 +1 @@
-DIST b2-3.0.3.tar.gz 78692 BLAKE2B b216b40e7d3bb0a7b5564418ea463bf9e143a0f1a1408ebe2312869943e5bfbae175afa75aadbe203c05b71026f0fc8fa8f6031b7c3a636ba9b9b6017e2e17be SHA512 61ef1dd1d406f04b50b0d8bb3df921127d996465d53f00dc4cf77d5b6e63ce15fdb9a2d1fc5d7d1c01e734c93fe3e4fe316ca43f420aa6c31f7e3d88e134b659
DIST b2-3.4.0.tar.gz 86706 BLAKE2B 2aa1f4934db0bcf8c1334a5def94fd74824a9ca19d293b201b29f8c4511e8d423fd77d71734c386aeb41e60747ea71d36d8c049676cf6fcd3e101354440da8cc SHA512 5b0f411301f9b022c066ab3a1170d2ef3b21a76fe9c4e668d1da0cbd07334d11614f93d283e5c0482cb4f6985466d28b0fe59b4c058a87643218dd7a96857418
diff --git a/app-backup/b2/b2-3.0.3.ebuild b/app-backup/b2/b2-3.0.3.ebuild
deleted file mode 100644
index 7d0fd5735..000000000
--- a/app-backup/b2/b2-3.0.3.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-DESCRIPTION="Command-line tool for BackBlaze's B2 product"
-HOMEPAGE="https://github.com/Backblaze/B2_Command_Line_Tool"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.5.0-nameclash.patch"
- "${FILESDIR}/${PN}-2.5.0-disable-pip-requirement-installs.patch"
-)
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/arrow-0.8.0[${PYTHON_USEDEP}]
- >=dev-python/b2sdk-1.12.0[${PYTHON_USEDEP}]
- >=dev-python/docutils-0.16[${PYTHON_USEDEP}]
- >=dev-python/phx-class-registry-3.0.5[${PYTHON_USEDEP}]
- >=dev-python/rst2ansi-0.1.5[${PYTHON_USEDEP}]
- ')
- $(python_gen_cond_dep '
- <dev-python/importlib_metadata-3.0.0[${PYTHON_USEDEP}]
- ' pypy3 python3_7)
- $(python_gen_cond_dep '
- >=dev-python/importlib_metadata-3.3.0[${PYTHON_USEDEP}]
- ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-# - integration tests require an application key and id (which is # reasonable)
-# - sync tests require network access
-# - Per https://github.com/Backblaze/B2_Command_Line_Tool/issues/687 , the
-# parse_millis test is broken due to an upstream issue
-python_test() {
- epytest \
- --deselect test/integration/test_b2_command_line.py::test_integration \
- --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_exact \
- --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_in_range \
- --deselect test/unit/test_arg_parser.py::TestCustomArgTypes::test_parse_millis_from_float_timestamp
-}
-
-pkg_postinst() {
- elog "The b2 executable has been renamed to backblaze2 in order to"
- elog "avoid a name clash with b2 from boost-build"
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2022-07-15 3:11 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2022-07-15 3:11 UTC (permalink / raw
To: gentoo-commits
commit: 51b97af9334dff118b83375cbf341c0b24450154
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri Jul 15 02:42:31 2022 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri Jul 15 03:11:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=51b97af9
app-backup/b2: drop old version
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/Manifest | 1 -
app-backup/b2/b2-2.5.0-r1.ebuild | 54 ----------------------------------------
2 files changed, 55 deletions(-)
diff --git a/app-backup/b2/Manifest b/app-backup/b2/Manifest
index 01eedbe3e..1c9c1877a 100644
--- a/app-backup/b2/Manifest
+++ b/app-backup/b2/Manifest
@@ -1,3 +1,2 @@
-DIST b2-2.5.0.tar.gz 72245 BLAKE2B 321114925d594af631a2d489b46a45d35113f561c19223ba62a2777c3c4d578a5ec494c86f35ea4574f81c569de18eba1622a0a8af83379a61ac1341f9050597 SHA512 f9377bd1bbc61d4297afc4080173695df7d3f8461ba0b3c47c408e5cdfd195542a81a4110316d132dab69a90ab6e0a9bf2b08b7b2e4317d29ce8e49d327819ca
DIST b2-3.0.3.tar.gz 78692 BLAKE2B b216b40e7d3bb0a7b5564418ea463bf9e143a0f1a1408ebe2312869943e5bfbae175afa75aadbe203c05b71026f0fc8fa8f6031b7c3a636ba9b9b6017e2e17be SHA512 61ef1dd1d406f04b50b0d8bb3df921127d996465d53f00dc4cf77d5b6e63ce15fdb9a2d1fc5d7d1c01e734c93fe3e4fe316ca43f420aa6c31f7e3d88e134b659
DIST b2-3.4.0.tar.gz 86706 BLAKE2B 2aa1f4934db0bcf8c1334a5def94fd74824a9ca19d293b201b29f8c4511e8d423fd77d71734c386aeb41e60747ea71d36d8c049676cf6fcd3e101354440da8cc SHA512 5b0f411301f9b022c066ab3a1170d2ef3b21a76fe9c4e668d1da0cbd07334d11614f93d283e5c0482cb4f6985466d28b0fe59b4c058a87643218dd7a96857418
diff --git a/app-backup/b2/b2-2.5.0-r1.ebuild b/app-backup/b2/b2-2.5.0-r1.ebuild
deleted file mode 100644
index 9568e7ce0..000000000
--- a/app-backup/b2/b2-2.5.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-DESCRIPTION="Command-line tool for BackBlaze's B2 product"
-HOMEPAGE="https://github.com/Backblaze/B2_Command_Line_Tool"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=(
- "${FILESDIR}/${PN}-2.5.0-nameclash.patch"
- "${FILESDIR}/${PN}-2.5.0-disable-pip-requirement-installs.patch"
-)
-
-RDEPEND="
- $(python_gen_cond_dep '
- >=dev-python/arrow-0.8.0[${PYTHON_USEDEP}]
- >=dev-python/b2sdk-1.8.0[${PYTHON_USEDEP}]
- >=dev-python/docutils-0.16[${PYTHON_USEDEP}]
- >=dev-python/phx-class-registry-3.0.5[${PYTHON_USEDEP}]
- >=dev-python/rst2ansi-0.1.5[${PYTHON_USEDEP}]
- ')
- $(python_gen_cond_dep '
- <dev-python/importlib_metadata-3.0.0[${PYTHON_USEDEP}]
- ' pypy3 python3_7)
- $(python_gen_cond_dep '
- >=dev-python/importlib_metadata-3.3.0[${PYTHON_USEDEP}]
- ' pypy3 python3_8)
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- epytest \
- --deselect test/integration/test_b2_command_line.py::test_integration \
- --deselect test/unit/test_arg_parser.py::TestCustomArgTypes::test_parse_millis_from_float_timestamp \
- --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_exact \
- --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_in_range
-}
-
-pkg_postinst() {
- elog "The b2 executable has been renamed to backblaze2 in order to"
- elog "avoid a name clash with b2 from boost-build"
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2021-10-01 20:23 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2021-10-01 20:23 UTC (permalink / raw
To: gentoo-commits
commit: d65c26e51fdae04e7195077cb71f9eeaa1ce510d
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri Oct 1 20:23:14 2021 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri Oct 1 20:23:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d65c26e5
app-backup/b2: bump to 3.0.3
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/Manifest | 1 +
app-backup/b2/b2-3.0.3.ebuild | 58 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/app-backup/b2/Manifest b/app-backup/b2/Manifest
index 79c31e99d..9e0338705 100644
--- a/app-backup/b2/Manifest
+++ b/app-backup/b2/Manifest
@@ -1 +1,2 @@
DIST b2-2.5.0.tar.gz 72245 BLAKE2B 321114925d594af631a2d489b46a45d35113f561c19223ba62a2777c3c4d578a5ec494c86f35ea4574f81c569de18eba1622a0a8af83379a61ac1341f9050597 SHA512 f9377bd1bbc61d4297afc4080173695df7d3f8461ba0b3c47c408e5cdfd195542a81a4110316d132dab69a90ab6e0a9bf2b08b7b2e4317d29ce8e49d327819ca
+DIST b2-3.0.3.tar.gz 78692 BLAKE2B b216b40e7d3bb0a7b5564418ea463bf9e143a0f1a1408ebe2312869943e5bfbae175afa75aadbe203c05b71026f0fc8fa8f6031b7c3a636ba9b9b6017e2e17be SHA512 61ef1dd1d406f04b50b0d8bb3df921127d996465d53f00dc4cf77d5b6e63ce15fdb9a2d1fc5d7d1c01e734c93fe3e4fe316ca43f420aa6c31f7e3d88e134b659
diff --git a/app-backup/b2/b2-3.0.3.ebuild b/app-backup/b2/b2-3.0.3.ebuild
new file mode 100644
index 000000000..65ae71bbd
--- /dev/null
+++ b/app-backup/b2/b2-3.0.3.ebuild
@@ -0,0 +1,58 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..9} )
+
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1
+
+DESCRIPTION="Command-line tool for BackBlaze's B2 product"
+HOMEPAGE="https://github.com/Backblaze/B2_Command_Line_Tool"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.5.0-nameclash.patch"
+ "${FILESDIR}/${PN}-2.5.0-disable-pip-requirement-installs.patch"
+)
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ >=dev-python/arrow-0.8.0[${PYTHON_USEDEP}]
+ >=dev-python/b2sdk-1.12.0[${PYTHON_USEDEP}]
+ >=dev-python/docutils-0.16[${PYTHON_USEDEP}]
+ >=dev-python/phx-class-registry-3.0.5[${PYTHON_USEDEP}]
+ >=dev-python/rst2ansi-0.1.5[${PYTHON_USEDEP}]
+ ')
+ $(python_gen_cond_dep '
+ <dev-python/importlib_metadata-3.0.0[${PYTHON_USEDEP}]
+ ' pypy3 python3_7)
+ $(python_gen_cond_dep '
+ >=dev-python/importlib_metadata-3.3.0[${PYTHON_USEDEP}]
+ ' pypy3 python3_8)
+"
+
+distutils_enable_tests pytest
+
+# - integration tests require an application key and id (which is # reasonable)
+# - sync tests require network access
+# - Per https://github.com/Backblaze/B2_Command_Line_Tool/issues/687 , the
+# parse_millis test is broken due to an upstream issue
+python_test() {
+ epytest \
+ --deselect test/integration/test_b2_command_line.py::test_integration \
+ --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_exact \
+ --deselect test/unit/test_console_tool.py::TestConsoleTool::test_sync_exclude_if_modified_after_in_range \
+ --deselect test/unit/test_arg_parser.py::TestCustomArgTypes::test_parse_millis_from_float_timestamp
+}
+
+pkg_postinst() {
+ elog "The b2 executable has been renamed to backblaze2 in order to"
+ elog "avoid a name clash with b2 from boost-build"
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2021-10-01 20:01 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2021-10-01 20:01 UTC (permalink / raw
To: gentoo-commits
commit: 73f41c54d2738acce01374366035931272ebb6b5
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri Oct 1 19:55:03 2021 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri Oct 1 20:01:30 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=73f41c54
app-backup/b2: add revbump due to RDEPEND change
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/{b2-2.5.0.ebuild => b2-2.5.0-r1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/app-backup/b2/b2-2.5.0.ebuild b/app-backup/b2/b2-2.5.0-r1.ebuild
similarity index 100%
rename from app-backup/b2/b2-2.5.0.ebuild
rename to app-backup/b2/b2-2.5.0-r1.ebuild
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2021-10-01 18:40 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2021-10-01 18:40 UTC (permalink / raw
To: gentoo-commits
commit: b94aeb0dfea9498df363fa648128aa784ba6a2c7
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri Oct 1 18:39:09 2021 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri Oct 1 18:39:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b94aeb0d
app-backup/b2: remove spurious DISTUTILS_USE_SETUPTOOLS
Closes: https://bugs.gentoo.org/815535
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
app-backup/b2/b2-2.5.0.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/app-backup/b2/b2-2.5.0.ebuild b/app-backup/b2/b2-2.5.0.ebuild
index adadbda20..5cab86214 100644
--- a/app-backup/b2/b2-2.5.0.ebuild
+++ b/app-backup/b2/b2-2.5.0.ebuild
@@ -6,7 +6,6 @@ EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2021-06-04 19:52 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2021-06-04 19:52 UTC (permalink / raw
To: gentoo-commits
commit: b659d74c937492ec1b540fc90415cc2ff7dcabf3
Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
AuthorDate: Fri Jun 4 19:51:08 2021 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Fri Jun 4 19:51:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b659d74c
app-backup/b2: add missing docutils dependency
Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com>
Closes: https://bugs.gentoo.org/794133
app-backup/b2/b2-2.5.0.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/app-backup/b2/b2-2.5.0.ebuild b/app-backup/b2/b2-2.5.0.ebuild
index e716db900..adadbda20 100644
--- a/app-backup/b2/b2-2.5.0.ebuild
+++ b/app-backup/b2/b2-2.5.0.ebuild
@@ -27,6 +27,7 @@ RDEPEND="
$(python_gen_cond_dep '
>=dev-python/arrow-0.8.0[${PYTHON_USEDEP}]
>=dev-python/b2sdk-1.8.0[${PYTHON_USEDEP}]
+ >=dev-python/docutils-0.16[${PYTHON_USEDEP}]
>=dev-python/phx-class-registry-3.0.5[${PYTHON_USEDEP}]
>=dev-python/rst2ansi-0.1.5[${PYTHON_USEDEP}]
')
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/
@ 2021-01-04 5:19 Wolfgang E. Sanyer
0 siblings, 0 replies; 11+ messages in thread
From: Wolfgang E. Sanyer @ 2021-01-04 5:19 UTC (permalink / raw
To: gentoo-commits
commit: 5e994531efe6e4def125d2cbafd90cfd37409ce5
Author: Wolfgang E. Sanyer <WolfgangESanyer <AT> gmail <DOT> com>
AuthorDate: Mon Jan 4 05:18:20 2021 +0000
Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com>
CommitDate: Mon Jan 4 05:18:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5e994531
app-backup/b2: remove proxy maintainer info from metadata
Signed-off-by: Wolfgang E. Sanyer <WolfgangESanyer <AT> gmail.com>
app-backup/b2/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-backup/b2/metadata.xml b/app-backup/b2/metadata.xml
index 6e00138a..5440a39c 100644
--- a/app-backup/b2/metadata.xml
+++ b/app-backup/b2/metadata.xml
@@ -5,10 +5,6 @@
<email>ezzieyguywuf@gmail.com</email>
<name>Wolfgang E. Sanyer</name>
</maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
<longdescription lang="en">
The command-line tool that gives easy access to all of the capabilities
of B2 Cloud Storage.
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-06-05 0:04 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-04 19:00 [gentoo-commits] repo/proj/guru:dev commit in: app-backup/b2/ Wolfgang E. Sanyer
-- strict thread matches above, loose matches on Subject: below --
2024-06-05 0:04 Wolfgang E. Sanyer
2024-04-03 2:40 Wolfgang E. Sanyer
2023-06-05 3:13 Wolfgang E. Sanyer
2023-03-09 7:53 Anna Vyalkova
2022-07-15 3:11 Wolfgang E. Sanyer
2021-10-01 20:23 Wolfgang E. Sanyer
2021-10-01 20:01 Wolfgang E. Sanyer
2021-10-01 18:40 Wolfgang E. Sanyer
2021-06-04 19:52 Wolfgang E. Sanyer
2021-01-04 5:19 Wolfgang E. Sanyer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox