From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C6630138334 for ; Fri, 12 Oct 2018 14:37:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DDDEE09EE; Fri, 12 Oct 2018 14:37:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3870AE09EE for ; Fri, 12 Oct 2018 14:37:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9EB9335C8F for ; Fri, 12 Oct 2018 14:37:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5AB33F6 for ; Fri, 12 Oct 2018 14:37:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1539355017.c16b8037a69fb8975615f4a1261ca777a52675f9.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libwacom/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libwacom/Manifest dev-libs/libwacom/libwacom-0.25.ebuild X-VCS-Directories: dev-libs/libwacom/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c16b8037a69fb8975615f4a1261ca777a52675f9 X-VCS-Branch: master Date: Fri, 12 Oct 2018 14:37:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 31cdefc0-5c06-4f6d-8769-a1159186c26e X-Archives-Hash: cd999ba44a059821aa6fc31e928f09cf commit: c16b8037a69fb8975615f4a1261ca777a52675f9 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 12 14:36:57 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Oct 12 14:36:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c16b8037 dev-libs/libwacom: Drop 0.25 Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 dev-libs/libwacom/Manifest | 1 - dev-libs/libwacom/libwacom-0.25.ebuild | 46 ---------------------------------- 2 files changed, 47 deletions(-) diff --git a/dev-libs/libwacom/Manifest b/dev-libs/libwacom/Manifest index edf4fc0c373..c7730541095 100644 --- a/dev-libs/libwacom/Manifest +++ b/dev-libs/libwacom/Manifest @@ -1,2 +1 @@ -DIST libwacom-0.25.tar.bz2 478780 BLAKE2B fb9f3010f2db7aecd967508976daec40fdf956d600b2cc12a90b560e6195e7fac01d5df08413c78247fc17a97850f250b2b4533d78d9fff38871114ce5ab9357 SHA512 080d12706c3b685ee1cb963b79068e0e7c08e47296c1535cde4d2280239758d6bccbd38982a63d366cab1a77a4db287cc5bb329abaee6dbb285c4b8e010eaf67 DIST libwacom-0.30.tar.gz 119261 BLAKE2B 4f76fcbed42c5453701e3b5dda880a26f9956a803827584aeaf080196b26bedb65f6bdccb7ffe18e7f93861dfee8a633894869b1ea4f6b95e72d64273087b60c SHA512 952ead4b39461d64d9592d0e05824669d0a8bc721aced46f5a99832da0fc63a4023f9803d416ceaf71dc7182660d05d45b799424bca7f54128fa7c44447b688b diff --git a/dev-libs/libwacom/libwacom-0.25.ebuild b/dev-libs/libwacom/libwacom-0.25.ebuild deleted file mode 100644 index e4c403cdcd6..00000000000 --- a/dev-libs/libwacom/libwacom-0.25.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eutils udev - -DESCRIPTION="Library for identifying Wacom tablets and their model-specific features" -HOMEPAGE="http://linuxwacom.sourceforge.net/" -SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="alpha amd64 arm ~ia64 ppc ppc64 sparc x86" -IUSE="doc static-libs" - -RDEPEND=" - dev-libs/glib:2 - virtual/libgudev:= -" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen ) -" - -src_prepare() { - default - if ! use doc; then - sed -e 's:^\(SUBDIRS = .* \)doc:\1:' -i Makefile.in || die - fi -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_install() { - default - local udevdir="$(get_udevdir)" - dodir "${udevdir}/rules.d" - # generate-udev-rules must be run from inside tools directory - pushd tools > /dev/null || die - ./generate-udev-rules > "${ED}/${udevdir}/rules.d/65-libwacom.rules" || die "generating udev rules failed" - popd > /dev/null || die - use doc && dohtml -r doc/html/* - prune_libtool_files -}