Hello community,

here is the log from the commit of package votca-csgapps for openSUSE:Factory 
checked in at 2020-08-25 09:36:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/votca-csgapps (Old)
 and      /work/SRC/openSUSE:Factory/.votca-csgapps.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "votca-csgapps"

Tue Aug 25 09:36:08 2020 rev:14 rq:828954 version:1.6.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/votca-csgapps/votca-csgapps.changes      
2020-06-23 21:05:52.714091138 +0200
+++ /work/SRC/openSUSE:Factory/.votca-csgapps.new.3399/votca-csgapps.changes    
2020-08-25 09:37:15.616158387 +0200
@@ -1,0 +2,6 @@
+Sat Aug 22 18:52:19 UTC 2020 - Christoph Junghans <jungh...@votca.org>
+
+- Upgrade to 1.6.2
+  - details: https://github.com/votca/csg/blob/stable/CHANGELOG.md
+
+-------------------------------------------------------------------

Old:
----
  votca-csgapps-1.6.1.tar.gz

New:
----
  votca-csgapps-1.6.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ votca-csgapps.spec ++++++
--- /var/tmp/diff_new_pack.yXMIzq/_old  2020-08-25 09:37:16.696159018 +0200
+++ /var/tmp/diff_new_pack.yXMIzq/_new  2020-08-25 09:37:16.696159018 +0200
@@ -17,7 +17,7 @@
 #
 
 Name:       votca-csgapps
-Version:    1.6.1
+Version:    1.6.2
 %define     uversion %{version}
 Release:    0
 Summary:    VOTCA coarse-graining engine applications
@@ -56,7 +56,7 @@
 %fdupes %{buildroot}%{_prefix}
 
 %check
-make -C build test CTEST_OUTPUT_ON_FAILURE=1
+%ctest
 
 %files
 %doc README.md

