diff -Nru kodi-audiodecoder-snesapu-2.0.1/appveyor.yml kodi-audiodecoder-snesapu-2.0.2/appveyor.yml --- kodi-audiodecoder-snesapu-2.0.1/appveyor.yml 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/appveyor.yml 2020-02-06 16:44:37.000000000 +0000 @@ -1,6 +1,6 @@ version: BuildNr.{build} -image: Visual Studio 2015 +image: Visual Studio 2017 shallow_clone: true @@ -10,9 +10,9 @@ app_id: audiodecoder.snesapu matrix: - - GENERATOR: "Visual Studio 14" + - GENERATOR: "Visual Studio 15" CONFIG: Release - - GENERATOR: "Visual Studio 14 Win64" + - GENERATOR: "Visual Studio 15 Win64" CONFIG: Release build_script: diff -Nru kodi-audiodecoder-snesapu-2.0.1/audiodecoder.snesapu/addon.xml.in kodi-audiodecoder-snesapu-2.0.2/audiodecoder.snesapu/addon.xml.in --- kodi-audiodecoder-snesapu-2.0.1/audiodecoder.snesapu/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/audiodecoder.snesapu/addon.xml.in 2020-02-06 16:44:37.000000000 +0000 @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -15,5 +15,10 @@ SNES-SPC700 Sound File Data Decoder The SPC format holds Super Nintendo (SNES) game music. It is named after Sony's SPC700 contribution to the SNES's S-SMP audio chip. The SNES was a major jump in audio technology from the NES allowing for stereo sound, more channels, and fully sampled instruments. @PLATFORM@ + GPL-2.0 + https://github.com/xbmc/audiodecoder.snesapu + + icon.png + diff -Nru kodi-audiodecoder-snesapu-2.0.1/azure-pipelines.yml kodi-audiodecoder-snesapu-2.0.2/azure-pipelines.yml --- kodi-audiodecoder-snesapu-2.0.1/azure-pipelines.yml 1970-01-01 00:00:00.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/azure-pipelines.yml 2020-02-06 16:44:37.000000000 +0000 @@ -0,0 +1,65 @@ +variables: + app_id: 'audiodecoder.snesapu' + +trigger: + branches: + include: + - Leia + - releases/* + paths: + include: + - '*' + exclude: + - 'debian/*' + +jobs: + - job: Windows + + pool: + vmImage: 'VS2017-Win2016' + + strategy: + matrix: + Win32: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: Win32 + CONFIGURATION: Release + Win64: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + Win64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: x64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" + ARM64-UWP: + GENERATOR: "Visual Studio 15 2017" + ARCHITECTURE: ARM64 + CONFIGURATION: Release + WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.16299.0" + + workspace: + clean: all + + steps: + + - script: | + cd .. + git clone --branch Leia --depth=1 https://github.com/xbmc/xbmc.git kodi + cd $(Build.SourcesDirectory) + mkdir build + cd build + mkdir "definition/$(app_id)" + echo $(app_id) . . > definition/$(app_id)/$(app_id).txt + mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)" + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons' + + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)' diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/changelog kodi-audiodecoder-snesapu-2.0.2/debian/changelog --- kodi-audiodecoder-snesapu-2.0.1/debian/changelog 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/changelog 2013-05-31 22:59:22.000000000 +0000 @@ -1,7 +1,7 @@ -kodi-audiodecoder-snesapu (2.0.1-1~bionic) bionic; urgency=low +kodi-audiodecoder-snesapu (2.0.2-1~bionic) bionic; urgency=low [ kodi ] * autogenerated dummy changelog - -- Arne Morten Kvarving Sat, 01 Jun 2013 00:59:22 +0200 + -- Nobody Sat, 01 Jun 2013 00:59:22 +0200 diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/changelog.in kodi-audiodecoder-snesapu-2.0.2/debian/changelog.in --- kodi-audiodecoder-snesapu-2.0.1/debian/changelog.in 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/changelog.in 2013-05-31 22:59:22.000000000 +0000 @@ -3,5 +3,5 @@ [ kodi ] * autogenerated dummy changelog - -- Arne Morten Kvarving Sat, 01 Jun 2013 00:59:22 +0200 + -- Nobody Sat, 01 Jun 2013 00:59:22 +0200 diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/compat kodi-audiodecoder-snesapu-2.0.2/debian/compat --- kodi-audiodecoder-snesapu-2.0.1/debian/compat 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/compat 2013-05-31 22:59:22.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/control kodi-audiodecoder-snesapu-2.0.2/debian/control --- kodi-audiodecoder-snesapu-2.0.1/debian/control 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/control 2013-05-31 22:59:22.000000000 +0000 @@ -1,9 +1,10 @@ Source: kodi-audiodecoder-snesapu Priority: extra -Maintainer: Arne Morten Kvarving -Build-Depends: debhelper (>= 8.0.0), cmake, kodi-addon-dev -Standards-Version: 3.9.2 +Maintainer: Nobody +Build-Depends: debhelper (>= 9.0.0), cmake, kodi-addon-dev +Standards-Version: 4.1.2 Section: libs +Homepage: http://kodi.tv Package: kodi-audiodecoder-snesapu Section: libs diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/copyright kodi-audiodecoder-snesapu-2.0.2/debian/copyright --- kodi-audiodecoder-snesapu-2.0.1/debian/copyright 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/copyright 2013-05-31 22:59:22.000000000 +0000 @@ -1,9 +1,9 @@ Format: http://dep.debian.net/deps/dep5 Upstream-Name: audiodecoder.snesapu -Source: +Source: https://github.com/xbmc/audiodecoder.snesapu Files: * -Copyright: 2005-2013 Team XBMC +Copyright: 2005-2020 Team Kodi License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/kodi-audiodecoder-snesapu.install kodi-audiodecoder-snesapu-2.0.2/debian/kodi-audiodecoder-snesapu.install --- kodi-audiodecoder-snesapu-2.0.1/debian/kodi-audiodecoder-snesapu.install 1970-01-01 00:00:00.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/kodi-audiodecoder-snesapu.install 2013-05-31 22:59:22.000000000 +0000 @@ -0,0 +1,2 @@ +usr/lib/* +usr/share/* diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/rules kodi-audiodecoder-snesapu-2.0.2/debian/rules --- kodi-audiodecoder-snesapu-2.0.1/debian/rules 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/rules 2013-05-31 22:59:22.000000000 +0000 @@ -18,8 +18,5 @@ override_dh_strip: dh_strip --dbg-package=kodi-audiodecoder-snesapu-dbg -override_dh_auto_install: - dh_auto_install --destdir=debian/kodi-audiodecoder-snesapu - override_dh_installdocs: dh_installdocs --link-doc=kodi-audiodecoder-snesapu diff -Nru kodi-audiodecoder-snesapu-2.0.1/debian/source/format kodi-audiodecoder-snesapu-2.0.2/debian/source/format --- kodi-audiodecoder-snesapu-2.0.1/debian/source/format 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/debian/source/format 2013-05-31 22:59:22.000000000 +0000 @@ -1 +1 @@ -3.0 (native) +3.0 (quilt) diff -Nru kodi-audiodecoder-snesapu-2.0.1/.gitignore kodi-audiodecoder-snesapu-2.0.2/.gitignore --- kodi-audiodecoder-snesapu-2.0.1/.gitignore 1970-01-01 00:00:00.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/.gitignore 2020-02-06 16:44:37.000000000 +0000 @@ -0,0 +1,36 @@ +# build artifacts +build/ +audiodecoder.*/addon.xml + +# Debian build files +debian/changelog +debian/files +debian/*.log +debian/*.substvars +debian/.debhelper/ +debian/tmp/ +debian/kodi-audiodecoder-*/ +obj-x86_64-linux-gnu/ + +# commonly used editors +# vim +*.swp + +# Eclipse +*.project +*.cproject +.classpath +*.sublime-* +.settings/ + +# KDevelop 4 +*.kdev4 + +# gedit +*~ + +# CLion +/.idea + +# clion +.idea/ diff -Nru kodi-audiodecoder-snesapu-2.0.1/lib/snes_spc/SPC_DSP.cpp kodi-audiodecoder-snesapu-2.0.2/lib/snes_spc/SPC_DSP.cpp --- kodi-audiodecoder-snesapu-2.0.1/lib/snes_spc/SPC_DSP.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/lib/snes_spc/SPC_DSP.cpp 2020-02-06 16:44:37.000000000 +0000 @@ -155,7 +155,7 @@ // counters start out with this synchronization m.counters [0] = 1; m.counters [1] = 0; - m.counters [2] = -0x20u; + m.counters [2] = static_cast(-0x20); m.counters [3] = 0x0B; int n = 2; diff -Nru kodi-audiodecoder-snesapu-2.0.1/README.md kodi-audiodecoder-snesapu-2.0.2/README.md --- kodi-audiodecoder-snesapu-2.0.1/README.md 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/README.md 2020-02-06 16:44:37.000000000 +0000 @@ -3,7 +3,8 @@ This is a [Kodi](http://kodi.tv) audio decoder addon for SPC files. [![Build Status](https://travis-ci.org/xbmc/audiodecoder.snesapu.svg?branch=master)](https://travis-ci.org/xbmc/audiodecoder.snesapu) -[![Build Status](https://ci.appveyor.com/api/projects/status/github/xbmc/audiodecoder.snesapu?svg=true)](https://ci.appveyor.com/project/xbmc/audiodecoder-snesapu) +[![Build Status](https://dev.azure.com/teamkodi/binary-addons/_apis/build/status/xbmc.audiodecoder.snesapu?branchName=Leia)](https://dev.azure.com/teamkodi/binary-addons/_build/latest?definitionId=14&branchName=Leia) + ## Build instructions diff -Nru kodi-audiodecoder-snesapu-2.0.1/src/SPCCodec.cpp kodi-audiodecoder-snesapu-2.0.2/src/SPCCodec.cpp --- kodi-audiodecoder-snesapu-2.0.1/src/SPCCodec.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/src/SPCCodec.cpp 2020-02-06 16:44:37.000000000 +0000 @@ -1,6 +1,6 @@ /* - * Copyright (C) 2005-2013 Team XBMC - * http://xbmc.org + * Copyright (C) 2005-2020 Team Kodi + * http://kodi.tv * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with XBMC; see the file COPYING. If not, see + * along with Kodi; see the file COPYING. If not, see * . * */ diff -Nru kodi-audiodecoder-snesapu-2.0.1/.travis.yml kodi-audiodecoder-snesapu-2.0.2/.travis.yml --- kodi-audiodecoder-snesapu-2.0.1/.travis.yml 2013-05-31 22:59:22.000000000 +0000 +++ kodi-audiodecoder-snesapu-2.0.2/.travis.yml 2020-02-06 16:44:37.000000000 +0000 @@ -22,16 +22,7 @@ sudo: required compiler: clang - os: osx - osx_image: xcode9 - -# -# Some of the OS X images don't have cmake, contrary to what people -# on the Internet say -# -before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew update ; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then which cmake || brew install cmake ; fi - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew upgrade cmake || true; fi + osx_image: xcode9.4 # # The addon source is automatically checked out in $TRAVIS_BUILD_DIR,