From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- net-libs/telepathy-glib/Manifest | 2 + net-libs/telepathy-glib/metadata.xml | 8 +++ .../telepathy-glib/telepathy-glib-0.24.0.ebuild | 63 +++++++++++++++++++++ .../telepathy-glib/telepathy-glib-0.24.1.ebuild | 64 ++++++++++++++++++++++ 4 files changed, 137 insertions(+) create mode 100644 net-libs/telepathy-glib/Manifest create mode 100644 net-libs/telepathy-glib/metadata.xml create mode 100644 net-libs/telepathy-glib/telepathy-glib-0.24.0.ebuild create mode 100644 net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild (limited to 'net-libs/telepathy-glib') diff --git a/net-libs/telepathy-glib/Manifest b/net-libs/telepathy-glib/Manifest new file mode 100644 index 000000000000..b2d877904c5e --- /dev/null +++ b/net-libs/telepathy-glib/Manifest @@ -0,0 +1,2 @@ +DIST telepathy-glib-0.24.0.tar.gz 3890992 SHA256 ae0002134991217f42e503c43dea7817853afc18863b913744d51ffa029818cf SHA512 97b30f9ea7996252c21777a72b98b3106c346e7cbf3185cb6d0ee75466a43447000d77b3dabd92cf93c59340baa830b9c07356939ba39fd2c8cf98738bc1ffb2 WHIRLPOOL bd9aecfbfdf302ed2365ec4b7d0d81b28ffc3e425c4e6280c3621a581fe8f9d4df7bf590c44357c98f3c64481600a8137d41d5842d9cc7a8bc7941af8f6348e7 +DIST telepathy-glib-0.24.1.tar.gz 3898149 SHA256 9e0df1d8f857e0270cf0b32e2d1ca5a24aa7282873361785d573f72ad7f7d5eb SHA512 2fed94f76a19d6069f671cdd45d2fd8a4b4ad27c4601aff66041ca205456be397c76a86f92cc9bf20fa4eb6d4c15a67ed8196644c143c37e945f382229a63335 WHIRLPOOL bc1c48cbc961d0a4c263dbdd4a31ff6a4ca3a32bfc3b9bc12f2691f46028f7c371ae16a4cd2908f425f49e8eaa84158e5122523f24e2d669defbf8868fb6cd17 diff --git a/net-libs/telepathy-glib/metadata.xml b/net-libs/telepathy-glib/metadata.xml new file mode 100644 index 000000000000..455620cf3c8e --- /dev/null +++ b/net-libs/telepathy-glib/metadata.xml @@ -0,0 +1,8 @@ + + + + gnome + + Enable bindings for dev-lang/vala + + diff --git a/net-libs/telepathy-glib/telepathy-glib-0.24.0.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.24.0.ebuild new file mode 100644 index 000000000000..757cb8bf9c10 --- /dev/null +++ b/net-libs/telepathy-glib/telepathy-glib-0.24.0.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) +VALA_MIN_API_VERSION="0.18" +VALA_USE_DEPEND="vapigen" + +inherit eutils gnome2 python-r1 vala virtualx + +DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol" +HOMEPAGE="http://telepathy.freedesktop.org" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" + +IUSE="debug +introspection +vala" +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + vala? ( introspection ) +" + +# Broken for a long time and upstream doesn't care +# https://bugs.freedesktop.org/show_bug.cgi?id=63212 +RESTRICT="test" + +RDEPEND=" + >=dev-libs/glib-2.36:2 + >=dev-libs/dbus-glib-0.90 + introspection? ( >=dev-libs/gobject-introspection-1.30 ) +" +DEPEND="${RDEPEND} + dev-libs/libxslt + dev-util/gtk-doc-am + virtual/pkgconfig + vala? ( $(vala_depend) ) + ${PYTHON_DEPS} +" +# See bug 504744 for reference +PDEPEND=" + net-im/telepathy-mission-control +" + +src_configure() { + python_export_best + + gnome2_src_configure \ + --disable-static \ + --disable-installed-tests \ + $(use_enable debug backtrace) \ + $(use_enable debug debug-cache) \ + $(use_enable introspection) \ + $(use_enable vala vala-bindings) +} + +src_test() { + unset DBUS_SESSION_BUS_ADDRESS + # Needs dbus for tests (auto-launched) + Xemake -j1 check +} diff --git a/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild new file mode 100644 index 000000000000..e7cb802eb8d6 --- /dev/null +++ b/net-libs/telepathy-glib/telepathy-glib-0.24.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" +PYTHON_COMPAT=( python2_7 ) +VALA_MIN_API_VERSION="0.18" +VALA_USE_DEPEND="vapigen" + +inherit eutils gnome2 python-r1 vala virtualx + +DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol" +HOMEPAGE="http://telepathy.freedesktop.org" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" + +IUSE="debug +introspection +vala" +REQUIRED_USE=" + ${PYTHON_REQUIRED_USE} + vala? ( introspection ) +" + +# Broken for a long time and upstream doesn't care +# https://bugs.freedesktop.org/show_bug.cgi?id=63212 +RESTRICT="test" + +RDEPEND=" + >=dev-libs/glib-2.36:2 + >=dev-libs/dbus-glib-0.90 + introspection? ( >=dev-libs/gobject-introspection-1.30 ) +" +DEPEND="${RDEPEND} + dev-libs/libxslt + dev-util/gtk-doc-am + virtual/pkgconfig + vala? ( $(vala_depend) ) + ${PYTHON_DEPS} +" +# See bug 504744 for reference +PDEPEND=" + net-im/telepathy-mission-control +" + +src_configure() { + python_export_best + + gnome2_src_configure \ + --disable-static \ + --disable-installed-tests \ + $(use_enable debug backtrace) \ + $(use_enable debug debug-cache) \ + $(use_enable introspection) \ + $(use_enable vala vala-bindings) +} + +src_test() { + unset DBUS_SESSION_BUS_ADDRESS + # Needs dbus for tests (auto-launched) + Xemake -j1 check +} -- cgit v1.2.3-65-gdbad