Gentoo Archives: gentoo-commits

From: John Helmert III <ajak@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/hivex/
Date: Mon, 12 Jul 2021 19:29:58
Message-Id: 1626118146.6fb37672ae1310f4a3721b46e8e838ea2917f5b0.ajak@gentoo
1 commit: 6fb37672ae1310f4a3721b46e8e838ea2917f5b0
2 Author: John Helmert III <ajak <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 12 19:28:54 2021 +0000
4 Commit: John Helmert III <ajak <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 12 19:29:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb37672
7
8 app-misc/hivex: drop 1.3.18
9
10 Bug: https://bugs.gentoo.org/784584
11 Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
12
13 app-misc/hivex/Manifest | 1 -
14 app-misc/hivex/hivex-1.3.18.ebuild | 113 -------------------------------------
15 2 files changed, 114 deletions(-)
16
17 diff --git a/app-misc/hivex/Manifest b/app-misc/hivex/Manifest
18 index 295aa26efec..167ecfc7502 100644
19 --- a/app-misc/hivex/Manifest
20 +++ b/app-misc/hivex/Manifest
21 @@ -1,2 +1 @@
22 -DIST hivex-1.3.18.tar.gz 1542133 BLAKE2B 961d0797770a2bd3176ce288a509fab8685de91317d55f05e5295f9f56fd54c31acb64847e0cbb6a6074627ccbdfdf35bd0d35150beb7746a8b3de9128ac24e3 SHA512 1851351118921e81df9e505f90d00048a178572c2edd3de40194a69915176bdb615e2eb5afea408d57063e98257c8d1e3d0cd6730407153892cc9e3befc4aa3a
23 DIST hivex-1.3.20.tar.gz 1727498 BLAKE2B db6448242fc4b72d75cc7234a49e146cb165b1b9b9e2e72fb2a05be37cbb1d8ca865ccc51c4d2d50199e69cae2d870743ecd41534290e9a100bb268c2437ee22 SHA512 366e84c2a13ff53c70036df60db6e2b469cd06e3405761df73c47978b4fa0245246a1ea912aa5852b1272221d55c6c100b40b00e4c9a6f5668d12ff7f93c787a
24
25 diff --git a/app-misc/hivex/hivex-1.3.18.ebuild b/app-misc/hivex/hivex-1.3.18.ebuild
26 deleted file mode 100644
27 index 8d2e2ccca06..00000000000
28 --- a/app-misc/hivex/hivex-1.3.18.ebuild
29 +++ /dev/null
30 @@ -1,113 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -USE_RUBY="ruby24 ruby25 ruby26"
37 -RUBY_OPTIONAL=yes
38 -
39 -PYTHON_COMPAT=( python3_{7,8,9} )
40 -
41 -inherit perl-module ruby-ng python-single-r1 strip-linguas
42 -
43 -DESCRIPTION="Library for reading and writing Windows Registry 'hive' binary files"
44 -HOMEPAGE="https://libguestfs.org"
45 -SRC_URI="https://libguestfs.org/download/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="LGPL-2.1"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~x86"
50 -IUSE="ocaml readline +perl python test ruby"
51 -
52 -RDEPEND="
53 - dev-libs/libxml2:2
54 - virtual/libiconv
55 - virtual/libintl
56 - ocaml? ( dev-lang/ocaml[ocamlopt]
57 - dev-ml/findlib[ocamlopt]
58 - )
59 - perl? (
60 - dev-lang/perl:=
61 - dev-perl/IO-stringy
62 - )
63 - python? ( ${PYTHON_DEPS} )
64 - readline? ( sys-libs/readline:0 )
65 - ruby? ( $(ruby_implementations_depend) )
66 - "
67 -
68 -DEPEND="${RDEPEND}
69 - perl? (
70 - test? (
71 - dev-perl/Pod-Coverage
72 - dev-perl/Test-Pod-Coverage
73 - )
74 - )"
75 -
76 -ruby_add_bdepend "ruby? ( dev-ruby/rake
77 - virtual/rubygems
78 - dev-ruby/rdoc )"
79 -ruby_add_rdepend "ruby? ( virtual/rubygems )"
80 -
81 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
82 - ruby? ( || ( $(ruby_get_use_targets) ) )"
83 -
84 -DOCS=( README )
85 -
86 -S="${WORKDIR}/${P}"
87 -
88 -pkg_setup() {
89 - if use python; then
90 - python-single-r1_pkg_setup
91 - fi
92 -}
93 -
94 -src_unpack() {
95 - default
96 - cp -prlP "${WORKDIR}/${P}" "${WORKDIR}"/all || die
97 -}
98 -
99 -src_configure() {
100 - use ruby && ruby-ng_src_configure
101 -
102 - if use perl; then
103 - pushd perl
104 - perl-module_src_configure
105 - popd
106 - fi
107 -
108 - local myeconfargs=(
109 - $(use_with readline)
110 - $(use_enable ocaml)
111 - $(use_enable perl)
112 - --enable-nls
113 - --disable-ruby
114 - $(use_enable python)
115 - --disable-rpath
116 - --disable-static
117 - )
118 -
119 - econf ${myeconfargs[@]}
120 -}
121 -
122 -src_compile() {
123 - default
124 -
125 - use ruby && ruby-ng_src_compile
126 -}
127 -
128 -src_install() {
129 - strip-linguas -i po
130 -
131 - emake install DESTDIR="${ED}" "LINGUAS=""${LINGUAS}"""
132 - if use python; then
133 - python_optimize
134 - fi
135 -
136 - use ruby && ruby-ng_src_install
137 -
138 - if use perl; then
139 - perl_delete_localpod
140 - fi
141 -
142 - find "${ED}" -name '*.la' -delete || die
143 -}