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 414E61382C5 for ; Mon, 2 Apr 2018 07:52:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61678E0C89; Mon, 2 Apr 2018 07:52:04 +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 3B91AE0C89 for ; Mon, 2 Apr 2018 07:52:04 +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 A403833BDE5 for ; Mon, 2 Apr 2018 07:52:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74761263 for ; Mon, 2 Apr 2018 07:51:59 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1522655500.92e83934bf4fc9c3c70ea9af6c5857d18e3a13ef.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/jthread/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/jthread/Manifest dev-libs/jthread/jthread-1.3.1.ebuild X-VCS-Directories: dev-libs/jthread/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 92e83934bf4fc9c3c70ea9af6c5857d18e3a13ef X-VCS-Branch: master Date: Mon, 2 Apr 2018 07:51:59 +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: 235f5ffe-d857-469d-a4f7-c8e43f4fd33a X-Archives-Hash: cfe5e50a25712bc767260681c61ced98 commit: 92e83934bf4fc9c3c70ea9af6c5857d18e3a13ef Author: Sergey Popov gentoo org> AuthorDate: Mon Apr 2 07:51:40 2018 +0000 Commit: Sergey Popov gentoo org> CommitDate: Mon Apr 2 07:51:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e83934 dev-libs/jthread: drop old version Closes: https://bugs.gentoo.org/651004 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-libs/jthread/Manifest | 1 - dev-libs/jthread/jthread-1.3.1.ebuild | 24 ------------------------ 2 files changed, 25 deletions(-) diff --git a/dev-libs/jthread/Manifest b/dev-libs/jthread/Manifest index d1e8cf75c1f..d5cf5a5d52d 100644 --- a/dev-libs/jthread/Manifest +++ b/dev-libs/jthread/Manifest @@ -1,2 +1 @@ -DIST jthread-1.3.1.tar.bz2 8130 BLAKE2B 38929704e2d8308e3c9094d7627ef0f807af26f647aa0269bc726dfa42f541b6cf4cd21596687071e975e6e13b447b39a2c78a4c9b42131a991fc36183fa3bd5 SHA512 ea369ed8028266d67d2a7aeadbc6dd4859191f563dc2f328ad3622af3cc010e366c446a9d325fd689dd35473e6547e552dd0715a4ab308207f46260382f1603f DIST jthread-1.3.3.tar.bz2 8514 BLAKE2B ba24fb73f5b02e64af81f889401cc81acaf8c6d60fcfa0316b92e9356b36f8ec65a9cbf0fb999867ef2b590fe15a46136f165739279b14805d26dce8d55b1b0e SHA512 87c57db51014cd1af87cb4a7f6ac1ccfdff699cf72ff91ecbdb30702c844aad360768261d7bf6391b96639cc17f2fae29f3f3506a333b4ce6ed8a9ba64239e6f diff --git a/dev-libs/jthread/jthread-1.3.1.ebuild b/dev-libs/jthread/jthread-1.3.1.ebuild deleted file mode 100644 index c958d0b306c..00000000000 --- a/dev-libs/jthread/jthread-1.3.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="JThread provides some classes to make use of threads easy on different platforms" -HOMEPAGE="http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jthread" -SRC_URI="http://research.edm.uhasselt.be/jori/${PN}/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="static-libs" - -DOCS=( ChangeLog README.TXT TODO doc/manual.tex ) - -src_prepare() { - # do not build static library, if it is not requested - if ! use static-libs; then - sed -i -e '/jthread-static/d' src/CMakeLists.txt || die 'sed on src/CMakeLists.txt failed' - fi -}