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 64660138332 for ; Wed, 11 Apr 2018 16:19:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74FBBE09C7; Wed, 11 Apr 2018 16:19:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4E87AE0978 for ; Wed, 11 Apr 2018 16:19:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 36221335C7A for ; Wed, 11 Apr 2018 16:19:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0502284 for ; Wed, 11 Apr 2018 16:19:49 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1523463584.87a35780492cd4217c4d4af89cdf6321d4f47518.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/clazy/Manifest dev-util/clazy/clazy-1.2.ebuild X-VCS-Directories: dev-util/clazy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 87a35780492cd4217c4d4af89cdf6321d4f47518 X-VCS-Branch: master Date: Wed, 11 Apr 2018 16:19:49 +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: 168dbcb0-f275-43e5-a2e3-60e444a0ea65 X-Archives-Hash: 5495c1c76386d76285022aa4645988e7 commit: 87a35780492cd4217c4d4af89cdf6321d4f47518 Author: Michał Górny gentoo org> AuthorDate: Sat Mar 31 09:46:31 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 11 16:19:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a35780 dev-util/clazy: Drop old dev-util/clazy/Manifest | 1 - dev-util/clazy/clazy-1.2.ebuild | 34 ---------------------------------- 2 files changed, 35 deletions(-) diff --git a/dev-util/clazy/Manifest b/dev-util/clazy/Manifest index b873c05fc1c..d5b54461f86 100644 --- a/dev-util/clazy/Manifest +++ b/dev-util/clazy/Manifest @@ -1,2 +1 @@ DIST clazy-1.3.tar.xz 159860 BLAKE2B 3860a7f0e2e518fda210e7a4c0de7ea21d52ed5f0e280e1f12dedea2b639dde994621e55b55766e65b9575c275e8ca55c8f6556d1223aee0d642fff2814810bc SHA512 71b69fd28e507f44c5ddc5be8e79fa1511398691cbd8aae920c77171720c6e3e2f308db478e604285a2686aaca0026ff0472547eff98d77c0d4f83c72727563e -DIST clazy_v1.2-src.zip 462520 BLAKE2B dbcd5b3be85f23b2bb1a8b130307223f2ccca4b04cd6b291a5ffb07fcbc9cd29c105016a5421c14af2ad41ff4a6e12c207628c34ee183749558e6bec96500b52 SHA512 53f6b0fb8d8f289e19cac591f7a612d1cefcc518cc192c9f7674cf836338d8822c5c266a260ecb34456011cb98603e69c5cffd73a08d0a6aa5d0b10ca96d768d diff --git a/dev-util/clazy/clazy-1.2.ebuild b/dev-util/clazy/clazy-1.2.ebuild deleted file mode 100644 index f477e69978b..00000000000 --- a/dev-util/clazy/clazy-1.2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics" -HOMEPAGE="https://github.com/KDE/clazy/blob/master/README.md" -SRC_URI="mirror://kde/stable/${PN}/${PV}/${PN}_v${PV}-src.zip" - -LICENSE="LGPL-2+" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND=" - >=sys-devel/llvm-3.8:0[clang] -" -DEPEND="${RDEPEND} - app-arch/unzip -" - -DOCS=( README.md ) - -src_prepare() { - default - - sed -e '/install(FILES README.md COPYING-LGPL2.txt DESTINATION/d' \ - -i CMakeLists.txt || die - - sed -e 's|${MAN_INSTALL_DIR}|share/man/man1|' \ - -i docs/man/CMakeLists.txt || die -}