Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-shaptools for openSUSE:Factory checked in at 2021-04-21 21:00:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-shaptools (Old) and /work/SRC/openSUSE:Factory/.python-shaptools.new.12324 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-shaptools" Wed Apr 21 21:00:26 2021 rev:19 rq:887289 version:0.3.12+git.1619007514.1951d23 Changes: -------- --- /work/SRC/openSUSE:Factory/python-shaptools/python-shaptools.changes 2021-03-16 15:46:22.461225908 +0100 +++ /work/SRC/openSUSE:Factory/.python-shaptools.new.12324/python-shaptools.changes 2021-04-21 21:01:12.594372442 +0200 @@ -3,0 +4 @@ +- Create version 0.3.12 @@ -5,0 +7 @@ + (bsc#1185090) Old: ---- python-shaptools-0.3.11+git.1615795734.75f5f46.tar.gz New: ---- python-shaptools-0.3.12+git.1619007514.1951d23.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-shaptools.spec ++++++ --- /var/tmp/diff_new_pack.QpxioC/_old 2021-04-21 21:01:13.030373129 +0200 +++ /var/tmp/diff_new_pack.QpxioC/_new 2021-04-21 21:01:13.034373135 +0200 @@ -22,7 +22,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-shaptools -Version: 0.3.11+git.1615795734.75f5f46 +Version: 0.3.12+git.1619007514.1951d23 Release: 0 Summary: Python tools to interact with SAP HANA utilities License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.QpxioC/_old 2021-04-21 21:01:13.078373205 +0200 +++ /var/tmp/diff_new_pack.QpxioC/_new 2021-04-21 21:01:13.082373211 +0200 @@ -5,7 +5,7 @@ <param name="exclude">.git</param> <param name="filename">python-shaptools</param> <param name="versionformat">@PARENT_TAG@+git.%ct.%h</param> - <param name="revision">75f5f461d591f0d34c1ab24b1579ff1e64fc20c2</param> + <param name="revision">1951d234b51114379befab11c99c92dfa179a83f</param> </service> <service name="recompress" mode="disabled"> ++++++ python-shaptools-0.3.11+git.1615795734.75f5f46.tar.gz -> python-shaptools-0.3.12+git.1619007514.1951d23.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-shaptools-0.3.11+git.1615795734.75f5f46/.github/workflows/shaptools-ci.yml new/python-shaptools-0.3.12+git.1619007514.1951d23/.github/workflows/shaptools-ci.yml --- old/python-shaptools-0.3.11+git.1615795734.75f5f46/.github/workflows/shaptools-ci.yml 2021-03-15 09:08:54.000000000 +0100 +++ new/python-shaptools-0.3.12+git.1619007514.1951d23/.github/workflows/shaptools-ci.yml 2021-04-21 14:18:34.000000000 +0200 @@ -1,6 +1,6 @@ name: Package CI # - this workflow will -# - test python version matrix [2.7, 3.6, 3.7, 3.8, 3.9] for coverage +# - test python version matrix [2.7, 3.6, 3.7, 3.8, 3.9] for coverage # - uploads coverage data to codeClimate and the results are linked as a badges in the README # - deliver the package content to the configured repository # - submit the new package content to the upstream repository @@ -9,10 +9,9 @@ PACKAGE_NAME: python-shaptools TAR_NAME: shaptools jobs: - + test-python: runs-on: ubuntu-18.04 - if: ${{ github.event_name != 'pull_request' }} strategy: matrix: os: [ubuntu-18.04] @@ -24,7 +23,7 @@ - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: ${{ matrix.python-version }} - name: Test python version [2.7, 3.6, 3.7, 3.8, 3.9] and install dependencies run: | python -m pip install --upgrade pip @@ -33,7 +32,7 @@ run: py.test -vv --cov=shaptools --cov-config .coveragerc --cov-report term --cov-report xml tests - name: Publish code coverage uses: paambaati/codeclimate-action@v2.7.5 - if: env.CC_TEST_REPORTER_ID != null + if: ${{ env.CC_TEST_REPORTER_ID != null && github.event_name != 'pull_request' }} env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: @@ -43,20 +42,20 @@ needs: [test-python] runs-on: ubuntu-18.04 if: ${{ github.event_name != 'pull_request' }} - container: + container: image: shap/continuous_deliver env: OBS_USER: ${{ secrets.OBS_USER }} OBS_PASS: ${{ secrets.OBS_PASS }} OBS_PROJECT: ${{ secrets.OBS_PROJECT }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: configure OSC + - name: configure OSC # OSC credentials must be configured beforehand as the HOME variables cannot be changed from /github/home - # that is used to run osc commands - run: | + # that is used to run osc commands + run: | /scripts/init_osc_creds.sh mkdir -p $HOME/.config/osc cp /root/.config/osc/oscrc $HOME/.config/osc @@ -64,12 +63,12 @@ run: | sed -i 's~%%VERSION%%~${{ github.sha }}~' _service && \ sed -i 's~%%REPOSITORY%%~${{ github.repository }}~' _service && \ - /scripts/upload.sh + /scripts/upload.sh submit: needs: [test-python, delivery] runs-on: ubuntu-18.04 - if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }} + if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }} container: image: shap/continuous_deliver env: @@ -83,8 +82,8 @@ fetch-depth: 0 - name: configure OSC # OSC credentials must be configured beforehand as the HOME variables cannot be changed from /github/home - # that is used to run osc commands - run: | + # that is used to run osc commands + run: | /scripts/init_osc_creds.sh mkdir -p $HOME/.config/osc cp /root/.config/osc/oscrc $HOME/.config/osc @@ -92,4 +91,4 @@ run: | sed -i 's~%%VERSION%%~${{ github.sha }}~' _service && \ sed -i 's~%%REPOSITORY%%~${{ github.repository }}~' _service && \ - /scripts/submit.sh \ No newline at end of file + /scripts/submit.sh diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-shaptools-0.3.11+git.1615795734.75f5f46/python-shaptools.changes new/python-shaptools-0.3.12+git.1619007514.1951d23/python-shaptools.changes --- old/python-shaptools-0.3.11+git.1615795734.75f5f46/python-shaptools.changes 2021-03-15 09:08:54.000000000 +0100 +++ new/python-shaptools-0.3.12+git.1619007514.1951d23/python-shaptools.changes 2021-04-21 14:18:34.000000000 +0200 @@ -1,13 +1,15 @@ ------------------------------------------------------------------- Fri Mar 12 14:59:00 UTC 2021 - Xabier Arbulu <xarb...@suse.com> -- Fix the HANA sidadm user creation to transform to lowercase - properly +- Create version 0.3.12 +- Fix the HANA sidadm user creation to transform to lowercase + properly + (bsc#1185090) ------------------------------------------------------------------- Tue Feb 9 13:26:18 UTC 2021 - Xabier Arbulu <xarb...@suse.com> -- Fix spec file to build properly the shapcli executable +- Fix spec file to build properly the shapcli executable ------------------------------------------------------------------- Thu Sep 24 12:16:46 UTC 2020 - Xabier Arbulu <xarb...@suse.com> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-shaptools-0.3.11+git.1615795734.75f5f46/shaptools/__init__.py new/python-shaptools-0.3.12+git.1619007514.1951d23/shaptools/__init__.py --- old/python-shaptools-0.3.11+git.1615795734.75f5f46/shaptools/__init__.py 2021-03-15 09:08:54.000000000 +0100 +++ new/python-shaptools-0.3.12+git.1619007514.1951d23/shaptools/__init__.py 2021-04-21 14:18:34.000000000 +0200 @@ -6,4 +6,4 @@ :since: 2018-11-15 """ -__version__ = "0.3.11" +__version__ = "0.3.12"