- Move usr/lib to lib,
- Support rx3-base 1.1.2.
This commit is contained in:
@@ -1,5 +1,15 @@
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Music Tools V 1.0.0 - A. GIBERT - 2026/04/12
|
||||
Music Tools V 1.1.1 - A. GIBERT - 2026/05/01
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Move usr/lib to lib,
|
||||
- Support rx3-base 1.1.2,
|
||||
- Bump release from 1.0.x to 1.1.x.
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Music Tools V 1.1.0 - A. GIBERT - 2026/04/12
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Initial Released version.
|
||||
@@ -7,7 +17,7 @@ Music Tools V 1.0.0 - A. GIBERT - 2026/04/12
|
||||
|
||||
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
Music Tools Unreleased - A. GIBERT - 2016-2026
|
||||
Music Tools V 1.0.0 - A. GIBERT - 2016-2026
|
||||
------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
- Initial unreleased versions.
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
%define name music_tools
|
||||
|
||||
%define version 1.0.0
|
||||
%define version 1.1.1
|
||||
%define release %mkrel 1rx3
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@ cp etc/bash_completion.d/* %{buildroot}%{_sysconfdir}/bash_completi
|
||||
|
||||
# Lib
|
||||
%{__mkdir_p} %{buildroot}%{_prefix}/lib/rx3
|
||||
cp usr/lib/rx3/*.bash %{buildroot}%{_prefix}/lib/rx3
|
||||
cp lib/rx3/*.bash %{buildroot}%{_prefix}/lib/rx3
|
||||
|
||||
# Bin
|
||||
%{__mkdir_p} %{buildroot}%{_bindir}
|
||||
@@ -125,5 +125,8 @@ cp bin/* %{buildroot}%{_bindir}
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
%changelog
|
||||
* Sun Apr 12 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.0.0-1rx3.mga9
|
||||
* Mon Apr 20 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.1-1rx3.mga9
|
||||
- Update to 1.1.1 release
|
||||
|
||||
* Sun Apr 12 2026 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.0-1rx3.mga9
|
||||
- Initial release
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_convert"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-r | --resample] [-d | --downsampled_tag] <source_dir> <target_dir>"
|
||||
|
||||
@@ -91,7 +91,7 @@ ac_args_parse()
|
||||
{
|
||||
tmp_args=$(getopt -o ThVvrd --long test,help,version,verbose,resample,downsampled_tag -n "${NAME}" -- "$@")
|
||||
|
||||
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
|
||||
if [ $? != 0 ] ; then echo_error "Terminating..." ; exit 1 ; fi
|
||||
|
||||
# Note the quotes around `$TEMP': they are essential!
|
||||
eval set -- "${tmp_args}"
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_merge"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <album_name> <prefix>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_metadata_load"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-c | --clean] <Source_Dir> <Target_Dir> <MetaData_File>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_metadata_save"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-f | --factoring] [-s | --standardising] <Source_Dir> <MetaData_File>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_name_fix "
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-a <album_dir>] [-p|--music_pattern <music_pattern>] [-s|--sed_substitute_pattern <sed_substitue_pattern>]"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_rename"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <album_name>"
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_renum"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-f | --first_number <first_number>] [-d | --number_of_digit <number_of_digit>] <source_dir> <target_dir>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_retitle"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <title_file>"
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="album_seekpoint"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir> <target_dir> <seek_point_delay>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="music_info"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-l | --list] [-r | --root_dir <root_dir>]"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="music_check"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] <source_dir>"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="music_folder_make"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-p | --music_pattern <music_pattern>] [-r | --root_dir <music_root_dir>]"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
# Global Variables
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
declare -g VERSION="1.0.0"
|
||||
declare -g VERSION="1.1.0"
|
||||
declare -g NAME="music_tag_cleaner"
|
||||
declare -g HELP="usage: [-h | --help] | [-V | --version] | [-T | --test] [-v | --verbose] [-f | --fix_missing_album_artist] [-a | --default_artist <default_artist>] [-p | --music_pattern <music_pattern>] [-r | --root_dir <music_root_dir>]"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user