Skip to content

Commit

Permalink
Updated lib version to 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksinx committed Nov 9, 2021
1 parent 91a2a12 commit be0d00d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
###############################################################################

LIB = libpqos
VERSION = 4.2.0
VERSION = 4.3.0
SO_VERSION = 4
SHARED ?= y
LDFLAGS = -L. -lpthread -z noexecstack -z relro -z now
Expand Down
2 changes: 1 addition & 1 deletion lib/pqos.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ extern "C" {
* =======================================
*/

#define PQOS_VERSION 40200 /**< version 4.2.0 */
#define PQOS_VERSION 40300 /**< version 4.3.0 */
#define PQOS_MAX_COS 16 /** 16 x COS */
#define PQOS_MAX_L3CA_COS PQOS_MAX_COS
#define PQOS_MAX_L2CA_COS PQOS_MAX_COS
Expand Down
2 changes: 1 addition & 1 deletion lib/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pqos
version = 4.2.0
version = 4.3.0
description = Python interface for PQoS library
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
Expand Down
15 changes: 13 additions & 2 deletions rpm/intel-cmt-cat.spec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

%global githubname intel-cmt-cat
%global githubver 4.2.0
%global githubver 4.3.0

%if %{defined githubsubver}
%global githubfull %{githubname}-%{githubver}.%{githubsubver}
Expand Down Expand Up @@ -112,6 +112,12 @@ install -s %{_builddir}/%{githubfull}/rdtset/rdtset %{buildroot}/%{_bindir}
install -d %{buildroot}/%{_mandir}/man8
install -m 0644 %{_builddir}/%{githubfull}/rdtset/rdtset.8 %{buildroot}/%{_mandir}/man8

install -d %{buildroot}/%{_bindir}
install -s %{_builddir}/%{githubfull}/tools/membw/membw %{buildroot}/%{_bindir}

install -d %{buildroot}/%{_mandir}/man8
install -m 0644 %{_builddir}/%{githubfull}/tools/membw/membw.8 %{buildroot}/%{_mandir}/man8

install -d %{buildroot}/%{_licensedir}/%{name}-%{version}
install -m 0644 %{_builddir}/%{githubfull}/LICENSE %{buildroot}/%{_licensedir}/%{name}-%{version}

Expand Down Expand Up @@ -152,7 +158,9 @@ install -m 0644 %{_builddir}/%{githubfull}/examples/c/CMT_MBM/monitor_app.c %{bu
%{_mandir}/man8/pqos-msr.8.gz
%{_bindir}/rdtset
%{_mandir}/man8/rdtset.8.gz
%{_libdir}/libpqos.so.*
%{_bindir}/membw
%{_mandir}/man8/membw.8.gz
{_libdir}/libpqos.so.*

%{!?_licensedir:%global license %%doc}
%license %{_licensedir}/%{name}-%{version}/LICENSE
Expand All @@ -173,6 +181,9 @@ install -m 0644 %{_builddir}/%{githubfull}/examples/c/CMT_MBM/monitor_app.c %{bu
%doc %{_usrsrc}/%{githubfull}/LICENSE

%changelog
* Thu Oct 21 2021 Michal Aleksinski <[email protected]> 4.3.0-1
- New release 4.3.0

* Mon Jul 05 2021 Michal Aleksinski <[email protected]> 4.2.0-1
- New release 4.2.0

Expand Down
2 changes: 1 addition & 1 deletion tools/membw/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ MAN = membw.8

# XXX: modify as desired
PREFIX ?= /usr/local
BIN_DIR = $(PREFIX)/sbin
BIN_DIR = $(PREFIX)/bin
MAN_DIR = $(PREFIX)/man/man8

CFLAGS=-W -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes \
Expand Down

0 comments on commit be0d00d

Please sign in to comment.