Skip to content

Commit 2f3f74d

Browse files
authored
Merge pull request #22 from AlwinEsch/Matrix-change
[Matrix] some cleanups
2 parents 0bb5ac0 + de282cc commit 2f3f74d

File tree

11 files changed

+21
-15
lines changed

11 files changed

+21
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
This is a [Kodi](https://kodi.tv) audio decoder addon for NSF files.
44

55
[![Build Status](https://travis-ci.org/xbmc/audiodecoder.nosefart.svg?branch=Matrix)](https://travis-ci.org/xbmc/audiodecoder.nosefart/branches)
6-
[![Build Status](https://ci.appveyor.com/api/projects/status/github/xbmc/audiodecoder.nosefart?branch=Matrix&svg=true)](https://ci.appveyor.com/project/xbmc/audiodecoder-nosefart?branch=Matrix)
6+
[![Build Status](https://dev.azure.com/teamkodi/binary-addons/_apis/build/status/xbmc.audiodecoder.nosefart?branchName=Matrix)](https://dev.azure.com/teamkodi/binary-addons/_build/latest?definitionId=9&branchName=Matrix)
7+
<!--- [![Build Status](https://ci.appveyor.com/api/projects/status/github/xbmc/audiodecoder.nosefart?branch=Matrix&svg=true)](https://ci.appveyor.com/project/xbmc/audiodecoder-nosefart?branch=Matrix) -->
78

89
## Build instructions
910

audiodecoder.nosefart/addon.xml.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon
33
id="audiodecoder.nosefart"
4-
version="2.2.0"
4+
version="2.2.1"
55
name="Nosefart Audio Decoder"
66
provider-name="spiff">
77
<requires>@ADDON_DEPENDS@</requires>
@@ -16,5 +16,10 @@
1616
<summary lang="en">Nosefart (NSF) Audio Decoder</summary>
1717
<description lang="en">The Nintendo Sound Format (NSF) is a container format, that holds audio code ripped from the ROMs of games for the Nintendo Entertainment System. The NES had a pretty good sound engine for its time supporting 2 pulse-waves, 1 triangle wave, a noise channel, and DPCM channel which is a raw 7-bit counter raw sample playback.</description>
1818
<platform>@PLATFORM@</platform>
19+
<license>GPL-2.0</license>
20+
<source>https://github.com/xbmc/audiodecoder.nosefart</source>
21+
<assets>
22+
<icon>icon.png</icon>
23+
</assets>
1924
</extension>
2025
</addon>

debian/changelog.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ kodi-audiodecoder-nosefart (#PACKAGEVERSION#-#TAGREV#~#DIST#) #DIST#; urgency=lo
33
[ kodi ]
44
* autogenerated dummy changelog
55

6-
-- Arne Morten Kvarving <cptspiff@gmail.com> Sat, 01 Jun 2013 00:59:22 +0200
6+
-- Nobody <nobody@kodi.tv> Sat, 01 Jun 2013 00:59:22 +0200
77

debian/compat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8
1+
9

debian/control

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
Source: kodi-audiodecoder-nosefart
22
Priority: extra
3-
Maintainer: Arne Morten Kvarving <cptspiff@gmail.com>
4-
Build-Depends: debhelper (>= 8.0.0), cmake, kodi-addon-dev
5-
Standards-Version: 3.9.2
3+
Maintainer: Nobody <nobody@kodi.tv>
4+
Build-Depends: debhelper (>= 9.0.0), cmake, kodi-addon-dev
5+
Standards-Version: 4.1.2
66
Section: libs
7+
Homepage: http://kodi.tv
78

89
Package: kodi-audiodecoder-nosefart
910
Section: libs

debian/copyright

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Format: http://dep.debian.net/deps/dep5
22
Upstream-Name: audiodecoder.nosefart
3-
Source: <url://example.com>
3+
Source: https://github.com/xbmc/audiodecoder.nosefart
44

55
Files: *
6-
Copyright: 2005-2013 Team XBMC
6+
Copyright: 2005-2020 Team Kodi
77
License: GPL-2+
88
This package is free software; you can redistribute it and/or modify
99
it under the terms of the GNU General Public License as published by
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
usr/lib/*
2+
usr/share/*

debian/rules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,5 @@ override_dh_auto_configure:
1818
override_dh_strip:
1919
dh_strip --dbg-package=kodi-audiodecoder-nosefart-dbg
2020

21-
override_dh_auto_install:
22-
dh_auto_install --destdir=debian/kodi-audiodecoder-nosefart
23-
2421
override_dh_installdocs:
2522
dh_installdocs --link-doc=kodi-audiodecoder-nosefart

debian/source/format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0 (native)
1+
3.0 (quilt)

src/NSFCodec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2005-2019 Team Kodi
2+
* Copyright (C) 2005-2020 Team Kodi
33
* http://kodi.tv
44
*
55
* This Program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)