Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/osslsigncode/
Date: Sun, 02 Dec 2018 08:17:32
Message-Id: 1543738620.ecdcfeb6d314f1deef5afc60eb5379e7f25c36b2.hanno@gentoo
1 commit: ecdcfeb6d314f1deef5afc60eb5379e7f25c36b2
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 2 08:17:00 2018 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 2 08:17:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecdcfeb6
7
8 app-crypt/osslsigncode: Version bump
9
10 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12
13 app-crypt/osslsigncode/Manifest | 1 +
14 app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/app-crypt/osslsigncode/Manifest b/app-crypt/osslsigncode/Manifest
18 index e0f38f1ced9..f2682eea0a8 100644
19 --- a/app-crypt/osslsigncode/Manifest
20 +++ b/app-crypt/osslsigncode/Manifest
21 @@ -1 +1,2 @@
22 DIST osslsigncode-1.4.tar.gz 96512 BLAKE2B 8325153d16b7ad5d0701daf3d5d446bef498aaf45b88a78d5472d86c0899a73bff2350c224f9f3e35475d5dd72792fe24328f4710d25984ae23c5f83c6fef967 SHA512 89f82b5cbab5952b7bb0b1a3ea230db0c38d171924e5150e9cd157158e52d312cc10093ac719265d03a097f995bd3a438fe874c50263659859c625482ef0239f
23 +DIST osslsigncode-1.7.1.tar.gz 127631 BLAKE2B f0ced06a33968f03558e189fc9ed2340dba2cdfe823422c760d62476446646f198aed1a95f99734f80e7ec71d23cd286a23e68953f7e432a9a6ff048c76cae63 SHA512 cc5a7e0c5baa2a98db93f1d2cc9d86e732e2a8a55fc20bf8e6aa67e2120af37c6be857dfe4b8eb8c82fd40604dbb3c845190b59c7e6b4147f06b710a256b877f
24
25 diff --git a/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild b/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild
26 new file mode 100644
27 index 00000000000..4ea247315fc
28 --- /dev/null
29 +++ b/app-crypt/osslsigncode/osslsigncode-1.7.1.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +DESCRIPTION="Platform-independent tool for Authenticode signing of EXE/CAB files"
37 +HOMEPAGE="https://sourceforge.net/projects/osslsigncode"
38 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="curl libressl"
44 +
45 +RDEPEND="
46 + !libressl? ( dev-libs/openssl:0= )
47 + libressl? ( dev-libs/libressl:0= )
48 + curl? ( net-misc/curl )"
49 +DEPEND="${RDEPEND}
50 + virtual/pkgconfig"
51 +
52 +src_configure() {
53 + econf $(use_with curl)
54 +}