++++++ votca-csgapps-1.6.1.tar.gz -> votca-csgapps-1.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/csgapps-1.6.1/.github/workflows/continuous-integration-workflow.yml 
new/csgapps-1.6.2/.github/workflows/continuous-integration-workflow.yml
--- old/csgapps-1.6.1/.github/workflows/continuous-integration-workflow.yml     
1970-01-01 01:00:00.000000000 +0100
+++ new/csgapps-1.6.2/.github/workflows/continuous-integration-workflow.yml     
2020-08-22 15:31:16.000000000 +0200
@@ -0,0 +1,75 @@
+name: CI
+on:
+  pull_request:
+    branches:
+      - master
+      - stable
+
+jobs:
+  CI:
+    continue-on-error: ${{ matrix.distro == 'ubuntu_devel' || matrix.distro == 
'fedora_rawhide' || matrix.continue-on-error == true }}
+    strategy:
+      matrix:
+        distro: [latest, fedora_rawhide, opensuse, ubuntu, ubuntu_devel, 
ubuntu_rolling, ubuntu_18.04]
+        toolchain: [gnu, clang]
+        cmake_build_type: [Release, Debug]
+        minimal: [false]
+        own_gmx: [false]
+        module_build: [false]
+        coverage: [false]
+        no_regression_testing: [true]
+        include:
+          - distro: latest
+            toolchain: gnu
+            cmake_build_type: Release
+            module_build: true
+            no_regression_testing: true
+    runs-on: ubuntu-latest
+    container: votca/buildenv:${{ matrix.distro }}
+    steps:
+      - uses: actions/checkout@v2.2.0
+        with:
+          fetch-depth: 0
+      - name: Run Votca Setup
+        id: setup
+        uses: votca/actions/setup@master
+        with:
+          distro: ${{ matrix.distro }}
+          toolchain: ${{ matrix.toolchain }}
+          minimal: ${{ matrix.minimal == true }}
+          module: ${{ matrix.module_build == true }}
+          own_gmx: ${{ matrix.own_gmx == true }}
+          regression_testing: ${{ matrix.no_regression_testing != true }}
+          coverage: ${{ matrix.coverage }}
+          cmake_build_type: ${{ matrix.cmake_build_type }}
+          ctest_args: ${{ matrix.ctest_args }}
+          cmake_args: ${{ matrix.cmake_args }}
+      - uses: actions/cache@v2
+        with:
+          path: ~/.ccache
+          key: ${{ steps.setup.outputs.cache_key }}
+          restore-keys: ${{ steps.setup.outputs.cache_restore_key }}
+      - name: CMake
+        run: mkdir builddir && cd builddir && cmake ${{ 
steps.setup.outputs.cmake_args }} ../votca
+      - name: Build
+        run: |
+          ccache -z
+          cmake --build builddir -- -j ${{ steps.setup.outputs.jobs }}
+          ccache -s
+      - name: Tests
+        run: ctest --output-on-failure ${{ steps.setup.outputs.ctest_args }}
+        working-directory: builddir
+      - name: Doxygen
+        if: ${{ ! matrix.module_build }}
+        run: cmake --build builddir --target doxygen
+      - name: Build Sphinx
+        if: ${{ steps.setup.outputs.build_sphinx == 'true' }}
+        run: cmake --build builddir --target doc
+      - name: Test DESTDIR Install
+        if: ${{ ! matrix.module_build }}
+        run: DESTDIR=${PWD}/install cmake --build builddir --target install && 
rm -rf ${PWD}/install/usr && rmdir ${PWD}/install
+      - name: Install
+        run: sudo cmake --build builddir --target install
+      - name: Check Formatting
+        if: ${{ steps.setup.outputs.check_format == 'true' }}
+        run: cmake --build builddir --target format && git -C votca/${{ 
steps.setup.outputs.module }} diff --exit-code
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.github/workflows/create-pr.yml 
new/csgapps-1.6.2/.github/workflows/create-pr.yml
--- old/csgapps-1.6.1/.github/workflows/create-pr.yml   1970-01-01 
01:00:00.000000000 +0100
+++ new/csgapps-1.6.2/.github/workflows/create-pr.yml   2020-08-22 
15:31:16.000000000 +0200
@@ -0,0 +1,37 @@
+name: Create PR
+on:
+  push:
+    branches:
+      - stable
+
+jobs:
+  PR:
+    name: Create
+    if: github.repository_owner == 'votca'
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout code
+        uses: actions/checkout@master
+        with:
+          ref: ${{ github.event.ref }}
+          fetch-depth: 0
+          token: ${{ secrets.VOTCA_BOT_TOKEN }}
+      - name: Try to merge master branch
+        run: |
+          git config --global user.name "Votca Bot"
+          git config --global user.email "git...@votca.org"
+          git checkout -b stable_fixes
+          git merge origin/master || true
+          git push origin stable_fixes
+      - name: Create Pull Request
+        uses: actions/github-script@0.3.0
+        with:
+          github-token: ${{ secrets.VOTCA_BOT_TOKEN }}
+          script: |
+            github.pulls.create({
+              owner: 'votca',
+              repo: 'csgapps',
+              title: 'Fixes from stable',
+              head: 'stable_fixes',
+              base: 'master'
+            })
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.github/workflows/create-release.yml 
new/csgapps-1.6.2/.github/workflows/create-release.yml
--- old/csgapps-1.6.1/.github/workflows/create-release.yml      1970-01-01 
01:00:00.000000000 +0100
+++ new/csgapps-1.6.2/.github/workflows/create-release.yml      2020-08-22 
15:31:16.000000000 +0200
@@ -0,0 +1,20 @@
+name: Make Release
+on:
+  push:
+    tags:
+    - 'v[1-9]*'
+
+jobs:
+  release:
+    name: Make Release
+    if: github.repository_owner == 'votca'
+    runs-on: ubuntu-latest
+    steps:
+      - name: Create Release
+        uses: actions/create-release@v1
+        env:
+          GITHUB_TOKEN: ${{ secrets.VOTCA_BOT_TOKEN }}
+        with:
+          tag_name: ${{ github.ref }}
+          release_name: ${{ github.ref }}
+          prerelease: ${{ contains(github.ref, 'rc') }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.github/workflows/format.yml 
new/csgapps-1.6.2/.github/workflows/format.yml
--- old/csgapps-1.6.1/.github/workflows/format.yml      1970-01-01 
01:00:00.000000000 +0100
+++ new/csgapps-1.6.2/.github/workflows/format.yml      2020-08-22 
15:31:16.000000000 +0200
@@ -0,0 +1,46 @@
+name: Format
+on:
+  issue_comment:
+    types: [created]
+jobs:
+  edit:
+    name: clang-format
+    if: ${{ github.event.comment.body == '@votca-bot format' }}
+    runs-on: ubuntu-latest
+    container: votca/buildenv:format
+    steps:
+      - name: Check if message comes from PR
+        uses: octokit/request-action@v2.x
+        id: issue_info
+        with:
+          route: GET /repos/:repository/issues/:pull_number
+          repository: ${{ github.repository }}
+          pull_number: ${{ github.event.issue.number }}
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+      - name: Get PR info
+        if: ${{ fromJSON(steps.issue_info.outputs.data).pull_request }}
+        uses: octokit/request-action@v2.x
+        id: pr_info
+        with:
+          route: GET /repos/:repository/pulls/:pull_number
+          repository: ${{ github.repository }}
+          pull_number: ${{ github.event.issue.number }}
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+      - name: Checkout head branch from PR
+        if: ${{ fromJSON(steps.issue_info.outputs.data).pull_request }}
+        uses: actions/checkout@master
+        with:
+          repository: ${{ 
fromJSON(steps.pr_info.outputs.data).head.repo.full_name }}
+          ref: ${{ fromJSON(steps.pr_info.outputs.data).head.ref }}
+          token: ${{ secrets.VOTCA_BOT_TOKEN }}
+      - name: Run clang-format
+        if: ${{ fromJSON(steps.issue_info.outputs.data).pull_request }}
+        run: find . -type f -regex ".*\.\(c\|h\|cc\|cpp\|hpp\)" -print0 | 
xargs -0 clang-format -i -style=file
+      - name: Commit and push
+        if: ${{ fromJSON(steps.issue_info.outputs.data).pull_request }}
+        run: |
+          git config --global user.name "Votca Bot"
+          git config --global user.email "git...@votca.org"
+          git add -u
+          git commit -m "Format code using $(clang-format --version)" || true
+          git push
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.github/workflows/forward-to-votca.yml 
new/csgapps-1.6.2/.github/workflows/forward-to-votca.yml
--- old/csgapps-1.6.1/.github/workflows/forward-to-votca.yml    1970-01-01 
01:00:00.000000000 +0100
+++ new/csgapps-1.6.2/.github/workflows/forward-to-votca.yml    2020-08-22 
15:31:16.000000000 +0200
@@ -0,0 +1,18 @@
+name: Forward
+on:
+  push:
+    branches:
+      - master
+      - stable
+
+jobs:
+  VOTCA:
+    if: github.repository_owner == 'votca'
+    runs-on: ubuntu-latest
+    steps:
+      - name: Update submodule
+        uses: votca/actions/forward@master
+        with:
+          module: ${{ github.repository }}
+          token: ${{ secrets.VOTCA_BOT_TOKEN }}
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.gitlab-ci.yml 
new/csgapps-1.6.2/.gitlab-ci.yml
--- old/csgapps-1.6.1/.gitlab-ci.yml    2020-06-21 15:20:21.000000000 +0200
+++ new/csgapps-1.6.2/.gitlab-ci.yml    1970-01-01 01:00:00.000000000 +0100
@@ -1,166 +0,0 @@
-stages:
-  - canary
-  - build
-
-.build:
-  retry:
-    max: 2
-  variables:
-    CCACHE_DIR: "${CI_PROJECT_DIR}/ccache"
-    DISTRO: "latest"
-  image: votca/buildenv:${DISTRO}
-  stage: build
-  artifacts:
-    paths:
-      - ${CI_PROJECT_DIR}/votca
-    when: always 
-  dependencies: []
-  cache:
-    paths:
-      - ccache/
-  script:
-    - ccache -z
-    - j="$(grep -c processor /proc/cpuinfo 2>/dev/null)" || j=0; ((j++))
-    - git branch commit_of_build_${CI_BUILD_ID} ${CI_COMMIT_SHA}
-    - git clone https://github.com/votca/votca
-    - pushd votca
-    - if [[ ${CI_COMMIT_TAG} = v[12].[0-9]* ]]; then
-        git checkout -b ${CI_COMMIT_TAG} ${CI_COMMIT_TAG};
-      elif [[ ( ${CI_COMMIT_REF_NAME} =~ ^for/([^/]*)/.* || 
${CI_COMMIT_REF_NAME} =~ ^(stable)$ ) && ${BASH_REMATCH[1]} != master ]]; then
-        git checkout -b ${BASH_REMATCH[1]} origin/${BASH_REMATCH[1]};
-      fi
-    - git submodule update --recursive --init
-    - git -C ${CI_PROJECT_NAME} fetch ${CI_PROJECT_DIR} 
commit_of_build_${CI_BUILD_ID}
-    - git -C ${CI_PROJECT_DIR} branch -d commit_of_build_${CI_BUILD_ID}
-    - git -C ${CI_PROJECT_NAME} checkout -f ${CI_COMMIT_SHA}
-    - mkdir -p build
-    - pushd build
-    - cmake .. -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTING=ON 
-DBUILD_CSGAPPS=ON -DENABLE_WERROR=ON
-      -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
-      -DMODULE_BUILD=${MODULE_BUILD} 
${MODULE_BUILD:+-DCMAKE_INSTALL_PREFIX=/home/votca/votca.install}
-    - cmake --build . -- -j2
-    - ctest --output-on-failure
-    - test -z "${MODULE_BUILD}" && DESTDIR=${PWD}/install cmake --build . 
--target install && rm -rf ${PWD}/install/usr && rmdir ${PWD}/install
-    - sudo cmake --build . --target install
-    - if [[ ${CLANG_FORMAT} ]]; then cmake --build . --target format && git -C 
${CI_PROJECT_DIR}/votca/${CI_PROJECT_NAME} diff --exit-code; fi
-    - ccache -s
-
-Debug GCC:
-  stage: canary
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Debug"
-    CLANG_FORMAT: "yes"
-  extends: .build
-
-None GCC:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: ""
-  extends: .build
-
-None Clang:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: ""
-  extends: .build
-
-Debug Clang:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Debug"
-  extends: .build
-
-Release GCC:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Release"
-  extends: .build
-
-Release Clang:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Release"
-  extends: .build
-
-Debug GCC Ubuntu:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Debug"
-    DISTRO: "ubuntu"
-  extends: .build
-
-Debug Clang Ubuntu:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Debug"
-    DISTRO: "ubuntu"
-  extends: .build
-
-Release GCC Ubuntu:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Release"
-    DISTRO: "ubuntu"
-  extends: .build
-
-Release Clang Ubuntu:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Release"
-    DISTRO: "ubuntu"
-  extends: .build
-
-Debug GCC Rawhide:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Debug"
-    DISTRO: "fedora_rawhide"
-  extends: .build
-  allow_failure: true
-
-Debug Clang Rawhide:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Debug"
-    DISTRO: "fedora_rawhide"
-  extends: .build
-  allow_failure: true
-
-Release GCC Rawhide:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Release"
-    DISTRO: "fedora_rawhide"
-  extends: .build
-  allow_failure: true
-
-Release Clang Rawhide:
-  variables:
-    CC: "clang"
-    CXX: "clang++"
-    CMAKE_BUILD_TYPE: "Release"
-    DISTRO: "fedora_rawhide"
-  extends: .build
-  allow_failure: true
-
-Release GCC Module:
-  variables:
-    CC: "gcc"
-    CXX: "g++"
-    CMAKE_BUILD_TYPE: "Release"
-    MODULE_BUILD: "yes"
-  extends: .build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/.travis.yml 
new/csgapps-1.6.2/.travis.yml
--- old/csgapps-1.6.1/.travis.yml       2020-06-21 15:20:21.000000000 +0200
+++ new/csgapps-1.6.2/.travis.yml       1970-01-01 01:00:00.000000000 +0100
@@ -1,136 +0,0 @@
-# the original source of this file can be found in votca/votca repository
-# add changes there!
-# To update:
-# wget -O .travis.yml 
https://raw.githubusercontent.com/votca/votca/master/.travis.yml
-language: cpp
-
-sudo: required
-
-services:
-- docker
-
-git:
-  quiet: true
-
-stages:
-  - canary
-  - test
-  - deploy
-
-jobs:
-  include:
-    - stage: canary
-      env: ENV=3
-    - stage: deploy
-      if: repo = votca/votca AND type != pull_request
-      env: ENV=1
-
-env:
-  matrix:
-    - ENV=1
-    - ENV=2
-    - ENV=3
-    - ENV=4
-    - ENV=5
-    - ENV=6
-    - ENV=7
-    - ENV=8
-    - ENV=9
-    - ENV=10
-    - ENV=11
-    - ENV=12
-    - ENV=13
-    - ENV=14
-    - ENV=15
-    - ENV=16
-    - ENV=17
-    - ENV=18
-    - ENV=19
-    - ENV=20
-
-before_script:
- - git checkout -b current_commit
- - cd ../../
- - if [[ ${TRAVIS_REPO_SLUG} = */votca ]]; then
-     if [[ ${TRAVIS_BRANCH} = next ]]; then
-       git -C ${TRAVIS_REPO_SLUG} submodule foreach git checkout master;
-       git -C ${TRAVIS_REPO_SLUG} submodule foreach git pull;
-     fi;
-     cp -vr ${TRAVIS_REPO_SLUG}/docker ${HOME};
-     mv -v ${TRAVIS_REPO_SLUG} $HOME/docker;
-   else
-     git clone -q --recursive https://github.com/votca/votca.git 
$HOME/docker/votca;
-     if [[ ${TRAVIS_BRANCH} != master ]]; then
-       git -C ${HOME}/docker/votca checkout -b ${TRAVIS_BRANCH} 
${TRAVIS_TAG:-origin/${TRAVIS_BRANCH}} && git -C ${HOME}/docker/votca submodule 
update --recursive --init;
-     fi;
-     git -C ${HOME}/docker/votca/${TRAVIS_REPO_SLUG#*/} fetch 
${PWD}/${TRAVIS_REPO_SLUG} current_commit;
-     git -C ${HOME}/docker/votca/${TRAVIS_REPO_SLUG#*/} checkout -f FETCH_HEAD;
-     cp -vr ${HOME}/docker/votca/docker/* ${HOME}/docker;
-     if [[ -d ${TRAVIS_REPO_SLUG}/docker ]]; then cp -vr 
${TRAVIS_REPO_SLUG}/docker/* ${HOME}/docker; fi;
-   fi
- - source ${HOME}/docker/set_env.sh
- - test -n "${SKIP}" || cp -r $HOME/.ccache ${HOME}/docker/ccache
- - sed -i "1s/latest/${DISTRO:-latest}/" ${HOME}/docker/Dockerfile
- - if [[ ! ${SKIP} ]]; then 
-     travis_retry timeout 540 docker pull $(sed -n '1s/FROM //p' 
${HOME}/docker/Dockerfile) | cat;
-   fi
-
-script:
- - if [[ ! ${SKIP} ]]; then
-     travis_retry docker build "${docker_opts[@]}"
-                 ${TRAVIS_TAG:+-t votca/votca:${TRAVIS_TAG}}
-                 -t votca/votca:latest -t votca/votca:${TRAVIS_BRANCH} 
${HOME}/docker/ &&
-     rm -rf $HOME/.ccache &&
-     CON=$(docker run -d votca/votca:${TRAVIS_BRANCH} /bin/bash) &&
-     docker cp ${CON}:/home/votca/.ccache ${HOME}/;
-   fi
-
-after_success:
-  - if [[ ${TRAVIS_REPO_SLUG} != votca/votca || ${TRAVIS_BUILD_STAGE_NAME} != 
"Deploy" || ${SKIP} ]]; then travis_terminate 0; fi
-  - shopt -s extglob && [[ ${TRAVIS_BRANCH} = @(master|stable|v1.*) ]] && 
DEPLOY=yes
-  - if [[ ${TRAVIS_BRANCH} = master ]]; then DOCKER_TAG=latest; else 
DOCKER_TAG="${TRAVIS_BRANCH}"; fi
-  - if [[ ${DOCKER_USERNAME} && ${DOCKER_PASSWORD} && ${TRAVIS_PULL_REQUEST} 
== false && ${DEPLOY} ]]; then
-        docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
-        docker push "${TRAVIS_REPO_SLUG}:${DOCKER_TAG}";
-    fi
-  - if true; then
-      git clone --depth=1 https://github.com/votca/doxygen.git "$HOME/devdoc";
-      cd $HOME/devdoc;
-      rm -f *;
-      git checkout -- CNAME;
-      docker cp ${CON}:/home/votca/votca/build/share/doc/html . ;
-      mv html/* .; rmdir html;
-      docker cp ${CON}:/home/votca/votca/build/csg-manual/manual.pdf . ;
-      docker cp ${CON}:/home/votca/votca/build/xtp/manual/xtp-manual.pdf . ;
-      git add --all .;
-      if [[ ${TRAVIS_BRANCH} = master && ${encrypted_7abbb71c3ba6_key} && 
${encrypted_7abbb71c3ba6_iv} && ${TRAVIS_PULL_REQUEST} == false ]]; then
-        git config --global user.name "Automatic Deployment (Travis CI)";
-        git config --global user.email "votca-comm...@googlegroups.com";
-        git commit -m "Documentation Update";
-        openssl aes-256-cbc -K $encrypted_7abbb71c3ba6_key -iv 
$encrypted_7abbb71c3ba6_iv -in keys/deploy3.enc -out ~/.ssh/id_rsa -d;
-        chmod 600 ~/.ssh/id_rsa;
-        git push g...@github.com:votca/doxygen.git gh-pages;
-      else
-        git status;
-        git diff --cached --no-color | head -c 1k;
-      fi;
-    fi
-
-branches:
-  only:
-  - master
-  - development
-  - stable
-  - next
-  - /^v\d+\.\d+(\.\d+|_rc\d+)?$/
-
-cache:
-  - ccache
-
-compiler:
-  - gcc
-  - clang
-
-notifications:
-  email:
-    - votca-comm...@googlegroups.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/CMakeLists.txt 
new/csgapps-1.6.2/CMakeLists.txt
--- old/csgapps-1.6.1/CMakeLists.txt    2020-06-21 15:20:21.000000000 +0200
+++ new/csgapps-1.6.2/CMakeLists.txt    2020-08-22 15:31:16.000000000 +0200
@@ -2,7 +2,7 @@
 
 project(csgapps)
 
-set(PROJECT_VERSION "1.6.1")
+set(PROJECT_VERSION "1.6.2")
 
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.6.1/README.md new/csgapps-1.6.2/README.md
--- old/csgapps-1.6.1/README.md 2020-06-21 15:20:21.000000000 +0200
+++ new/csgapps-1.6.2/README.md 2020-08-22 15:31:16.000000000 +0200
@@ -1,7 +1,6 @@
-[![Codacy 
Badge](https://api.codacy.com/project/badge/Grade/f9468cb3863b4a83b75eda6250755a3d)](https://www.codacy.com/manual/votca-package/csgapps?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=votca/csgapps&amp;utm_campaign=Badge_Grade)
+[![Codacy 
Badge](https://app.codacy.com/project/badge/Grade/c22e2fb9c1f24dfa9afaed66ecfd7c08)](https://www.codacy.com/gh/votca/csgapps?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=votca/csgapps&amp;utm_campaign=Badge_Grade)
 
[![codecov](https://codecov.io/gh/votca/csgapps/branch/master/graph/badge.svg)](https://codecov.io/gh/votca/csgapps)
-[![Build 
Status](https://travis-ci.org/votca/csgapps.svg?branch=master)](https://travis-ci.org/votca/csgapps)
-[![pipeline 
status](https://gitlab.com/votca/csgapps/badges/master/pipeline.svg)](https://gitlab.com/votca/csgapps/commits/master)
+[![CI](https://github.com/votca/votca/workflows/CI/badge.svg?branch=stable)](https://github.com/votca/votca/actions?query=workflow%3ACI+branch%3Astable)
 
 This repository contains some small analysis programs which are written based 
on the votca csg framework
 
@@ -15,4 +14,4 @@
 *   _partial\_rdf_: calculates the rdf in a spherical subvolume
 *   _traj\_force_: add/subtracts reference forces from a given trajectory and 
stores in a new trajectory
 
-To add your own program just create a new folder and put your *.cc files in 
there
+To add your own program just create a new folder and put your `*.cc` files in 
there


Reply via email to