From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 36ECE1384C0 for ; Sat, 29 Aug 2015 14:04:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 544F4E0924; Sat, 29 Aug 2015 14:04:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D969FE0924 for ; Sat, 29 Aug 2015 14:04:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA85E340AEF for ; Sat, 29 Aug 2015 14:04:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B74017A for ; Sat, 29 Aug 2015 14:04:17 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1440856995.4e0d41de33b0862b333f11468943550a5bf1f788.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/glyr/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/glyr/Manifest media-libs/glyr/glyr-1.0.7.ebuild X-VCS-Directories: media-libs/glyr/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 4e0d41de33b0862b333f11468943550a5bf1f788 X-VCS-Branch: master Date: Sat, 29 Aug 2015 14:04:17 +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: 8a230c6c-9c5a-49fc-b2f1-0c1ea9812eb9 X-Archives-Hash: 27c9cbe729e506d170bf7df214aa701f commit: 4e0d41de33b0862b333f11468943550a5bf1f788 Author: Alexis Ballier gentoo org> AuthorDate: Sat Aug 29 14:03:15 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sat Aug 29 14:03:15 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e0d41de media-libs/glyr: bump to 1.0.7 Package-Manager: portage-2.2.20.1 media-libs/glyr/Manifest | 1 + media-libs/glyr/glyr-1.0.7.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/media-libs/glyr/Manifest b/media-libs/glyr/Manifest index 84a343f..b37e4b4 100644 --- a/media-libs/glyr/Manifest +++ b/media-libs/glyr/Manifest @@ -1 +1,2 @@ DIST glyr-1.0.5.tar.gz 426382 SHA256 5606ff8713c28c83489628673328a625485a513b009ed64d9a5a781e64d78047 SHA512 e630116ae5a673c9b85a0a4f3dfa2a8ede319bdca357225250ab687b7bf08ddf86041316962918d577376d9641ba1128ec95fa24b5784150155acf78959af744 WHIRLPOOL 765e893642e431daeae4c814c8ca9a3163e0016c45be86f29e2e355e3b99bde1919cfba359aaf15d9952ce4410fa6e9f0b1e9f9378409a8b8dbd45e48ce888d1 +DIST glyr-1.0.7.tar.gz 425072 SHA256 74de3bed8b14bf692a60fad36d5db0d769c5abd19e1ba9540439ff7de2d9b0c9 SHA512 e6ffe4f1f2630fead1a8593b63e10dacfa3d8d57b241d0f660f5cd35223dd3b2888d6eee8e6089548ed01301326d195e98f50893745ee3567570d498e23b8c1d WHIRLPOOL 4b97ad50e917bd995f6d5045382b4613722fb2d03247128db3f8dc74e2347eeeb9757feb62b37dbffc787a1ff484dc4c3ffa0837858b14b9d7413542bbea5e0f diff --git a/media-libs/glyr/glyr-1.0.7.ebuild b/media-libs/glyr/glyr-1.0.7.ebuild new file mode 100644 index 0000000..fbed2b3 --- /dev/null +++ b/media-libs/glyr/glyr-1.0.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="A music related metadata searchengine, both with commandline interface and C API" +HOMEPAGE="https://github.com/sahib/glyr" +SRC_URI="https://github.com/sahib/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-db/sqlite:3 + >=dev-libs/glib-2.10:2 + net-misc/curl" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS="AUTHORS README*" # CHANGELOG is obsolete in favour of git history + +src_prepare() { + sed -i \ + -e '/GCC_ONLY_OPT.*-s/d' \ + -e '/FLAGS/s:-Os::' \ + -e '/FLAGS/s:-g3::' \ + CMakeLists.txt || die +}