Install "/etc/snapserver/certs" directory

This commit is contained in:
badaix 2025-01-12 15:19:08 +01:00
parent 8015325d71
commit 8096d208d5
5 changed files with 18 additions and 9 deletions

View file

@ -173,7 +173,7 @@ jobs:
- name: configure
run: |
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
cmake -S . -B build -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows" -DCMAKE_BUILD_TYPE="Release" -DREVISION="${{ github.sha }}" -DWERROR=ON -DBUILD_TESTS=ON
cmake -S . -B build -G "Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows" -DCMAKE_BUILD_TYPE="Release" -DREVISION="${{ github.sha }}" -DWERROR=ON
- name: build
run: cmake --build build --config Release --parallel 3 --verbose
- name: installer
@ -240,7 +240,7 @@ jobs:
# #- name: ccache dump config
# # run: ccache -p
# - name: configure
# run: cmake -S $GITHUB_WORKSPACE/src/snapcast -B build -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE=Release -DREVISION=${{ github.sha }} -DWERROR=ON -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="-I/usr/local/include -Wno-deprecated-declarations"
# run: cmake -S $GITHUB_WORKSPACE/src/snapcast -B build -DBOOST_ROOT=$GITHUB_WORKSPACE/${{env.BOOST}} -DCMAKE_BUILD_TYPE=Release -DREVISION=${{ github.sha }} -DWERROR=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_FLAGS="-I/usr/local/include -Wno-deprecated-declarations"
# - name: build
# run: cmake --build build --parallel 3

View file

@ -1,3 +1,6 @@
Placeholder for changelog
snapcast (0.0.0-1) unstable; urgency=medium
Content should be created with `changelog_md2deb.py`
* Placeholder for changelog
Content should be created with `changelog_md2deb.py changelog.md`
-- Johannes Pohl <snapcast@badaix.de> Sun, 01 Jan 1970 00:00:00 +0000

View file

@ -28,13 +28,13 @@ if __name__ == "__main__":
with open(sys.argv[1], 'r') as file:
data = file.read()
data = re.sub('^\s*# Snapcast changelog *\n*',
data = re.sub(r'^\s*# Snapcast changelog *\n*',
'', data, flags=re.MULTILINE)
data = re.sub('^\s*### ([a-zA-Z]+) *\n',
data = re.sub(r'^\s*### ([a-zA-Z]+) *\n',
r'\n * \1\n', data, flags=re.MULTILINE)
data = re.sub('^\s*## Version\s+(\S*) *\n',
data = re.sub(r'^\s*## Version\s+(\S*) *\n',
r'snapcast (\1-1) unstable; urgency=medium\n', data, flags=re.MULTILINE)
data = re.sub('^\s*-\s*(.*) *\n', r' -\1\n', data, flags=re.MULTILINE)
data = re.sub('^_(.*)_ *\n', r' -- \1\n\n', data, flags=re.MULTILINE)
data = re.sub(r'^\s*-\s*(.*) *\n', r' -\1\n', data, flags=re.MULTILINE)
data = re.sub(r'^_(.*)_ *\n', r' -- \1\n\n', data, flags=re.MULTILINE)
print(data)

View file

@ -0,0 +1,2 @@
usr/bin/snapclient usr/bin/
usr/share/pixmaps/snapcast.svg usr/share/pixmaps/

View file

@ -0,0 +1,4 @@
usr/bin/snapserver usr/bin/
usr/share/snapserver usr/share/
etc/snapserver.conf etc/
etc/snapserver etc/