Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Lab-Measurement/
Date: Sun, 07 Nov 2021 00:13:23
Message-Id: 1636243987.31120bfbb530aacab2cee33e0be909d7a83ce84f.dilfridge@gentoo
1 commit: 31120bfbb530aacab2cee33e0be909d7a83ce84f
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 7 00:11:20 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 7 00:13:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31120bfb
7
8 dev-perl/Lab-Measurement: Remove old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 .../Lab-Measurement/Lab-Measurement-3.762.ebuild | 149 ---------------------
14 dev-perl/Lab-Measurement/Manifest | 1 -
15 2 files changed, 150 deletions(-)
16
17 diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-3.762.ebuild b/dev-perl/Lab-Measurement/Lab-Measurement-3.762.ebuild
18 deleted file mode 100644
19 index 14291646028..00000000000
20 --- a/dev-perl/Lab-Measurement/Lab-Measurement-3.762.ebuild
21 +++ /dev/null
22 @@ -1,149 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -DIST_EXAMPLES=( "examples/*" )
29 -
30 -if [[ "${PV}" != "9999" ]]; then
31 - DIST_VERSION=${PV%.0}
32 - DIST_AUTHOR="AKHUETTEL"
33 - KEYWORDS="amd64 ~x86"
34 - inherit perl-module
35 -else
36 - EGIT_REPO_URI="https://github.com/lab-measurement/Lab-Measurement.git"
37 - EGIT_BRANCH="master"
38 - EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}-git"
39 - inherit perl-module git-r3
40 -fi
41 -
42 -DESCRIPTION="Measurement control and automation with Perl"
43 -HOMEPAGE="https://www.labmeasurement.de"
44 -
45 -SLOT="0"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -DZIL_PLUGINS=( Git PodWeaver AuthorsFromGit RPM )
50 -
51 -RDEPEND="
52 - virtual/perl-Carp
53 - dev-perl/Class-ISA
54 - >=dev-perl/Class-Method-Modifiers-2.110.0
55 - >=dev-perl/Clone-0.310.0
56 - virtual/perl-Data-Dumper
57 - virtual/perl-Encode
58 - >=dev-perl/Exception-Class-1.0.0
59 - virtual/perl-Exporter
60 - virtual/perl-File-Path
61 - virtual/perl-File-Spec
62 - virtual/perl-Getopt-Long
63 - dev-perl/Hook-LexWrap
64 - virtual/perl-IO
65 - >=dev-perl/IO-Socket-Timeout-0.320.0
66 - dev-perl/List-MoreUtils
67 - virtual/perl-Scalar-List-Utils
68 - virtual/perl-Math-Complex
69 - dev-perl/Math-Round
70 - >=virtual/perl-Module-Load-0.260.0
71 - >=dev-perl/Moose-2.121.300
72 - >=dev-perl/MooseX-Params-Validate-0.180.0
73 - dev-perl/MooseX-StrictConstructor
74 - >=dev-perl/PDL-2.7.0
75 - dev-perl/PDL-Graphics-Gnuplot
76 - >=dev-perl/Role-Tiny-1.3.4
77 - virtual/perl-Socket
78 - dev-perl/Statistics-Descriptive
79 - virtual/perl-Storable
80 - >=dev-perl/TermReadKey-2.300.0
81 - virtual/perl-Thread-Semaphore
82 - virtual/perl-Time-HiRes
83 - dev-perl/Time-Monotonic
84 - virtual/perl-Time-Piece
85 - >=dev-perl/Try-Tiny-0.220.0
86 - >=dev-perl/YAML-LibYAML-0.410.0
87 - virtual/perl-autodie
88 - >=dev-perl/namespace-autoclean-0.200.0
89 - virtual/perl-parent
90 - sci-visualization/gnuplot
91 - dev-perl/Lab-VXI11
92 - dev-perl/USB-TMC
93 -"
94 -DEPEND="
95 - ${RDEPEND}
96 - virtual/perl-ExtUtils-MakeMaker
97 - test? (
98 - dev-perl/File-Slurper
99 - virtual/perl-File-Temp
100 - dev-perl/Test-Fatal
101 - dev-perl/Test-File
102 - virtual/perl-Test-Simple
103 - dev-perl/Text-Diff
104 - dev-perl/aliased
105 - )
106 -"
107 -if [[ "${PV}" == "9999" ]]; then
108 - DEPEND="${DEPEND}
109 - dev-perl/Dist-Zilla"
110 - for dzp in "${DZIL_PLUGINS[@]}" ; do
111 - DEPEND="${DEPEND}
112 - dev-perl/Dist-Zilla-Plugin-${dzp}"
113 - done
114 -fi
115 -
116 -src_unpack() {
117 - if [[ "${PV}" == "9999" ]]; then
118 - git-r3_src_unpack
119 - mkdir -p "${S}" || die "Can't make ${S}"
120 - else
121 - default
122 - fi
123 -}
124 -
125 -dzil_to_distdir() {
126 - local dzil_root dest has_missing modname dzil_version
127 - dzil_root="$1"
128 - dest="$2"
129 -
130 - cd "${dzil_root}" || die "Can't enter git workdir '${dzil_root}'";
131 -
132 - dzil_version="$(dzil version)" || die "Error invoking 'dzil version'"
133 - einfo "Generating CPAN dist with ${dzil_version}"
134 -
135 - has_missing=""
136 -
137 - einfo "Checking dzil authordeps"
138 - while IFS= read -d $'\n' -r modname; do
139 - if [[ -z "${has_missing}" ]]; then
140 - has_missing=1
141 - eerror "'dzil authordeps' indicates missing build dependencies"
142 - eerror "These will prevent building, please report a bug"
143 - eerror "Missing:"
144 - fi
145 - eerror " ${modname}"
146 - done < <( dzil authordeps --missing --versions )
147 -
148 - [[ -z "${has_missing}" ]] || die "Satisfy all missing authordeps first"
149 -
150 - einfo "Checking dzil build deps"
151 - while IFS= read -d $'\n' -r modname; do
152 - if [[ -z "${has_missing}" ]]; then
153 - has_missing=1
154 - ewarn "'dzil listdeps' indicates missing build dependencies"
155 - ewarn "These may prevent building, please report a bug if they do"
156 - ewarn "Missing:"
157 - fi
158 - ewarn " ${modname}"
159 - done < <( dzil listdeps --missing --versions --author )
160 -
161 - einfo "Generating release"
162 - dzil build --notgz --in "${dest}" || die "Unable to build CPAN dist in '${dest}'"
163 -}
164 -
165 -src_prepare() {
166 - if [[ ${PV} == 9999 ]]; then
167 - dzil_to_distdir "${EGIT_CHECKOUT_DIR}" "${S}"
168 - fi
169 - cd "${S}" || die "Can't enter build dir"
170 - perl-module_src_prepare
171 -}
172
173 diff --git a/dev-perl/Lab-Measurement/Manifest b/dev-perl/Lab-Measurement/Manifest
174 index c7411c1ab54..49f3f0076f0 100644
175 --- a/dev-perl/Lab-Measurement/Manifest
176 +++ b/dev-perl/Lab-Measurement/Manifest
177 @@ -1,3 +1,2 @@
178 -DIST Lab-Measurement-3.762.tar.gz 651690 BLAKE2B 9cced9cb51c45149db353a46ad2c253da5c9d1d2ec82889b9221b010a5fae3fffa54afe65f2f08b66238d1970b842ec913d8464c988938fee55b47423298467d SHA512 df9ee0f9535fbff44be18b61978c6b2735acbbeee510715d6b34812576053022a24be52ec04d1dba04edcd79fa6eaa13706e173dc2b3b4c0352fa7bdccb5d96e
179 DIST Lab-Measurement-3.780.tar.gz 641884 BLAKE2B b0d5117eeb022a7d58ffe975ba943a29689436911210eba63385df7e4536f850b5cc3a021e26ca60c9fc9cf19f359e2a648927ec5fc68ab2dea3a66fc1ac903c SHA512 260d670e7f67448c49fb82900fc0605978c6fcd39a6813c091a84977972f0965e25f14dd3568860cfe136f4628047e0720ea69710693513c5e567eeac10ddf97
180 DIST Lab-Measurement-3.791.tar.gz 662036 BLAKE2B f133d2590c91ef62a8c8234aa77e2c3eed2a43236d260e13d49a27fe89082be505f7aa9be79e1fbcd5c9d9c96068b1db50ad0a1377f84124bb47702c8801ba3c SHA512 c07fddf0b1c728fcb2aa17ada14edff32dcc3cb8fe7e23e9f770251562aef6c09343900e0104d8ef971b5366fdda27c212500993616be3b92422e0cba88873bb