Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/openmittsu/
Date: Sat, 17 Aug 2019 23:28:39
Message-Id: 1566084300.21bd0e7c618ede2350a442241080f194daf57deb.ulm@gentoo
1 commit: 21bd0e7c618ede2350a442241080f194daf57deb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 17 23:25:00 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 17 23:25:00 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21bd0e7c
7
8 net-im/openmittsu: Remove old.
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 net-im/openmittsu/Manifest | 1 -
14 net-im/openmittsu/openmittsu-0.9.11.0.ebuild | 58 ----------------------------
15 2 files changed, 59 deletions(-)
16
17 diff --git a/net-im/openmittsu/Manifest b/net-im/openmittsu/Manifest
18 index ec17a980fa3..40a2d02833a 100644
19 --- a/net-im/openmittsu/Manifest
20 +++ b/net-im/openmittsu/Manifest
21 @@ -1,2 +1 @@
22 -DIST openmittsu-0.9.11.0.tar.xz 1408088 BLAKE2B 6c16ea2c35c0a4e02b2735d292516e22c238ca6d3f32f2869be8fec265f099761a5afef0303b2bd84c8f2e5383d7fff6dd18b2e57fc0d12da30a8d8a1637242b SHA512 534a589aa7bf4aa1be4e7d887ef1d4b025eeb1f82d8503cb048a7802ad4380c78224acae4a5f41a56be838a5a43af78f496bd0336034232208bc4de49a71b4d5
23 DIST openmittsu-0.9.13.32.tar.xz 2078892 BLAKE2B 4960d3046dfe45568f56ddc4ad77677992ac4dc4d618a926a15b35431955c8f30aa20ad236cc3143bc1a24f64a4635fdc072a1c9f921238f1283b81b3d6befb7 SHA512 671ce8ed1a6f9aa8d15ee0d72ce78e2b5aef556243efacec4b0b434eaf5b0bd1b34aa6a0391e42ead9007011cca88e7ba2649f16456a2bf74d22355d1f308a0f
24
25 diff --git a/net-im/openmittsu/openmittsu-0.9.11.0.ebuild b/net-im/openmittsu/openmittsu-0.9.11.0.ebuild
26 deleted file mode 100644
27 index 0e19faba5aa..00000000000
28 --- a/net-im/openmittsu/openmittsu-0.9.11.0.ebuild
29 +++ /dev/null
30 @@ -1,58 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-utils desktop
37 -
38 -DESCRIPTION="An open source chat client for Threema-style end-to-end encrypted chat networks"
39 -HOMEPAGE="https://www.openmittsu.de/"
40 -# git-archive-all.sh snapshot of https://github.com/blizzard4591/openMittsu.git
41 -SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz"
42 -
43 -LICENSE="GPL-2+ BitstreamVera OFL-1.1 Apache-2.0 CC0-1.0 MIT BSD"
44 -SLOT="0"
45 -KEYWORDS="~amd64"
46 -IUSE="test"
47 -
48 -RDEPEND="dev-db/qt5-sqlcipher
49 - >=dev-libs/libsodium-1.0.11:=
50 - >=dev-qt/qtcore-5.7.1:5=
51 - >=dev-qt/qtgui-5.7.1:5=
52 - >=dev-qt/qtmultimedia-5.7.1:5=
53 - >=dev-qt/qtnetwork-5.7.1:5=[ssl]
54 - >=dev-qt/qtsql-5.7.1:5=[sqlite]
55 - >=dev-qt/qtwidgets-5.7.1:5=
56 - >=media-gfx/qrencode-3.4.4-r1:="
57 -DEPEND="${RDEPEND}
58 - test? ( >=dev-cpp/gtest-1.8.0 )"
59 -
60 -DOCS=(
61 - README.md
62 - Example-client-configuration-file.ini
63 - Example-contacts-file.txt
64 -)
65 -
66 -src_configure() {
67 - local mycmakeargs=(
68 - # set version manually, since autodetection works only with git
69 - "-DOPENMITTSU_CUSTOM_VERSION_STRING=${PV%.*}-${PV##*.}-00000000"
70 - "-DOPENMITTSU_DISABLE_VERSION_UPDATE_CHECK=ON"
71 - "-DOPENMITTSU_ENABLE_TESTS=$(usex test)"
72 - )
73 - cmake-utils_src_configure
74 -}
75 -
76 -src_test() {
77 - cd "${BUILD_DIR}" || die
78 - ./openMittsuTests || die
79 -}
80 -
81 -src_install() {
82 - local my_pn="openMittsu"
83 - cmake-utils_src_install
84 - newicon resources/icon.png ${my_pn}.png
85 - make_desktop_entry ${my_pn} ${my_pn} ${my_pn}
86 - rm "${ED}"/usr/bin/${my_pn}VersionInfo || die
87 - rm -f "${ED}"/usr/bin/${my_pn}Tests || die
88 -}