Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xmlsec/
Date: Sun, 19 Aug 2018 04:23:01
Message-Id: 1534632427.b4730cf3075f743ac810b1783e14bc0ca8f12004.alonbl@gentoo
1 commit: b4730cf3075f743ac810b1783e14bc0ca8f12004
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 18 22:47:07 2018 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 18 22:47:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4730cf3
7
8 dev-libs/xmlsec: cleanup old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-libs/xmlsec/Manifest | 1 -
13 dev-libs/xmlsec/xmlsec-1.2.25.ebuild | 65 ------------------------------------
14 2 files changed, 66 deletions(-)
15
16 diff --git a/dev-libs/xmlsec/Manifest b/dev-libs/xmlsec/Manifest
17 index 5bb3a245541..3c8103ad8a7 100644
18 --- a/dev-libs/xmlsec/Manifest
19 +++ b/dev-libs/xmlsec/Manifest
20 @@ -1,2 +1 @@
21 -DIST xmlsec1-1.2.25.tar.gz 1839160 BLAKE2B af480affa84c47c5656889c8114f147e1d9a5ad0f9a494c8913fd180aa5e2cba4773451c4a5f41781026e7617cccf329057182fc3fc3f2bd4e6f007cbe8ac190 SHA512 ac61547a1cbf9016d7f75be3dc5249d6bc8a526bc51715e53ede13f056c1c72c57433a6be200c886000a25826c3e473954ded3ae988f25d37ac4ef4d777c66a6
22 DIST xmlsec1-1.2.26.tar.gz 1922183 BLAKE2B 8cb8557a7d24df756655a7dfa45091445adc89cb67169a7620d9d1116f3fb3d982ea45199a53475e29300478c07e8e1168cec79cf9c3b5ff1dd6c840123b982b SHA512 1e3dc3c8c192eefee7b055787bef52ce3bcfafa786224f68af065aa45f4d7da93232da973359b3135615c5981ad4df7c124047d3934e552ab78439472685a7a4
23
24 diff --git a/dev-libs/xmlsec/xmlsec-1.2.25.ebuild b/dev-libs/xmlsec/xmlsec-1.2.25.ebuild
25 deleted file mode 100644
26 index e4393747d0b..00000000000
27 --- a/dev-libs/xmlsec/xmlsec-1.2.25.ebuild
28 +++ /dev/null
29 @@ -1,65 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools ltprune
36 -
37 -DESCRIPTION="Command line tool for signing, verifying, encrypting and decrypting XML"
38 -HOMEPAGE="https://www.aleksey.com/xmlsec"
39 -SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz"
40 -
41 -LICENSE="MIT"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 ~sparc x86"
44 -IUSE="doc gcrypt gnutls libressl nss +openssl static-libs"
45 -REQUIRED_USE="|| ( gcrypt gnutls nss openssl )
46 - gnutls? ( gcrypt )"
47 -
48 -RDEPEND=">=dev-libs/libxml2-2.7.4
49 - >=dev-libs/libxslt-1.0.20
50 - gcrypt? ( >=dev-libs/libgcrypt-1.4.0:0 )
51 - gnutls? ( >=net-libs/gnutls-2.8.0 )
52 - nss? (
53 - >=dev-libs/nspr-4.4.1
54 - >=dev-libs/nss-3.9
55 - )
56 - openssl? (
57 - !libressl? ( dev-libs/openssl:0= )
58 - libressl? ( dev-libs/libressl:0= )
59 - )"
60 -DEPEND="${RDEPEND}
61 - virtual/pkgconfig"
62 -
63 -S="${WORKDIR}/${PN}1-${PV}"
64 -
65 -src_prepare() {
66 - default
67 - # conditionally install extra documentation
68 - if ! use doc ; then
69 - sed -i '/^SUBDIRS/s/docs//' Makefile.am || die
70 - eautoreconf
71 - fi
72 -}
73 -
74 -src_configure() {
75 - econf \
76 - --enable-pkgconfig \
77 - --with-html-dir=/usr/share/doc/${PF}/html \
78 - $(use_enable static-libs static) \
79 - $(use_with gcrypt gcrypt "") \
80 - $(use_with gnutls gnutls "") \
81 - $(use_with nss nspr "") \
82 - $(use_with nss nss "") \
83 - $(use_with openssl openssl "") \
84 - $(use_enable openssl aes)
85 -}
86 -
87 -src_test() {
88 - emake TMPFOLDER="${T}" check
89 -}
90 -
91 -src_install() {
92 - default
93 - prune_libtool_files --all
94 -}