diff --git a/c++utilities/apple-darwin/PKGBUILD b/c++utilities/apple-darwin/PKGBUILD index dd6085e8..d931f7a5 100644 --- a/c++utilities/apple-darwin/PKGBUILD +++ b/c++utilities/apple-darwin/PKGBUILD @@ -6,7 +6,7 @@ _reponame=cpp-utilities pkgname=apple-darwin-c++utilities _name=${pkgname#apple-darwin-} -pkgver=4.12.1 +pkgver=4.13.0 pkgrel=1 arch=('any') pkgdesc='Common C++ classes and routines such as argument parser, IO and conversion utilities (apple-darwin)' @@ -16,7 +16,7 @@ optdepends=("$_name-doc: API documentation") makedepends=('clang' 'cmake') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('1ce02c97f4c0d8175656d9c7ee19bef7304f981bacc024bc05cbbd0e5b4b74af') +sha256sums=('dbf68dc8b9fa154b753403acfe66348c1f66f83782b662b9fcf6c73f301defcc') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i386-apple-darwin15 x86_64-apple-darwin15' # NOTE: can not build for x86_64h-apple-darwin15 because libstdc++ is (currently) only availabe for x86_64 diff --git a/c++utilities/default/PKGBUILD b/c++utilities/default/PKGBUILD index 60628d7b..67c39158 100644 --- a/c++utilities/default/PKGBUILD +++ b/c++utilities/default/PKGBUILD @@ -5,7 +5,7 @@ _reponame=cpp-utilities pkgname=c++utilities -pkgver=4.12.1 +pkgver=4.13.0 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Common C++ classes and routines such as argument parser, IO and conversion utilities' @@ -16,7 +16,7 @@ makedepends=('cmake') checkdepends=('cppunit') url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('1ce02c97f4c0d8175656d9c7ee19bef7304f981bacc024bc05cbbd0e5b4b74af') +sha256sums=('dbf68dc8b9fa154b753403acfe66348c1f66f83782b662b9fcf6c73f301defcc') prepare() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/c++utilities/doc/PKGBUILD b/c++utilities/doc/PKGBUILD index 4579f71d..a9329eeb 100644 --- a/c++utilities/doc/PKGBUILD +++ b/c++utilities/doc/PKGBUILD @@ -6,7 +6,7 @@ _name=c++utilities _reponame=cpp-utilities pkgname=$_name-doc -pkgver=4.12.1 +pkgver=4.13.0 pkgrel=1 arch=('any') pkgdesc='Common C++ classes and routines such as argument parser, IO and conversion utilities (API documentation)' @@ -14,7 +14,7 @@ license=('GPL') makedepends=('cmake' 'doxygen' 'dia' 'graphviz') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('1ce02c97f4c0d8175656d9c7ee19bef7304f981bacc024bc05cbbd0e5b4b74af') +sha256sums=('dbf68dc8b9fa154b753403acfe66348c1f66f83782b662b9fcf6c73f301defcc') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/c++utilities/mingw-w64/PKGBUILD b/c++utilities/mingw-w64/PKGBUILD index 88aadfd8..b247d01f 100644 --- a/c++utilities/mingw-w64/PKGBUILD +++ b/c++utilities/mingw-w64/PKGBUILD @@ -6,7 +6,7 @@ _reponame=cpp-utilities pkgname=mingw-w64-c++utilities _name=${pkgname#mingw-w64-} -pkgver=4.12.1 +pkgver=4.13.0 pkgrel=1 arch=('any') pkgdesc='Common C++ classes and routines such as argument parser, IO and conversion utilities (mingw-w64)' @@ -16,7 +16,7 @@ optdepends=("$_name-doc: API documentation") makedepends=('mingw-w64-gcc' 'mingw-w64-cmake') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('1ce02c97f4c0d8175656d9c7ee19bef7304f981bacc024bc05cbbd0e5b4b74af') +sha256sums=('dbf68dc8b9fa154b753403acfe66348c1f66f83782b662b9fcf6c73f301defcc') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' [[ $NO_STATIC_LIBS ]] || _configurations='-DENABLE_STATIC_LIBS:BOOL=ON' diff --git a/devel/own-projects/apply-versions-spec.sh b/devel/own-projects/apply-versions-spec.sh new file mode 100755 index 00000000..081a0a21 --- /dev/null +++ b/devel/own-projects/apply-versions-spec.sh @@ -0,0 +1,13 @@ +#!/usr/bin/bash +set -e # abort on first error +shopt -s nullglob +source versions.sh + +for spec_file in "$OSC_DIR"/*/*/*.spec; do + trimmed_path=${pkgbuild_file#$OSC_DIR/} + project_name=${trimmed_path%%/*} + + # TODO + + echo "$trimmed_path -> $version" +done diff --git a/devel/own-projects/apply-versions.sh b/devel/own-projects/apply-versions.sh new file mode 100755 index 00000000..cb444bcd --- /dev/null +++ b/devel/own-projects/apply-versions.sh @@ -0,0 +1,34 @@ +#!/usr/bin/bash +set -e # abort on first error +shopt -s nullglob +source versions.sh + +for pkgbuild_file in "${PKGBUILD_DIR:-../..}"/*/*/PKGBUILD; do + trimmed_path=${pkgbuild_file#${PKGBUILD_DIR:-../..}/} + project_name=${trimmed_path%%/*} + variant=${trimmed_path%/PKGBUILD} + variant=${variant#$project_name/} + + # skip Git packages + [ ${variant##*-} == 'git' ] && continue + + # skip some of the qt5 packages + [[ $project_name == 'qt5-quick1' || $project_name == 'qt5-webkit' || $project_name == 'qt5-webview' || $variant == 'mingw-w64-test' ]] && continue + + # treat all qt5-* packages as qt5 + [ ${project_name%%-*} == 'qt5' ] && project_name='qt5' + + # skip packages with unknown version + version=${versions[$project_name]} + [[ $version ]] || continue + + # skip if version doesn't differ + source "$pkgbuild_file" + [[ $version == $pkgver ]] && continue + + # apply new version + sed -i -e "s/pkgver=.*/pkgver=$version/" -e "s/pkgrel=.*/pkgrel=1/" "$pkgbuild_file" + chmod 644 "$pkgbuild_file" + + echo "$trimmed_path -> $version" +done diff --git a/devel/own-projects/versions.sh b/devel/own-projects/versions.sh new file mode 100755 index 00000000..9b4d3cb5 --- /dev/null +++ b/devel/own-projects/versions.sh @@ -0,0 +1,15 @@ +#!/usr/bin/bash +declare -A versions=( + [c++utilities]=4.13.0 + [qtutilities]=5.9.0 + [tagparser]=7.0.0 + [tageditor]=3.0.0 + [passwordfile]=3.1.4 + [passwordmanager]=3.1.5 + [syncthingtray]=0.7.4 + [videodownloader]=1.3.3 + [reflective-rapidjson]=0.0.4 + [blackwidowcontrol]=1.0.1 + [dbus-soundrecorder]=1.2.2 + [qt5]=5.10.1 +) diff --git a/passwordmanager/default/PKGBUILD b/passwordmanager/default/PKGBUILD index e5167ecb..a5e73b19 100644 --- a/passwordmanager/default/PKGBUILD +++ b/passwordmanager/default/PKGBUILD @@ -5,7 +5,7 @@ _reponame=passwordmanager pkgname=passwordmanager -pkgver=2.1.4 +pkgver=3.1.5 pkgrel=2 arch=('i686' 'x86_64') pkgdesc='A simple password store using AES-256-CBC encryption via OpenSSL' @@ -14,7 +14,7 @@ depends=('qt5-base' 'qtutilities' 'passwordfile' 'openssl' 'libxkbcommon-x11' 'd makedepends=('cmake' 'qt5-tools') url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('9f3c23372670816622208a3c9b4bb529b20a478586cb658b4b65a70e5ee65e24') +sha256sums=('5b9a6c9ab2e34a146a728867591189721622d89dfec32c58a6416d21f6b42510') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/passwordmanager/mingw-w64-static/PKGBUILD b/passwordmanager/mingw-w64-static/PKGBUILD index c40dffc1..8009fd53 100644 --- a/passwordmanager/mingw-w64-static/PKGBUILD +++ b/passwordmanager/mingw-w64-static/PKGBUILD @@ -6,7 +6,7 @@ _reponame=passwordmanager pkgname=mingw-w64-passwordmanager-static _name=${_reponame} -pkgver=2.1.4 +pkgver=3.1.5 pkgrel=2 arch=('any') pkgdesc='A simple password store using AES-256-CBC encryption via OpenSSL (mingw-w64, static)' @@ -16,7 +16,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'mingw-w64- conflicts=("${pkgname%-static}") url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('9f3c23372670816622208a3c9b4bb529b20a478586cb658b4b65a70e5ee65e24') +sha256sums=('5b9a6c9ab2e34a146a728867591189721622d89dfec32c58a6416d21f6b42510') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/passwordmanager/mingw-w64/PKGBUILD b/passwordmanager/mingw-w64/PKGBUILD index 6ba17116..6d38f0d6 100644 --- a/passwordmanager/mingw-w64/PKGBUILD +++ b/passwordmanager/mingw-w64/PKGBUILD @@ -6,7 +6,7 @@ _reponame=passwordmanager pkgname=mingw-w64-passwordmanager _name=${pkgname#mingw-w64-} -pkgver=2.1.4 +pkgver=3.1.5 pkgrel=2 arch=('any') pkgdesc='A simple password store using AES-256-CBC encryption via OpenSSL (mingw-w64)' @@ -15,7 +15,7 @@ depends=('mingw-w64-crt' 'mingw-w64-qt5-base' 'mingw-w64-qtutilities' 'mingw-w64 makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('9f3c23372670816622208a3c9b4bb529b20a478586cb658b4b65a70e5ee65e24') +sha256sums=('5b9a6c9ab2e34a146a728867591189721622d89dfec32c58a6416d21f6b42510') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/qtutilities/default/PKGBUILD b/qtutilities/default/PKGBUILD index 0ac36be8..7349a684 100644 --- a/qtutilities/default/PKGBUILD +++ b/qtutilities/default/PKGBUILD @@ -5,7 +5,7 @@ _reponame=qtutilities pkgname=qtutilities -pkgver=5.8.2 +pkgver=5.9.0 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models' @@ -15,7 +15,7 @@ makedepends=('cmake' 'qt5-tools') optdepends=("$pkgname-doc: API documentation") url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('a20cdd3e854c77bc25f9a05c079e5b81dc53d1eef3b8a6d913f3f14d8b6eabaa') +sha256sums=('e81ae842218964d28dac61a74a1ebebc73aac8c4891c4fb2e5d7c75fe1588d35') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/qtutilities/doc/PKGBUILD b/qtutilities/doc/PKGBUILD index 47686d0f..1b77cb6b 100644 --- a/qtutilities/doc/PKGBUILD +++ b/qtutilities/doc/PKGBUILD @@ -6,7 +6,7 @@ _name=qtutilities _reponame=$_name pkgname=$_name-doc -pkgver=5.8.2 +pkgver=5.9.0 pkgrel=1 arch=('any') pkgdesc='Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models (API documentation)' @@ -14,7 +14,7 @@ license=('GPL') makedepends=('cmake' 'doxygen' 'dia' 'graphviz' 'c++utilities' 'qt5-tools') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('a20cdd3e854c77bc25f9a05c079e5b81dc53d1eef3b8a6d913f3f14d8b6eabaa') +sha256sums=('e81ae842218964d28dac61a74a1ebebc73aac8c4891c4fb2e5d7c75fe1588d35') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/qtutilities/mingw-w64/PKGBUILD b/qtutilities/mingw-w64/PKGBUILD index 4a6ded54..672d595a 100644 --- a/qtutilities/mingw-w64/PKGBUILD +++ b/qtutilities/mingw-w64/PKGBUILD @@ -6,7 +6,7 @@ _reponame=qtutilities pkgname=mingw-w64-qtutilities _name=${pkgname#mingw-w64-} -pkgver=5.8.2 +pkgver=5.9.0 pkgrel=1 arch=('any') pkgdesc='Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models (mingw-w64)' @@ -16,7 +16,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools') optdepends=("$_name-doc: API documentation") url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('a20cdd3e854c77bc25f9a05c079e5b81dc53d1eef3b8a6d913f3f14d8b6eabaa') +sha256sums=('e81ae842218964d28dac61a74a1ebebc73aac8c4891c4fb2e5d7c75fe1588d35') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' [[ $NO_STATIC_LIBS ]] || diff --git a/syncthingtray/default/PKGBUILD b/syncthingtray/default/PKGBUILD index 0062c243..cc0e08a8 100644 --- a/syncthingtray/default/PKGBUILD +++ b/syncthingtray/default/PKGBUILD @@ -18,7 +18,7 @@ _enable_plasmoid=1 _reponame=syncthingtray pkgname=syncthingtray -pkgver=0.7.3 +pkgver=0.7.4 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='Tray application for Syncthing' @@ -35,7 +35,7 @@ checkdepends=('cppunit' 'syncthing') [[ $_enable_plasmoid ]] && makedepends+=('plasma-framework' 'extra-cmake-modules') url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('bb68130de4bb47fb7da4d4cefecbec6ec5fca3408790c172dfd9779b7e3b14d7') +sha256sums=('c0345c6e72115f3fc276809ee639f9d70ec5befb8befbf61bdbdd7ef9160f97d') ephemeral_port() { comm -23 <(seq 49152 65535) <(ss -tan | awk '{print $4}' | cut -d':' -f2 | grep "[0-9]\{1,5\}" | sort | uniq) | shuf | head -n 1 diff --git a/syncthingtray/mingw-w64-static/PKGBUILD b/syncthingtray/mingw-w64-static/PKGBUILD index 8e99ab02..8faeedd9 100644 --- a/syncthingtray/mingw-w64-static/PKGBUILD +++ b/syncthingtray/mingw-w64-static/PKGBUILD @@ -9,7 +9,7 @@ _webview_provider=none _reponame=syncthingtray pkgname=mingw-w64-syncthingtray-static _name=${_reponame} -pkgver=0.7.3 +pkgver=0.7.4 pkgrel=1 arch=('any') pkgdesc='Tray application for Syncthing (mingw-w64)' @@ -21,7 +21,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-base-static' 'ming conflicts=("${pkgname%-static}") url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('bb68130de4bb47fb7da4d4cefecbec6ec5fca3408790c172dfd9779b7e3b14d7') +sha256sums=('c0345c6e72115f3fc276809ee639f9d70ec5befb8befbf61bdbdd7ef9160f97d') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/syncthingtray/mingw-w64-webview/PKGBUILD b/syncthingtray/mingw-w64-webview/PKGBUILD index 54a52647..22171767 100644 --- a/syncthingtray/mingw-w64-webview/PKGBUILD +++ b/syncthingtray/mingw-w64-webview/PKGBUILD @@ -10,7 +10,7 @@ _reponame=syncthingtray pkgname=mingw-w64-syncthingtray-webview provides=('mingw-w64-syncthingtray') conflicts=('mingw-w64-syncthingtray') -pkgver=0.7.3 +pkgver=0.7.4 pkgrel=1 arch=('any') pkgdesc='Tray application for Syncthing (mingw-w64)' @@ -22,7 +22,7 @@ depends=('mingw-w64-crt' 'mingw-w64-qt5-svg' 'mingw-w64-qtutilities' 'mingw-w64- makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg') url="https://github.com/Martchus/${_reponame}" source=("${_reponame}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('bb68130de4bb47fb7da4d4cefecbec6ec5fca3408790c172dfd9779b7e3b14d7') +sha256sums=('c0345c6e72115f3fc276809ee639f9d70ec5befb8befbf61bdbdd7ef9160f97d') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/syncthingtray/mingw-w64/PKGBUILD b/syncthingtray/mingw-w64/PKGBUILD index 7b72d766..d1b44ef9 100644 --- a/syncthingtray/mingw-w64/PKGBUILD +++ b/syncthingtray/mingw-w64/PKGBUILD @@ -9,7 +9,7 @@ _webview_provider=none _reponame=syncthingtray pkgname=mingw-w64-syncthingtray _name=${pkgname#mingw-w64-} -pkgver=0.7.3 +pkgver=0.7.4 pkgrel=1 arch=('any') pkgdesc='Tray application for Syncthing (mingw-w64)' @@ -21,7 +21,7 @@ depends=('mingw-w64-crt' 'mingw-w64-qt5-svg' 'mingw-w64-qtutilities' 'mingw-w64- makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('bb68130de4bb47fb7da4d4cefecbec6ec5fca3408790c172dfd9779b7e3b14d7') +sha256sums=('c0345c6e72115f3fc276809ee639f9d70ec5befb8befbf61bdbdd7ef9160f97d') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/tageditor/default/PKGBUILD b/tageditor/default/PKGBUILD index fbd9e0a3..42f9c959 100644 --- a/tageditor/default/PKGBUILD +++ b/tageditor/default/PKGBUILD @@ -14,7 +14,7 @@ _json_export=ON _reponame=tageditor pkgname=tageditor -pkgver=2.3.3 +pkgver=3.0.0 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska' @@ -30,7 +30,7 @@ makedepends=('cmake' 'qt5-tools') checkdepends=('cppunit') url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('8ff40de447159461455f6c529c455b2e10fcd89247964397b65dd09aac9a3cc1') +sha256sums=('64aa5d43277c3e1aacf197f67aa642649727c271be49599ac7c6af5f9111f7e8') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/tageditor/mingw-w64-static/PKGBUILD b/tageditor/mingw-w64-static/PKGBUILD index 971d5751..51b1ed61 100644 --- a/tageditor/mingw-w64-static/PKGBUILD +++ b/tageditor/mingw-w64-static/PKGBUILD @@ -15,7 +15,7 @@ _json_export=ON _reponame=tageditor pkgname=mingw-w64-tageditor-static _name=${_reponame} -pkgver=2.3.3 +pkgver=3.0.0 pkgrel=1 arch=('any') pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska' @@ -30,7 +30,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-base-static' 'ming conflicts=("${pkgname%-static}") url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('8ff40de447159461455f6c529c455b2e10fcd89247964397b65dd09aac9a3cc1') +sha256sums=('64aa5d43277c3e1aacf197f67aa642649727c271be49599ac7c6af5f9111f7e8') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/tageditor/mingw-w64-webview/PKGBUILD b/tageditor/mingw-w64-webview/PKGBUILD index 1bb085fe..0548082c 100644 --- a/tageditor/mingw-w64-webview/PKGBUILD +++ b/tageditor/mingw-w64-webview/PKGBUILD @@ -17,7 +17,7 @@ pkgname=mingw-w64-tageditor-webview provides=('mingw-w64-tageditor') conflicts=('mingw-w64-tageditor') _name=${pkgname#mingw-w64-} -pkgver=2.3.3 +pkgver=3.0.0 pkgrel=1 arch=('any') pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska' @@ -32,7 +32,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg') [[ $_json_export == ON ]] && makedepends+=('mingw-w64-reflective-rapidjson') url="https://github.com/Martchus/${_reponame}" source=("${_reponame}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('8ff40de447159461455f6c529c455b2e10fcd89247964397b65dd09aac9a3cc1') +sha256sums=('64aa5d43277c3e1aacf197f67aa642649727c271be49599ac7c6af5f9111f7e8') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/tageditor/mingw-w64/PKGBUILD b/tageditor/mingw-w64/PKGBUILD index 729421ac..99e9784f 100644 --- a/tageditor/mingw-w64/PKGBUILD +++ b/tageditor/mingw-w64/PKGBUILD @@ -15,7 +15,7 @@ _json_export=ON _reponame=tageditor pkgname=mingw-w64-tageditor _name=${pkgname#mingw-w64-} -pkgver=2.3.3 +pkgver=3.0.0 pkgrel=1 arch=('any') pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska' @@ -30,7 +30,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake' 'mingw-w64-qt5-tools' 'ffmpeg') [[ $_json_export == ON ]] && makedepends+=('mingw-w64-reflective-rapidjson') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('8ff40de447159461455f6c529c455b2e10fcd89247964397b65dd09aac9a3cc1') +sha256sums=('64aa5d43277c3e1aacf197f67aa642649727c271be49599ac7c6af5f9111f7e8') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' diff --git a/tagparser/default/PKGBUILD b/tagparser/default/PKGBUILD index 096a69c0..656c00bc 100644 --- a/tagparser/default/PKGBUILD +++ b/tagparser/default/PKGBUILD @@ -5,7 +5,7 @@ _reponame=tagparser pkgname=tagparser -pkgver=6.5.1 +pkgver=7.0.0 pkgrel=1 arch=('i686' 'x86_64') pkgdesc='C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags' @@ -16,7 +16,7 @@ checkdepends=('cppunit' 'openssl') optdepends=("$pkgname-doc: API documentation") url="https://github.com/Martchus/${_reponame}" source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('abc9ffc1148ca27d88877c55e48bdeafe0156deefe70c0309a3764ec395abd59') +sha256sums=('db2031a168bebd4ac2e93f87de1a4fa29d920a14dbfdbab00e1b13d80267f07c') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/tagparser/doc/PKGBUILD b/tagparser/doc/PKGBUILD index 2d638ae8..7d95a5ef 100644 --- a/tagparser/doc/PKGBUILD +++ b/tagparser/doc/PKGBUILD @@ -6,7 +6,7 @@ _name=tagparser _reponame=tagparser pkgname=$_name-doc -pkgver=6.5.1 +pkgver=7.0.0 pkgrel=1 arch=('any') pkgdesc='C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags (API documentation)' @@ -14,7 +14,7 @@ license=('GPL') makedepends=('cmake' 'doxygen' 'dia' 'graphviz' 'c++utilities') url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('abc9ffc1148ca27d88877c55e48bdeafe0156deefe70c0309a3764ec395abd59') +sha256sums=('db2031a168bebd4ac2e93f87de1a4fa29d920a14dbfdbab00e1b13d80267f07c') build() { cd "$srcdir/${PROJECT_DIR_NAME:-$_reponame-$pkgver}" diff --git a/tagparser/mingw-w64/PKGBUILD b/tagparser/mingw-w64/PKGBUILD index 050a0988..5291b25b 100644 --- a/tagparser/mingw-w64/PKGBUILD +++ b/tagparser/mingw-w64/PKGBUILD @@ -6,7 +6,7 @@ _reponame=tagparser pkgname=mingw-w64-tagparser _name=${pkgname#mingw-w64-} -pkgver=6.5.1 +pkgver=7.0.0 pkgrel=1 arch=('any') pkgdesc='C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags (mingw-w64)' @@ -17,7 +17,7 @@ makedepends=('mingw-w64-gcc' 'mingw-w64-cmake') optdepends=("$pkgname-doc: API documentation") url="https://github.com/Martchus/${_reponame}" source=("${_name}-${pkgver}.tar.gz::https://github.com/Martchus/${_reponame}/archive/v${pkgver}.tar.gz") -sha256sums=('abc9ffc1148ca27d88877c55e48bdeafe0156deefe70c0309a3764ec395abd59') +sha256sums=('db2031a168bebd4ac2e93f87de1a4fa29d920a14dbfdbab00e1b13d80267f07c') options=(!buildflags staticlibs !strip !emptydirs) _architectures='i686-w64-mingw32 x86_64-w64-mingw32' [[ $NO_STATIC_LIBS ]] || _configurations='-DENABLE_STATIC_LIBS:BOOL=ON'