Skip to content

Commit

Permalink
[version] Update version to 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
svalat committed Oct 3, 2024
1 parent a997fa3 commit 46793b1
Show file tree
Hide file tree
Showing 297 changed files with 324 additions and 323 deletions.
2 changes: 1 addition & 1 deletion .vscode/snippets/cmake.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"body": [
"############################################################",
"# PROJECT : MALT (MALoc Tracker)",
"# VERSION : 1.2.3",
"# VERSION : 1.2.4",
"# DATE : ${CURRENT_MONTH}/${CURRENT_YEAR}",
"# LICENSE : CeCILL-C",
"# FILE : ${TM_DIRECTORY}/${TM_FILENAME}",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/snippets/cpp.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"body": [
"/***********************************************************",
"* PROJECT : MALT (MALoc Tracker)",
"* VERSION : 1.2.3",
"* VERSION : 1.2.4",
"* DATE : ${CURRENT_MONTH}/${CURRENT_YEAR}",
"* LICENSE : CeCILL-C",
"* FILE : ${TM_DIRECTORY}/${TM_FILENAME}",
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : CMakeLists.txt
Expand All @@ -18,12 +18,12 @@ if (CMAKE_VERSION VERSION_LESS 3.0)
project(MALT)
else()
cmake_policy(SET CMP0048 NEW)
project(MALT VERSION 1.2.3)
project(MALT VERSION 1.2.4)
endif()

############################################################
#set versions to dispatch in code
set(MALT_VERSION "1.2.3")
set(MALT_VERSION "1.2.4")
set(MALT_VERSION_NOTE "-dev")
set(MALT_SO_VERSION "1")
set(MALT_JSON_FORMAT_VERSION "1.1")
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = MALT
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.2.3
PROJECT_NUMBER = 1.2.4

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindIniParser.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/FindIniParser.cmake
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindLibElf.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/FindLibElf.cmake
Expand Down
2 changes: 1 addition & 1 deletion cmake/FindLibunwind.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/FindLibunwind.cmake
Expand Down
5 changes: 3 additions & 2 deletions cmake/FindNpm.cmake
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# DATE : 09/2024
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/FindNpm.cmake
#-----------------------------------------------------------
# AUTHOR : Sébastien Valat - 2024
# AUTHOR : Antoine Bernard (crans.org) - 2024
############################################################

Expand Down
2 changes: 1 addition & 1 deletion cmake/macros.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/macros.cmake
Expand Down
2 changes: 1 addition & 1 deletion cmake/unittest-macros.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : cmake/unittest-macros.cmake
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
###########################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : Apache 2.0
# FILE : configure
Expand Down
2 changes: 1 addition & 1 deletion dev/build_and_test_on_distributions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/build_and_test_on_distributions.py
Expand Down
8 changes: 4 additions & 4 deletions dev/gen-archive.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/env python3
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/gen-archive.sh
# FILE : dev/gen-archive.py
#-----------------------------------------------------------
# AUTHOR : Sébastien Valat - 2015 - 2024
# AUTHOR : Sébastien Valat - 2024
############################################################

############################################################
Expand All @@ -24,7 +24,7 @@
############################################################
#extract version
PACKAGE_NAME="malt"
PACKAGE_VERSION="1.2.3"
PACKAGE_VERSION="1.2.4"

############################################################
# Generate MALT archive
Expand Down
2 changes: 1 addition & 1 deletion dev/gen-coverage.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/gen-coverage.sh
Expand Down
2 changes: 1 addition & 1 deletion dev/header-config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"header_keys": {
"PROJECT": "MALT (MALoc Tracker)",
"VERSION": "1.2.3",
"VERSION": "1.2.4",
"DATE": "@LAST_EDIT_MONTH_YEAR@",
"LICENSE": "CeCILL-C"
},
Expand Down
2 changes: 1 addition & 1 deletion dev/json_to_gnuplot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/json_to_gnuplot.py
Expand Down
4 changes: 2 additions & 2 deletions dev/packaging.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/packaging.sh
Expand All @@ -11,7 +11,7 @@

############################################################
#setup version
VERSION=1.2.3
VERSION=1.2.4
VERSION=$(echo $VERSION | cut -f 1 -d '-')

############################################################
Expand Down
2 changes: 1 addition & 1 deletion dev/update-version.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/update-version.sh
Expand Down
2 changes: 1 addition & 1 deletion dev/update_file_headers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : dev/update_file_headers.py
Expand Down
4 changes: 2 additions & 2 deletions options
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : options
Expand All @@ -11,7 +11,7 @@
############################################################
#############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : options
Expand Down
2 changes: 1 addition & 1 deletion packaging/Dockerfile-centos-7
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/Dockerfile-centos-7
Expand Down
2 changes: 1 addition & 1 deletion packaging/Dockerfile-debian
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/Dockerfile-debian
Expand Down
2 changes: 1 addition & 1 deletion packaging/Dockerfile-fedora
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/Dockerfile-fedora
Expand Down
32 changes: 16 additions & 16 deletions packaging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ I. UBUNTU / DEBIAN :
--------------------

This project support the debian packing to build .dev files. To build such package you may use the files in packaging/debian.
First create a directory in your home dir, place the project archive in it and rename it to _1.2.3.orig.tar.gz.
First create a directory in your home dir, place the project archive in it and rename it to _1.2.4.orig.tar.gz.

To setup your working environneemnt, you will found documentation on
https://wiki.ubuntu.com/PbuilderHowto or https://wiki.debian.org/IntroDebianPackaging. We mosly need :
Expand All @@ -21,12 +21,12 @@ https://wiki.ubuntu.com/PbuilderHowto or https://wiki.debian.org/IntroDebianPack

If you work with git version you can build the archive with :

git archive --prefix=malt-1.2.3/ v1.2.3 | gzip > malt_1.2.3.orig.tar.gz
git archive --prefix=malt-1.2.4/ v1.2.4 | gzip > malt_1.2.4.orig.tar.gz

Go to your directory and extract _1.2.3.orig.tar.gz with and go in the directory.
Go to your directory and extract _1.2.4.orig.tar.gz with and go in the directory.

tar -xvzf malt_1.2.3.orig.tar.gz
cd malt-1.2.3
tar -xvzf malt_1.2.4.orig.tar.gz
cd malt-1.2.4

Now go to the -0.0.1 directory and copy the packaging/debian into debian :

Expand Down Expand Up @@ -61,7 +61,7 @@ First ensure to get the required tools :

Now generate the archive file (or download it from internet) :

git archive --prefix=-1.2.3/ 1.2.3 | bzip2 > ~/rpmbuild/SOURCES/-1.2.3.tar.bz2
git archive --prefix=-1.2.4/ 1.2.4 | bzip2 > ~/rpmbuild/SOURCES/-1.2.4.tar.bz2

And build the package :

Expand All @@ -88,25 +88,25 @@ Now get the project archive and place it in /usr/portage/distfiles (or correspon
you work on the git version, you can build the project archive with :

--------------------------------------------------------------------
$user> git archive --prefix=malt-1.2.3/ v1.2.3 | gzip > malt-1.2.3.tar.gz
$user> git archive --prefix=malt-1.2.4/ v1.2.4 | gzip > malt-1.2.4.tar.gz
--------------------------------------------------------------------

Now got to the /usr/local/portage/myoverlay/dev-libs and build the Manifest file :

--------------------------------------------------------------------
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild manifest
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild manifest
--------------------------------------------------------------------

Ok now you can test the build septs one by one :

--------------------------------------------------------------------
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild clean
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild fetch
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild unpack
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild prepare
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild configure
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild compile
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.3.ebuild test
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild clean
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild fetch
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild unpack
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild prepare
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild configure
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild compile
#root> ebuild /usr/local/portage/myoverlay/dev-libs/malt-1.2.4.ebuild test
--------------------------------------------------------------------

... (I don't do install here bu you also can do preinst, install, postinst, qmerge (maybe qmerge is not a goot idea for the
Expand All @@ -115,6 +115,6 @@ fist testings steps).
Or you can simply run :

--------------------------------------------------------------------
#root> echo "=dev-libs/malt-1.2.3" >> /etc/portage/package.keywords
#root> echo "=dev-libs/malt-1.2.4" >> /etc/portage/package.keywords
#root> emerge -a malt
--------------------------------------------------------------------
4 changes: 2 additions & 2 deletions packaging/archlinux/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/archlinux/PKGBUILD
Expand All @@ -10,7 +10,7 @@

# Maintainer: Sebastien Valat <[email protected]>
pkgname=MALT
pkgver=1.2.3
pkgver=1.2.4
pkgrel=1
pkgdesc="Memory profiling tool to track memory allocations (malloc,free,realloc...)."
arch=('i686' 'x86_64')
Expand Down
6 changes: 3 additions & 3 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
malt (1.2.3) UNRELEASED; urgency=low
malt (1.2.4) UNRELEASED; urgency=low

* Version 1.2.3 of malt
* Version 1.2.4 of malt

-- Sébastien Valat <[email protected]> Wed, 07 Feb 2018 20:58:56 +0100
-- Sébastien Valat <[email protected]> Wed, 03 Oct 2024 09:46:33 +0100
4 changes: 2 additions & 2 deletions packaging/fedora/malt.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/fedora/malt.spec
Expand All @@ -10,7 +10,7 @@
############################################################

Name: malt
Version: 1.2.3
Version: 1.2.4
Release: 1%{?dist}
Summary: Memory profiling tool to track memory allocations (malloc, realloc, free...)

Expand Down
4 changes: 2 additions & 2 deletions packaging/gentoo/dev-util/malt/malt-1.3.0-dev.ebuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : packaging/gentoo/dev-util/malt/malt-1.3.0-dev.ebuild
Expand All @@ -15,7 +15,7 @@ inherit cmake-utils
RESTRICT="primaryuri"
DESCRIPTION="Memory profiling tool to track memory allocations (malloc,free,realloc...)."
HOMEPAGE="https://github.com/svalat/malt"
SRC_URI="https://github.com/downloads/svalat/malt/malt-1.2.3.tar.bz2"
SRC_URI="https://github.com/downloads/svalat/malt/malt-1.2.4.tar.bz2"

LICENSE="CeCILL-C"
SLOT="0"
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
# PROJECT : MALT (MALoc Tracker)
# VERSION : 1.2.3
# VERSION : 1.2.4
# DATE : 10/2024
# LICENSE : CeCILL-C
# FILE : src/CMakeLists.txt
Expand Down
Loading

0 comments on commit 46793b1

Please sign in to comment.