As we discussed in the last meeting, we reset the ports tree and began from scratch, even though this change involves porting all the packages. Starting small and growing gradually, this approach will reduce build times and consequently lower energy consumption in a world affected by climate change. We will add new ports as users needs arise; ok h3artbl33d@

This commit is contained in:
purplerain 2024-05-26 03:08:12 +00:00
parent 83a0aaf92c
commit 9a3af55370
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
59377 changed files with 98673 additions and 4712155 deletions

View file

@ -1,15 +0,0 @@
our strftime doesn't error out with %-d but just outputs -d rather
than doing whatever this test wants
Index: dateutil/test/test_parser.py
--- dateutil/test/test_parser.py.orig
+++ dateutil/test/test_parser.py
@@ -104,6 +104,8 @@ PARSER_TEST_CASES = [
# Check that we don't have any duplicates
assert len(set([x[0] for x in PARSER_TEST_CASES])) == len(PARSER_TEST_CASES)
+if sys.platform.startswith('openbsd'):
+ PLATFORM_HAS_DASH_D = False
@pytest.mark.parametrize("parsable_text,expected_datetime,assertion_message", PARSER_TEST_CASES)
def test_parser(parsable_text, expected_datetime, assertion_message):

View file

@ -0,0 +1,15 @@
our strftime doesn't error out with %-d but just outputs -d rather
than doing whatever this test wants
Index: tests/test_parser.py
--- tests/test_parser.py.orig
+++ tests/test_parser.py
@@ -29,6 +29,8 @@ try:
except ValueError:
pass
+if sys.platform.startswith('openbsd'):
+ PLATFORM_HAS_DASH_D = False
@pytest.fixture(params=[True, False])
def fuzzy(request):