Skip to content

Commit 2f9ac1d

Browse files
authored
Merge branch 'clangen:master' into master
2 parents eab624a + 5ef3037 commit 2f9ac1d

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.cmake/GeneratePackage.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if (${GENERATE_DEB} MATCHES "true" AND CMAKE_SYSTEM_NAME MATCHES "Linux")
22
if (${BUILD_STANDALONE} MATCHES "true")
3-
set(CPACK_PACKAGE_FILE_NAME "musikcube_linux_${musikcube_VERSION}_${DEB_ARCHITECTURE}")
3+
set(CPACK_PACKAGE_FILE_NAME "musikcube_linux_${musikcube_VERSION}_${PACKAGE_ARCHITECTURE}")
44
else()
55
set(DEB_MICROHTTPD_VERSION "10")
66
set(DEB_LIBCURL_VERSION "3")
@@ -43,7 +43,7 @@ if (${GENERATE_DEB} MATCHES "true" AND CMAKE_SYSTEM_NAME MATCHES "Linux")
4343
set(DEPENDENCIES "libmicrohttpd${DEB_MICROHTTPD_VERSION}, libcurl${DEB_LIBCURL_VERSION}, libogg0, libvorbis0a, libvorbisfile3, libncursesw${DEB_NCURSES_VERSION}, libasound2, libpulse0, pulseaudio, libmp3lame0, libev4, libopenmpt0, libssl1.1")
4444
set(DEPENDENCIES "${DEPENDENCIES}, libtag1v5, libavcodec-extra, libavutil${DEB_AVUTIL_VERSION}, libavformat${DEB_AVFORMAT_VERSION}, libswresample${DEB_SWRESAMPLE_VERSION}")
4545

46-
set(CPACK_PACKAGE_FILE_NAME "musikcube_linux_${musikcube_VERSION}_${DEB_PLATFORM}_${DEB_DISTRO}_${DEB_ARCHITECTURE}")
46+
set(CPACK_PACKAGE_FILE_NAME "musikcube_linux_${musikcube_VERSION}_${DEB_PLATFORM}_${DEB_DISTRO}_${PACKAGE_ARCHITECTURE}")
4747
set(CPACK_DEBIAN_PACKAGE_DEPENDS ${DEPENDENCIES})
4848
set(CPACK_RPM_PACKAGE_REQUIRES "libogg, libvorbis, ffmpeg-libs, ncurses, zlib, alsa-lib, pulseaudio-libs, openssl, libcurl, libmicrohttpd, lame, libev, taglib, libopenmpt")
4949
endif()
@@ -56,10 +56,10 @@ if (${GENERATE_DEB} MATCHES "true" AND CMAKE_SYSTEM_NAME MATCHES "Linux")
5656
set(CPACK_PACKAGE_VERSION_PATCH "${musikcube_VERSION_PATCH}")
5757

5858
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "casey langen")
59-
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE ${DEB_ARCHITECTURE})
59+
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE ${PACKAGE_ARCHITECTURE})
6060

6161
set(CPACK_RPM_PACKAGE_LICENSE "BSD-3-Clause")
62-
set(CPACK_RPM_PACKAGE_ARCHITECTURE, ${DEB_ARCHITECTURE})
62+
set(CPACK_RPM_PACKAGE_ARCHITECTURE ${PACKAGE_ARCHITECTURE})
6363
set(CPACK_RPM_PACKAGE_URL "https://www.musikcube.com")
6464
set(CPACK_RPM_PACKAGE_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
6565
set(CPACK_RPM_REQUIRES_EXCLUDE_FROM "^/.*$")

CHANGELOG.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
* fixed a bug where album artist (and potentially other) metadata values were
44
being double encoded.
55
* fixed a bug where re-arranging the play queue may cause unnecessary i/o.
6+
* fixed bug where `rpm` architecture was incorrect for `armhf` builds.
7+
* updated `asio` to 1.28.0
68

79
--------------------------------------------------------------------------------
810

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr .
22
#cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr .
3-
#cmake -DGENERATE_DEB=true -DDEB_ARCHITECTURE=i386|amd64|armhf -DDEB_PLATFORM=ubuntu -DDEB_DISTRO=eoan -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
3+
#cmake -DGENERATE_DEB=true -DPACKAGE_ARCHITECTURE=i386|amd64|armhf -DDEB_PLATFORM=ubuntu -DDEB_DISTRO=eoan -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .
44
#cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_STANDALONE=true .
55

66
cmake_minimum_required(VERSION 3.0)
77

88
project(musikcube)
99
set (musikcube_VERSION_MAJOR 3)
1010
set (musikcube_VERSION_MINOR 0)
11-
set (musikcube_VERSION_PATCH 0)
11+
set (musikcube_VERSION_PATCH 1)
1212
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
1313
set (LIBRARY_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin/plugins)
1414
set (EXECUTABLE_OUTPUT_PATH ${musikcube_SOURCE_DIR}/bin)

musikcube.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%define name musikcube
22
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
3-
%define version 3.0.0
3+
%define version 3.0.1
44
Name: %{name}
55
Version: %{version}
66
Release: %{dist}

script/archive-standalone-nix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fi
4444

4545
OS_SPECIFIC_BUILD_FLAGS=""
4646
if [[ $OS == "Linux" ]]; then
47-
OS_SPECIFIC_BUILD_FLAGS="-DGENERATE_DEB=true -DDEB_ARCHITECTURE=${DEB_ARCH} -DCMAKE_INSTALL_PREFIX=/usr"
47+
OS_SPECIFIC_BUILD_FLAGS="-DGENERATE_DEB=true -DPACKAGE_ARCHITECTURE=${DEB_ARCH} -DCMAKE_INSTALL_PREFIX=/usr"
4848
if [[ $CROSSCOMPILE == "rpi" ]]; then
4949
# for now we don't support pipewire when cross compiling...
5050
OS_SPECIFIC_BUILD_FLAGS="$OS_SPECIFIC_BUILD_FLAGS -DENABLE_PIPEWIRE=false"

src/musikcore/sdk/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838

3939
#define MUSIKCUBE_VERSION_MAJOR 3
4040
#define MUSIKCUBE_VERSION_MINOR 0
41-
#define MUSIKCUBE_VERSION_PATCH 0
42-
#define MUSIKCUBE_VERSION "3.0.0"
43-
#define MUSIKCUBE_VERSION_COMMIT_HASH "#abfd4877"
44-
#define MUSIKCUBE_VERSION_WITH_COMMIT_HASH "3.0.0-#abfd4877"
41+
#define MUSIKCUBE_VERSION_PATCH 1
42+
#define MUSIKCUBE_VERSION "3.0.1"
43+
#define MUSIKCUBE_VERSION_COMMIT_HASH "#d2f83f75"
44+
#define MUSIKCUBE_VERSION_WITH_COMMIT_HASH "3.0.1-#d2f83f75"
4545

4646
namespace musik {
4747
namespace cube {

src/musikcube/musikcube.rc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)