Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/hivex/
Date: Tue, 01 May 2018 11:46:14
Message-Id: 1525175149.f4ce9f594688a949efc254b9d3ec13c64bcaa629.mgorny@gentoo
1 commit: f4ce9f594688a949efc254b9d3ec13c64bcaa629
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 1 11:45:06 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 1 11:45:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4ce9f59
7
8 app-misc/hivex: Remove 1.3.11-r1 due to broken dep syntax
9
10 Remove the old version since it uses empty dep groups which causes
11 repoman errors:
12
13 dependency.syntax [fatal] 4
14 app-misc/hivex/hivex-1.3.11-r1.ebuild: DEPEND: expected: dependency string, got: ')', token 18
15 app-misc/hivex/hivex-1.3.11-r1.ebuild: RDEPEND: expected: dependency string, got: ')', token 18
16 app-misc/hivex/hivex-1.3.11-r1.ebuild: DEPEND: expected: dependency string, got: ')', token 18
17 app-misc/hivex/hivex-1.3.11-r1.ebuild: RDEPEND: expected: dependency string, got: ')', token 18
18
19 and causes pkgcheck to crash, causing major mayhem everywhere.
20
21 app-misc/hivex/Manifest | 1 -
22 app-misc/hivex/hivex-1.3.11-r1.ebuild | 116 ----------------------------------
23 2 files changed, 117 deletions(-)
24
25 diff --git a/app-misc/hivex/Manifest b/app-misc/hivex/Manifest
26 index 7d62b6cdcd6..a3290cd9d4d 100644
27 --- a/app-misc/hivex/Manifest
28 +++ b/app-misc/hivex/Manifest
29 @@ -1,2 +1 @@
30 -DIST hivex-1.3.11.tar.gz 1264487 BLAKE2B ba2f72d174ed1b807ef97bc3a5cdec10219b01c1719a0a9dd262ce4a8474a808c73d2f14e9d3347ed44485b08b77bb3638212a24159b5aa153189848e755e5e4 SHA512 1ff9fbcfb976fea5bba41c5ff06e4dc68af0e507accc236ca0406644ee2c865619b3b3bf9550124778fcd782ddc257f1d89861b45f48c0c3ceed18dfa1e02ced
31 DIST hivex-1.3.14.tar.gz 1332257 BLAKE2B fe7c19e05d29c7e98a334842cc1144aa76b148a3b7aae91449a4923a124eb54227a9a004346ef3558732c688c4f92cacd0c9328056930c33dba0404465634da0 SHA512 dd7dd52dceda580179a815fc48a2a2c7e8f7234614beceb937fba7e317df17984e65453338160c4c467b70d7d4f9bd61b48aad3ca51e19bd5e4cfbca8ee3adb6
32
33 diff --git a/app-misc/hivex/hivex-1.3.11-r1.ebuild b/app-misc/hivex/hivex-1.3.11-r1.ebuild
34 deleted file mode 100644
35 index 89044477d97..00000000000
36 --- a/app-misc/hivex/hivex-1.3.11-r1.ebuild
37 +++ /dev/null
38 @@ -1,116 +0,0 @@
39 -# Copyright 1999-2017 Gentoo Foundation
40 -# Distributed under the terms of the GNU General Public License v2
41 -
42 -EAPI=5
43 -
44 -AUTOTOOLS_IN_SOURCE_BUILD=1
45 -
46 -USE_RUBY="ruby21 ruby22"
47 -RUBY_OPTIONAL=yes
48 -
49 -PYTHON_COMPAT=(python2_7 python3_{4,5,6})
50 -
51 -inherit autotools-utils eutils perl-app ruby-ng python-single-r1
52 -
53 -DESCRIPTION="Library for reading and writing Windows Registry 'hive' binary files"
54 -HOMEPAGE="http://libguestfs.org"
55 -SRC_URI="http://libguestfs.org/download/${PN}/${P}.tar.gz"
56 -
57 -LICENSE="LGPL-2.1"
58 -SLOT="0"
59 -KEYWORDS="amd64 x86"
60 -IUSE="ocaml readline +perl python test static-libs ruby"
61 -
62 -RDEPEND="
63 - virtual/libiconv
64 - virtual/libintl
65 - dev-libs/libxml2:2
66 - ocaml? ( dev-lang/ocaml[ocamlopt]
67 - dev-ml/findlib[ocamlopt]
68 - )
69 - readline? ( sys-libs/readline:0 )
70 - perl? ( dev-perl/IO-stringy )
71 - ruby? ( $(ruby_implementations_depend) )
72 - python? ( ${PYTHON_DEPS} )
73 - "
74 -
75 -DEPEND="${RDEPEND}
76 - dev-lang/perl
77 - perl? (
78 - test? ( dev-perl/Pod-Coverage
79 - dev-perl/Test-Pod-Coverage )
80 - )
81 - "
82 -
83 -ruby_add_bdepend "ruby? ( dev-ruby/rake
84 - virtual/rubygems
85 - dev-ruby/rdoc )"
86 -ruby_add_rdepend "ruby? ( virtual/rubygems )"
87 -
88 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
89 -
90 -DOCS=( README )
91 -S="${WORKDIR}/${P}"
92 -
93 -#We are aware of rather poor quality of this ebuild, but the bump is required to fix security bug. We will fix other matters later.
94 -
95 -pkg_setup() {
96 - if use python; then
97 - python-single-r1_pkg_setup
98 - fi
99 - if use perl; then
100 - perl_set_version
101 - fi
102 -}
103 -
104 -src_unpack() {
105 - default
106 -}
107 -
108 -src_prepare() {
109 - epatch_user
110 -}
111 -
112 -src_configure() {
113 - local myeconfargs=(
114 - $(use_with readline)
115 - $(use_enable ocaml)
116 - $(use_enable perl)
117 - --enable-nls
118 - $(use_enable python)
119 - $(use_enable ruby)
120 - --disable-rpath )
121 -
122 - autotools-utils_src_configure
123 -
124 - if use perl; then
125 - pushd perl
126 - perl-app_src_configure
127 - popd
128 - fi
129 -}
130 -
131 -src_compile() {
132 - autotools-utils_src_compile
133 -}
134 -
135 -# Test binding's dont't wok properly in gentoo layout
136 -#src_test() {
137 -# if use perl;then
138 -# pushd perl
139 -# perl-app_src_install
140 -# popd
141 -# fi
142 -#
143 -# autotools-utils_src_compile check
144 -#}
145 -
146 -src_install() {
147 - strip-linguas -i po
148 -
149 - autotools-utils_src_install "LINGUAS=""${LINGUAS}"""
150 -
151 - if use perl; then
152 - perl_delete_localpod
153 - fi
154 -}