Skip to content

Commit

Permalink
- Bumping copyright headers to the brand new year.
Browse files Browse the repository at this point in the history
  • Loading branch information
rncbc committed Jan 2, 2023
1 parent 3a73e90 commit 5f3a5d8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.15)

project (qsynth
VERSION 0.9.9
VERSION 0.9.10
DESCRIPTION "A fluidsynth Qt GUI Interface"
LANGUAGES C CXX)

Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Qsynth - A fluidsynth Qt GUI Interface
ChangeLog


GIT HEAD

- Bumping copyright headers to the brand new year.


0.9.9 2022-12-28 An End-of-Year'22 Release.

- Just bumping into the next develop cycle/season.
Expand Down
4 changes: 2 additions & 2 deletions debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Upstream Author: Rui Nuno Capela <[email protected]>

Copyright:

Copyright (C) 2003-2022, rncbc aka Rui Nuno Capela. All rights reserved.
Copyright (C) 2003-2023, rncbc aka Rui Nuno Capela. All rights reserved.

License:

Expand All @@ -25,6 +25,6 @@ License:
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

The Debian packaging is (C) 2008-2022, Rui Nuno Capela <[email protected]> and
The Debian packaging is (C) 2008-2023, Rui Nuno Capela <[email protected]> and
is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

23 changes: 14 additions & 9 deletions rpm/qsynth.spec
Original file line number Diff line number Diff line change
Expand Up @@ -46,28 +46,32 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
BuildRequires: coreutils
BuildRequires: pkgconfig
BuildRequires: glibc-devel

%if %{defined fedora} || 0%{?suse_version} > 1500
BuildRequires: gcc-c++ >= 8
%define CXX /usr/bin/g++
BuildRequires: cmake >= 3.15
%if 0%{?sle_version} >= 150200 && 0%{?is_opensuse}
BuildRequires: gcc10 >= 10
BuildRequires: gcc10-c++ >= 10
%define _GCC /usr/bin/gcc-10
%define _GXX /usr/bin/g++-10
%else
BuildRequires: gcc8-c++ >= 8
%define CXX /usr/bin/g++-8
BuildRequires: gcc >= 10
BuildRequires: gcc-c++ >= 10
%define _GCC /usr/bin/gcc
%define _GXX /usr/bin/g++
%endif

BuildRequires: cmake >= 3.15
%if 0%{qt_major_version} == 6
%if 0%{?sle_version} == 150200 && 0%{?is_opensuse}
BuildRequires: qtbase6-static >= 6.1
BuildRequires: qttools6-static
BuildRequires: qttranslations6-static
BuildRequires: qtsvg6-static
BuildRequires: qtwayland6-static
%else
BuildRequires: cmake(Qt6LinguistTools)
BuildRequires: pkgconfig(Qt6Core)
BuildRequires: pkgconfig(Qt6Gui)
BuildRequires: pkgconfig(Qt6Widgets)
BuildRequires: pkgconfig(Qt6Svg)
BuildRequires: pkgconfig(Qt6Wayland)
BuildRequires: pkgconfig(Qt6Network)
%endif
%else
Expand All @@ -76,6 +80,7 @@ BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Gui)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(Qt5Svg)
BuildRequires: pkgconfig(Qt5Wayland)
BuildRequires: pkgconfig(Qt5Network)
%endif
%if %{defined fedora}
Expand All @@ -100,7 +105,7 @@ command line softsynths.
%if 0%{?sle_version} == 150200 && 0%{?is_opensuse}
source /opt/qt6.4-static/bin/qt6.4-static-env.sh
%endif
CXX=%{CXX} \
CXX=%{_GXX} CC=%{_GCC} \
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -Wno-dev -B build
cmake --build build %{?_smp_mflags}

Expand Down
4 changes: 2 additions & 2 deletions src/qsynthAbout.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// qsynthAbout.h
//
/****************************************************************************
Copyright (C) 2003-2022, rncbc aka Rui Nuno Capela. All rights reserved.
Copyright (C) 2003-2023, rncbc aka Rui Nuno Capela. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
Expand All @@ -28,7 +28,7 @@

#define QSYNTH_SUBTITLE "A fluidsynth Qt GUI Interface"
#define QSYNTH_WEBSITE "https://qsynth.sourceforge.io"
#define QSYNTH_COPYRIGHT "Copyright (C) 2003-2022, rncbc aka Rui Nuno Capela. All rights reserved."
#define QSYNTH_COPYRIGHT "Copyright (C) 2003-2023, rncbc aka Rui Nuno Capela. All rights reserved."

#define QSYNTH_DOMAIN "rncbc.org"

Expand Down

0 comments on commit 5f3a5d8

Please sign in to comment.