net-im/openmittsu: drop 0.10.2.0

Signed-off-by: Ulrich Müller <ulm@gentoo.org>
This commit is contained in:
Ulrich Müller 2025-11-22 14:58:34 +01:00
parent 843b8b21ab
commit 53672cf9e8
No known key found for this signature in database
GPG Key ID: 5188335088415E2E
2 changed files with 0 additions and 63 deletions

View File

@ -1,2 +1 @@
DIST openmittsu-0.10.2.0.tar.xz 2290108 BLAKE2B b0e13f5833b9319322d6ab4544e719922c3edeb9189b4ea7f1f9dfb5700fdd107f8c3b7039a38befc54673c0d768ca4e649e8447221ee847cb04b364602ad913 SHA512 0ef2f66c6ccf17c33b39cf1a2942264de52397a4abc6f9e7ee667e739c56d80f5e8b5c95534861cba755e32f649135b21807061b5bac93d79d57905588eb232f
DIST openmittsu-0.10.3.0.tar.xz 2292552 BLAKE2B c87240a45c24173230b6fe49d24fb06b804b0c99bce70e612da0342c41d975c36fa41193057b19c9575109b004592d7c065a40b417306a305b91a01abc5ac383 SHA512 06977dabfca1b79cf871963c219cbdbbcff1006b4ac93b3d9e70166336ae67da8cae08f2f488ff1f9a70fbbc46555ef61610a82205356a2273bd9b34a22e0d78 DIST openmittsu-0.10.3.0.tar.xz 2292552 BLAKE2B c87240a45c24173230b6fe49d24fb06b804b0c99bce70e612da0342c41d975c36fa41193057b19c9575109b004592d7c065a40b417306a305b91a01abc5ac383 SHA512 06977dabfca1b79cf871963c219cbdbbcff1006b4ac93b3d9e70166336ae67da8cae08f2f488ff1f9a70fbbc46555ef61610a82205356a2273bd9b34a22e0d78

View File

@ -1,62 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop
DESCRIPTION="Open source chat client for Threema-style end-to-end encrypted chat networks"
HOMEPAGE="https://www.openmittsu.de/"
# snapshot of https://github.com/blizzard4591/openMittsu.git
# git-archive-all.sh --prefix ${P}/ -- - | xz > ${P}.tar.xz
SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
LICENSE="GPL-2+ BitstreamVera OFL-1.1 Apache-2.0 CC0-1.0 MIT BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-db/qt5-sqlcipher:0
>=dev-libs/libsodium-1.0.18:=
>=dev-qt/qtcore-5.7.1:5=
>=dev-qt/qtgui-5.7.1:5=
>=dev-qt/qtmultimedia-5.7.1:5=[widgets]
>=dev-qt/qtnetwork-5.7.1:5=[ssl]
>=dev-qt/qtsql-5.7.1:5=[sqlite]
>=dev-qt/qtwidgets-5.7.1:5=
>=media-gfx/qrencode-3.4.4-r1:="
DEPEND="${RDEPEND}
test? ( >=dev-cpp/gtest-1.8.0 )"
DOCS=(
README.md
Example-client-configuration-file.ini
Example-contacts-file.txt
)
CMAKE_BUILD_TYPE="Gentoo"
src_configure() {
local mycmakeargs=(
# set version manually, since autodetection works only with git
"-DOPENMITTSU_CUSTOM_VERSION_STRING=${PV%.*}-${PV##*.}-00000000"
"-DOPENMITTSU_DISABLE_VERSION_UPDATE_CHECK=ON"
"-DOPENMITTSU_ENABLE_TESTS=$(usex test)"
)
cmake_src_configure
}
src_test() {
cd "${BUILD_DIR}" || die
./openMittsuTests || die
}
src_install() {
local my_pn="openMittsu"
cmake_src_install
newicon resources/icon.png ${my_pn}.png
make_desktop_entry ${my_pn} ${my_pn} ${my_pn}
rm "${ED}"/usr/bin/${my_pn}VersionInfo || die
rm -f "${ED}"/usr/bin/${my_pn}Tests || die
}