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 CF90B1396D0 for ; Sun, 8 Oct 2017 19:45:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14EF82BC1BB; Sun, 8 Oct 2017 19:45:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EB9CF2BC1BB for ; Sun, 8 Oct 2017 19:45:36 +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 C71FA33BEF4 for ; Sun, 8 Oct 2017 19:45:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87C33909D for ; Sun, 8 Oct 2017 19:45:34 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1507491920.ffe6d5783e93cb4b95c21528112c12c2c8c05a54.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pdfcrack/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/pdfcrack/Manifest app-crypt/pdfcrack/pdfcrack-0.16.ebuild X-VCS-Directories: app-crypt/pdfcrack/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: ffe6d5783e93cb4b95c21528112c12c2c8c05a54 X-VCS-Branch: master Date: Sun, 8 Oct 2017 19:45:34 +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: fd15ebe2-0e30-49ad-a1d6-bb6d3d88694e X-Archives-Hash: ca799b09beb151d83bd2c0301a6a1c57 commit: ffe6d5783e93cb4b95c21528112c12c2c8c05a54 Author: Tim Harder gentoo org> AuthorDate: Sun Oct 8 19:43:44 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun Oct 8 19:45:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffe6d578 app-crypt/pdfcrack: version bump to 0.16 app-crypt/pdfcrack/Manifest | 1 + app-crypt/pdfcrack/pdfcrack-0.16.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-crypt/pdfcrack/Manifest b/app-crypt/pdfcrack/Manifest index 9464aea2491..c570ba91c28 100644 --- a/app-crypt/pdfcrack/Manifest +++ b/app-crypt/pdfcrack/Manifest @@ -1 +1,2 @@ DIST pdfcrack-0.15.tar.gz 34269 SHA256 791043693f9fc261fa326dbcb5e4de3801d6ae552dbea39293f9b2674c250d3e SHA512 9eef648fcb8c9cd4fb70af3ad4ce1b8da892edc98919104bbee70947d7f93262f44cb6e8854ff10b0e4680fcf0c3abfc258d0d14428d261744ed4b28c792a966 WHIRLPOOL 69ed8f15a1ed80843a1bfb4108a35464d237d803d24630b047df7a18a027d5d73fe48c52dbfa71174de520701b015abbb550873a724473291a50d226d19cbc6e +DIST pdfcrack-0.16.tar.gz 34467 SHA256 7865b203074ccfd5c612c8ce00c46ffcb4fabaa26154ce9304dfc668c7cb73ef SHA512 460113f28249d1ea1cefc6dac8ff22b33849ccff50f61830144e41eeec47c4b9113845bb955d26757adb0552d8c0dfa43b3f5666c1419afe4063037a1e1c933d WHIRLPOOL 4ac66029156d59265de2639ab8ffc63bfa66353c6c1efeabe7f1c6213db3e73e243fe5d4b612a6f7d94704b225452aef61d41235cd67bb3e1f8fd0fca45192b0 diff --git a/app-crypt/pdfcrack/pdfcrack-0.16.ebuild b/app-crypt/pdfcrack/pdfcrack-0.16.ebuild new file mode 100644 index 00000000000..206b6b4510d --- /dev/null +++ b/app-crypt/pdfcrack/pdfcrack-0.16.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Tool for recovering passwords and content from PDF-files" +HOMEPAGE="http://pdfcrack.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +PATCHES=( + "${FILESDIR}/${PN}-0.14-cflags.patch" +) + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin pdfcrack + dodoc changelog README +}