b95b73e26c
Happy new year! \o/
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2019 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"""
|
|
This file uses pmb.helper.pkgrel_bump to check if the aports need a pkgrel bump
|
|
for any package, caused by a soname bump. Example: A new libressl/openssl
|
|
version was released, which increased the soname version, and now all packages
|
|
that link against it, need to be rebuilt.
|
|
"""
|
|
|
|
import os
|
|
import pytest
|
|
import sys
|
|
|
|
import add_pmbootstrap_to_import_path
|
|
import pmb.helpers.pkgrel_bump
|
|
import pmb.helpers.logging
|
|
import pmb.parse
|
|
|
|
|
|
@pytest.fixture
|
|
def args(request):
|
|
# Initialize args
|
|
sys.argv = ["pmbootstrap",
|
|
"--aports", os.path.dirname(__file__) + "/../..",
|
|
"--log", "$WORK/log_testsuite_pmaports.txt"
|
|
"chroot"]
|
|
args = pmb.parse.arguments()
|
|
|
|
# Initialize logging
|
|
pmb.helpers.logging.init(args)
|
|
request.addfinalizer(args.logfd.close)
|
|
return args
|
|
|
|
|
|
@pytest.mark.pmaports_upstream_compat
|
|
def test_soname_bump(args):
|
|
if pmb.helpers.pkgrel_bump.auto(args, True):
|
|
raise RuntimeError("One or more packages need to be rebuilt, because"
|
|
" a library they link against had an incompatible"
|
|
" upgrade (soname bump). Run 'pmbootstrap"
|
|
" pkgrel_bump --auto' to automatically increase the"
|
|
" pkgrel in order to trigger a rebuild. If this"
|
|
" test case failed during a pull request, the issue"
|
|
" needs to be fixed on the 'master' branch first,"
|
|
" then rebase your PR on 'master' afterwards.")
|