From 8b4ace9c50842c5b83401ea7b179dcab940387e1 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 23 Sep 2020 10:22:15 +0100 Subject: gentoo resync : 23.09.2020 --- net-im/telepathy-logger/Manifest | 3 +- .../telepathy-logger-0.8.2-r1.ebuild | 57 ++++++++++++++++++++++ .../telepathy-logger/telepathy-logger-0.8.2.ebuild | 50 ------------------- 3 files changed, 59 insertions(+), 51 deletions(-) create mode 100644 net-im/telepathy-logger/telepathy-logger-0.8.2-r1.ebuild delete mode 100644 net-im/telepathy-logger/telepathy-logger-0.8.2.ebuild (limited to 'net-im/telepathy-logger') diff --git a/net-im/telepathy-logger/Manifest b/net-im/telepathy-logger/Manifest index 72b71317327e..782cb1af55b3 100644 --- a/net-im/telepathy-logger/Manifest +++ b/net-im/telepathy-logger/Manifest @@ -1,3 +1,4 @@ +DIST telepathy-logger-0.8.2-py3.patch 15181 BLAKE2B bebd153a519ee6cd4d7e3e04b4516e6fb53b6efea1d0693133ca5807686e115d08998e9e3ad0d6308d01945a0ac1b66010c3e312346dd238c43be1418574e11e SHA512 98cd5f9af7d4781be30b15c58ca6cd3a131b52dbc5cc38eae3423fc3377a02451782838d9f32575a71dd8d6ce7f46657e17f3dee29059a728bb8988d05c716ea DIST telepathy-logger-0.8.2.tar.bz2 562670 BLAKE2B 357d717136fe099ee3788bcd004d3eb14e83520c39a8412f4586181e0a1c98ac21be26931759b8f0439ab6f2f9b32aaf6cbf586619ab0fe40ef0f9581b301a29 SHA512 f3eda26133a4c38eeb79b01cbe3b7801a5eb773e8b4e6ce621c47d3ca701025364c6b2b890caea00104f01ba85ae891a6fad82d7a9dc487fd7a980221cede451 -EBUILD telepathy-logger-0.8.2.ebuild 1253 BLAKE2B bf98fe8c63ded40cd7282caf2a7aea72ba0fe0f306525ad3fc9cea1f2f2ec6f0420fb219e997f8512f1fa75bc203238e7546731e37be5e7d09f14f675f3beaf8 SHA512 f86c81c35e61bb98b19c772067451c6ecb4d6885863e24ac439aee51276539641302d095626e7c2fd26be1ebc6f4aa2c0abf292e61c0bae4c358c5119dc27755 +EBUILD telepathy-logger-0.8.2-r1.ebuild 1444 BLAKE2B d5911b1dd7074781f5fffb041ec752eaf22b32c30c5c17efa30cd4f61012842ef678229a0227779d25e684f019a03a9ea17a673f1bbc3fe2c4955f9ac02ea695 SHA512 46bd9c39229b2bc74b8c9c5ba13ff0706f1314169403038974c24b8cb19a22de9e4ecf1bbe289996fec2818626353a7642cc671203d868bee9be81eb436f89c4 MISC metadata.xml 249 BLAKE2B e71e1b95fee768c696704acbf7e3cf0e599ed2bc8de92bae0141d1194ef9e842bdc292798904487a9b90ddfda9b0e84abd3b76b1518576c1d288240e4e46f110 SHA512 c40662134899a5c9f0369a1017806f35adf3280a0b3c91726f7a8ca6012a073a8b471583f5bfb6fe95faac1dcf607e8e2e43f8c91d48ec46f4a8824e2f551506 diff --git a/net-im/telepathy-logger/telepathy-logger-0.8.2-r1.ebuild b/net-im/telepathy-logger/telepathy-logger-0.8.2-r1.ebuild new file mode 100644 index 000000000000..c240b8874f28 --- /dev/null +++ b/net-im/telepathy-logger/telepathy-logger-0.8.2-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +GCONF_DEBUG="no" +PYTHON_COMPAT=( python3_{6..9} ) + +inherit epatch gnome2 python-any-r1 virtualx + +DESCRIPTION="Daemon that centralizes the communication logging within the Telepathy framework" +HOMEPAGE="https://telepathy.freedesktop.org/wiki/Logger" +SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.bz2 + https://gitlab.freedesktop.org/telepathy/telepathy-logger/-/merge_requests/1.patch + -> ${P}-py3.patch" + +LICENSE="LGPL-2.1+" +SLOT="0/3" +KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux" +IUSE="+introspection" + +RDEPEND=" + >=dev-libs/glib-2.28:2 + >=sys-apps/dbus-1.1 + >=dev-libs/dbus-glib-0.82 + >=net-libs/telepathy-glib-0.19.2[introspection?] + dev-libs/libxml2 + dev-libs/libxslt + dev-db/sqlite:3 + introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) +" +DEPEND="${RDEPEND} + ${PYTHON_DEPS} + dev-util/glib-utils + >=dev-util/gtk-doc-am-1.10 + >=dev-util/intltool-0.35 + virtual/pkgconfig +" + +src_prepare() { + epatch "${DISTDIR}"/${P}-py3.patch + gnome2_src_prepare +} + +src_configure() { + # --enable-debug needed due to https://bugs.freedesktop.org/show_bug.cgi?id=83390 + gnome2_src_configure \ + $(use_enable introspection) \ + --enable-debug \ + --enable-public-extensions \ + --disable-coding-style-checks \ + --disable-Werror \ + --disable-static +} + +src_test() { + virtx emake -j1 check +} diff --git a/net-im/telepathy-logger/telepathy-logger-0.8.2.ebuild b/net-im/telepathy-logger/telepathy-logger-0.8.2.ebuild deleted file mode 100644 index 785a3809cdfe..000000000000 --- a/net-im/telepathy-logger/telepathy-logger-0.8.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -GCONF_DEBUG="no" -PYTHON_COMPAT=( python2_7 ) - -inherit gnome2 python-any-r1 virtualx - -DESCRIPTION="Daemon that centralizes the communication logging within the Telepathy framework" -HOMEPAGE="https://telepathy.freedesktop.org/wiki/Logger" -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1+" -SLOT="0/3" -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-linux" -IUSE="+introspection" - -RDEPEND=" - >=dev-libs/glib-2.28:2 - >=sys-apps/dbus-1.1 - >=dev-libs/dbus-glib-0.82 - >=net-libs/telepathy-glib-0.19.2[introspection?] - dev-libs/libxml2 - dev-libs/libxslt - dev-db/sqlite:3 - introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-util/glib-utils - >=dev-util/gtk-doc-am-1.10 - >=dev-util/intltool-0.35 - virtual/pkgconfig -" - -src_configure() { - # --enable-debug needed due to https://bugs.freedesktop.org/show_bug.cgi?id=83390 - gnome2_src_configure \ - $(use_enable introspection) \ - --enable-debug \ - --enable-public-extensions \ - --disable-coding-style-checks \ - --disable-Werror \ - --disable-static -} - -src_test() { - virtx emake -j1 check -} -- cgit v1.2.3