1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
|
%global _empty_manifest_terminate_build 0
Name: python-EMD-signal
Version: 1.4.0
Release: 1
Summary: Implementation of the Empirical Mode Decomposition (EMD) and its variations
License: Apache-2.0
URL: https://github.com/laszukdawid/PyEMD
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/26/1d/69f23b15c0ba6702dd417a694c485b5533258fdefca0bd3e8953cf3b7a0b/EMD-signal-1.4.0.tar.gz
BuildArch: noarch
Requires: python3-numpy
Requires: python3-scipy
Requires: python3-pathos
Requires: python3-tqdm
Requires: python3-pycodestyle
Requires: python3-black
Requires: python3-isort
Requires: python3-click
Requires: python3-sphinx
Requires: python3-sphinx-rtd-theme
Requires: python3-numpydoc
Requires: python3-numba
Requires: python3-pytest
Requires: python3-codecov
%description
[](https://codecov.io/gh/laszukdawid/PyEMD)
[](https://app.travis-ci.com/laszukdawid/PyEMD)
[](https://pyemd.readthedocs.io/)
[](https://www.codacy.com/gh/laszukdawid/PyEMD/dashboard?utm_source=github.com&utm_medium=referral&utm_content=laszukdawid/PyEMD&utm_campaign=Badge_Grade)
[](https://zenodo.org/badge/latestdoi/65324353)
# PyEMD
## Links
- Online documentation: <https://pyemd.readthedocs.org>
- Issue tracker: <https://github.com/laszukdawid/pyemd/issues>
- Source code repository: <https://github.com/laszukdawid/pyemd>
## Introduction
This is yet another Python implementation of Empirical Mode
Decomposition (EMD). The package contains multiple EMD variations and
intends to deliver more in time.
### EMD variations
- Ensemble EMD (EEMD),
- "Complete Ensemble EMD" (CEEMDAN)
- different settings and configurations of vanilla EMD.
- Image decomposition (EMD2D & BEMD) (experimental, no support)
- Just-in-time compiled EMD (JitEMD)
*PyEMD* allows you to use different splines for envelopes, stopping criteria
and extrema interpolations.
### Available splines
- Natural cubic (**default**)
- Pointwise cubic
- Akima
- Linear
### Available stopping criteria
- Cauchy convergence (**default**)
- Fixed number of iterations
- Number of consecutive proto-imfs
### Extrema detection
- Discrete extrema (**default**)
- Parabolic interpolation
## Installation
### PyPi (recommended)
The quickest way to install package is through `pip`.
> \$ pip install EMD-signal
### From source
In case, if you only want to *use* EMD and its variations, the best way to install PyEMD is through `pip`.
However, if you want to modify the code, anyhow you might want to download the code and build package yourself.
The source is publicaly available and hosted on [GitHub](https://github.com/laszukdawid/PyEMD).
To download the code you can either go to the source code page and click `Code -> Download ZIP`, or use **git** command line
> \$ git clone <https://github.com/laszukdawid/PyEMD>
Installing package from source is done using command line:
> \$ python setup.py install
**Note**, however, that this will install it in your current environment. If you are working on many projects, or sharing reources with others, we suggest using [virtual environments](https://docs.python.org/3/library/venv.html).
## Example
More detailed examples are included in the
[documentation](https://pyemd.readthedocs.io/en/latest/examples.html) or
in the
[PyEMD/examples](https://github.com/laszukdawid/PyEMD/tree/master/example).
### EMD
In most cases default settings are enough. Simply import `EMD` and pass
your signal to instance or to `emd()` method.
```python
from PyEMD import EMD
import numpy as np
s = np.random.random(100)
emd = EMD()
IMFs = emd(s)
```
The Figure below was produced with input:
$S(t) = cos(22 \pi t^2) + 6t^2$

### EEMD
Simplest case of using Ensemble EMD (EEMD) is by importing `EEMD` and
passing your signal to the instance or `eemd()` method.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import EEMD
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
eemd = EEMD()
eIMFs = eemd(s)
```
### CEEMDAN
As with previous methods, also there is a simple way to use `CEEMDAN`.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import CEEMDAN
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
ceemdan = CEEMDAN()
cIMFs = ceemdan(s)
```
### Visualisation
The package contains a simple visualisation helper that can help, e.g., with time series and instantaneous frequencies.
```python
import numpy as np
from PyEMD import EMD, Visualisation
t = np.arange(0, 3, 0.01)
S = np.sin(13*t + 0.2*t**1.4) - np.cos(3*t)
# Extract imfs and residue
# In case of EMD
emd = EMD()
emd.emd(S)
imfs, res = emd.get_imfs_and_residue()
# In general:
#components = EEMD()(S)
#imfs, res = components[:-1], components[-1]
vis = Visualisation()
vis.plot_imfs(imfs=imfs, residue=res, t=t, include_residue=True)
vis.plot_instant_freq(t, imfs=imfs)
vis.show()
```
## Experimental
### JitEMD
Just-in-time (JIT) compiled EMD is a version of EMD which exceed on very large signals
or reusing the same instance multiple times. It's strongly sugested to be used in
Jupyter notebooks when experimenting by modifyig input rather than the method itself.
The problem with JIT is that the compilation happens on the first execution and it can be
quite costly. With small signals, or performing decomposition just once, the extra time
for compilation will be significantly larger than the decomposition, making it less performant.
Please see documentation for more information or [examples](./example/) for how to use the code.
This is experimental as it's value is still questionable, and the author (me) isn't proficient
in JIT optimization so mistakes could've been made.
Any feedback is welcomed. Happy to improve if there's intrest. Please open tickets with questions
and suggestions.
To enable JIT in your PyEMD, please install with `jit` option, i.e.
> \$ pip install EMD-signal[jit]
### EMD2D/BEMD
*Unfortunately, this is Experimental and we can't guarantee that the output is meaningful.*
The simplest use is to pass image as monochromatic numpy 2D array. Sample as
with the other modules one can use the default setting of an instance or, more explicitly,
use the `emd2d()` method.
```python
from PyEMD.EMD2d import EMD2D #, BEMD
import numpy as np
x, y = np.arange(128), np.arange(128).reshape((-1,1))
img = np.sin(0.1*x)*np.cos(0.2*y)
emd2d = EMD2D() # BEMD() also works
IMFs_2D = emd2d(img)
```
## F.A.Q
### Why is EEMD/CEEMDAN so slow?
Unfortunately, that's their nature. They execute EMD multiple times every time with slightly modified version. Added noise can cause a creation of many extrema which will decrease performance of the natural cubic spline. For some tweaks on how to deal with that please see [Speedup tricks](https://pyemd.readthedocs.io/en/latest/speedup.html) in the documentation.
## Contact
Feel free to contact me with any questions, requests or simply to say *hi*.
It's always nice to know that I've helped someone or made their work easier.
Contributing to the project is also acceptable and warmly welcomed.
### Citation
If you found this package useful and would like to cite it in your work
please use the following structure:
```latex
@misc{pyemd,
author = {Laszuk, Dawid},
title = {Python implementation of Empirical Mode Decomposition algorithm},
year = {2017},
publisher = {GitHub},
journal = {GitHub Repository},
howpublished = {\url{https://github.com/laszukdawid/PyEMD}},
doi = {10.5281/zenodo.5459184}
}
```
%package -n python3-EMD-signal
Summary: Implementation of the Empirical Mode Decomposition (EMD) and its variations
Provides: python-EMD-signal
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-EMD-signal
[](https://codecov.io/gh/laszukdawid/PyEMD)
[](https://app.travis-ci.com/laszukdawid/PyEMD)
[](https://pyemd.readthedocs.io/)
[](https://www.codacy.com/gh/laszukdawid/PyEMD/dashboard?utm_source=github.com&utm_medium=referral&utm_content=laszukdawid/PyEMD&utm_campaign=Badge_Grade)
[](https://zenodo.org/badge/latestdoi/65324353)
# PyEMD
## Links
- Online documentation: <https://pyemd.readthedocs.org>
- Issue tracker: <https://github.com/laszukdawid/pyemd/issues>
- Source code repository: <https://github.com/laszukdawid/pyemd>
## Introduction
This is yet another Python implementation of Empirical Mode
Decomposition (EMD). The package contains multiple EMD variations and
intends to deliver more in time.
### EMD variations
- Ensemble EMD (EEMD),
- "Complete Ensemble EMD" (CEEMDAN)
- different settings and configurations of vanilla EMD.
- Image decomposition (EMD2D & BEMD) (experimental, no support)
- Just-in-time compiled EMD (JitEMD)
*PyEMD* allows you to use different splines for envelopes, stopping criteria
and extrema interpolations.
### Available splines
- Natural cubic (**default**)
- Pointwise cubic
- Akima
- Linear
### Available stopping criteria
- Cauchy convergence (**default**)
- Fixed number of iterations
- Number of consecutive proto-imfs
### Extrema detection
- Discrete extrema (**default**)
- Parabolic interpolation
## Installation
### PyPi (recommended)
The quickest way to install package is through `pip`.
> \$ pip install EMD-signal
### From source
In case, if you only want to *use* EMD and its variations, the best way to install PyEMD is through `pip`.
However, if you want to modify the code, anyhow you might want to download the code and build package yourself.
The source is publicaly available and hosted on [GitHub](https://github.com/laszukdawid/PyEMD).
To download the code you can either go to the source code page and click `Code -> Download ZIP`, or use **git** command line
> \$ git clone <https://github.com/laszukdawid/PyEMD>
Installing package from source is done using command line:
> \$ python setup.py install
**Note**, however, that this will install it in your current environment. If you are working on many projects, or sharing reources with others, we suggest using [virtual environments](https://docs.python.org/3/library/venv.html).
## Example
More detailed examples are included in the
[documentation](https://pyemd.readthedocs.io/en/latest/examples.html) or
in the
[PyEMD/examples](https://github.com/laszukdawid/PyEMD/tree/master/example).
### EMD
In most cases default settings are enough. Simply import `EMD` and pass
your signal to instance or to `emd()` method.
```python
from PyEMD import EMD
import numpy as np
s = np.random.random(100)
emd = EMD()
IMFs = emd(s)
```
The Figure below was produced with input:
$S(t) = cos(22 \pi t^2) + 6t^2$

### EEMD
Simplest case of using Ensemble EMD (EEMD) is by importing `EEMD` and
passing your signal to the instance or `eemd()` method.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import EEMD
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
eemd = EEMD()
eIMFs = eemd(s)
```
### CEEMDAN
As with previous methods, also there is a simple way to use `CEEMDAN`.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import CEEMDAN
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
ceemdan = CEEMDAN()
cIMFs = ceemdan(s)
```
### Visualisation
The package contains a simple visualisation helper that can help, e.g., with time series and instantaneous frequencies.
```python
import numpy as np
from PyEMD import EMD, Visualisation
t = np.arange(0, 3, 0.01)
S = np.sin(13*t + 0.2*t**1.4) - np.cos(3*t)
# Extract imfs and residue
# In case of EMD
emd = EMD()
emd.emd(S)
imfs, res = emd.get_imfs_and_residue()
# In general:
#components = EEMD()(S)
#imfs, res = components[:-1], components[-1]
vis = Visualisation()
vis.plot_imfs(imfs=imfs, residue=res, t=t, include_residue=True)
vis.plot_instant_freq(t, imfs=imfs)
vis.show()
```
## Experimental
### JitEMD
Just-in-time (JIT) compiled EMD is a version of EMD which exceed on very large signals
or reusing the same instance multiple times. It's strongly sugested to be used in
Jupyter notebooks when experimenting by modifyig input rather than the method itself.
The problem with JIT is that the compilation happens on the first execution and it can be
quite costly. With small signals, or performing decomposition just once, the extra time
for compilation will be significantly larger than the decomposition, making it less performant.
Please see documentation for more information or [examples](./example/) for how to use the code.
This is experimental as it's value is still questionable, and the author (me) isn't proficient
in JIT optimization so mistakes could've been made.
Any feedback is welcomed. Happy to improve if there's intrest. Please open tickets with questions
and suggestions.
To enable JIT in your PyEMD, please install with `jit` option, i.e.
> \$ pip install EMD-signal[jit]
### EMD2D/BEMD
*Unfortunately, this is Experimental and we can't guarantee that the output is meaningful.*
The simplest use is to pass image as monochromatic numpy 2D array. Sample as
with the other modules one can use the default setting of an instance or, more explicitly,
use the `emd2d()` method.
```python
from PyEMD.EMD2d import EMD2D #, BEMD
import numpy as np
x, y = np.arange(128), np.arange(128).reshape((-1,1))
img = np.sin(0.1*x)*np.cos(0.2*y)
emd2d = EMD2D() # BEMD() also works
IMFs_2D = emd2d(img)
```
## F.A.Q
### Why is EEMD/CEEMDAN so slow?
Unfortunately, that's their nature. They execute EMD multiple times every time with slightly modified version. Added noise can cause a creation of many extrema which will decrease performance of the natural cubic spline. For some tweaks on how to deal with that please see [Speedup tricks](https://pyemd.readthedocs.io/en/latest/speedup.html) in the documentation.
## Contact
Feel free to contact me with any questions, requests or simply to say *hi*.
It's always nice to know that I've helped someone or made their work easier.
Contributing to the project is also acceptable and warmly welcomed.
### Citation
If you found this package useful and would like to cite it in your work
please use the following structure:
```latex
@misc{pyemd,
author = {Laszuk, Dawid},
title = {Python implementation of Empirical Mode Decomposition algorithm},
year = {2017},
publisher = {GitHub},
journal = {GitHub Repository},
howpublished = {\url{https://github.com/laszukdawid/PyEMD}},
doi = {10.5281/zenodo.5459184}
}
```
%package help
Summary: Development documents and examples for EMD-signal
Provides: python3-EMD-signal-doc
%description help
[](https://codecov.io/gh/laszukdawid/PyEMD)
[](https://app.travis-ci.com/laszukdawid/PyEMD)
[](https://pyemd.readthedocs.io/)
[](https://www.codacy.com/gh/laszukdawid/PyEMD/dashboard?utm_source=github.com&utm_medium=referral&utm_content=laszukdawid/PyEMD&utm_campaign=Badge_Grade)
[](https://zenodo.org/badge/latestdoi/65324353)
# PyEMD
## Links
- Online documentation: <https://pyemd.readthedocs.org>
- Issue tracker: <https://github.com/laszukdawid/pyemd/issues>
- Source code repository: <https://github.com/laszukdawid/pyemd>
## Introduction
This is yet another Python implementation of Empirical Mode
Decomposition (EMD). The package contains multiple EMD variations and
intends to deliver more in time.
### EMD variations
- Ensemble EMD (EEMD),
- "Complete Ensemble EMD" (CEEMDAN)
- different settings and configurations of vanilla EMD.
- Image decomposition (EMD2D & BEMD) (experimental, no support)
- Just-in-time compiled EMD (JitEMD)
*PyEMD* allows you to use different splines for envelopes, stopping criteria
and extrema interpolations.
### Available splines
- Natural cubic (**default**)
- Pointwise cubic
- Akima
- Linear
### Available stopping criteria
- Cauchy convergence (**default**)
- Fixed number of iterations
- Number of consecutive proto-imfs
### Extrema detection
- Discrete extrema (**default**)
- Parabolic interpolation
## Installation
### PyPi (recommended)
The quickest way to install package is through `pip`.
> \$ pip install EMD-signal
### From source
In case, if you only want to *use* EMD and its variations, the best way to install PyEMD is through `pip`.
However, if you want to modify the code, anyhow you might want to download the code and build package yourself.
The source is publicaly available and hosted on [GitHub](https://github.com/laszukdawid/PyEMD).
To download the code you can either go to the source code page and click `Code -> Download ZIP`, or use **git** command line
> \$ git clone <https://github.com/laszukdawid/PyEMD>
Installing package from source is done using command line:
> \$ python setup.py install
**Note**, however, that this will install it in your current environment. If you are working on many projects, or sharing reources with others, we suggest using [virtual environments](https://docs.python.org/3/library/venv.html).
## Example
More detailed examples are included in the
[documentation](https://pyemd.readthedocs.io/en/latest/examples.html) or
in the
[PyEMD/examples](https://github.com/laszukdawid/PyEMD/tree/master/example).
### EMD
In most cases default settings are enough. Simply import `EMD` and pass
your signal to instance or to `emd()` method.
```python
from PyEMD import EMD
import numpy as np
s = np.random.random(100)
emd = EMD()
IMFs = emd(s)
```
The Figure below was produced with input:
$S(t) = cos(22 \pi t^2) + 6t^2$

### EEMD
Simplest case of using Ensemble EMD (EEMD) is by importing `EEMD` and
passing your signal to the instance or `eemd()` method.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import EEMD
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
eemd = EEMD()
eIMFs = eemd(s)
```
### CEEMDAN
As with previous methods, also there is a simple way to use `CEEMDAN`.
**Windows**: Please don't skip the `if __name__ == "__main__"` section.
```python
from PyEMD import CEEMDAN
import numpy as np
if __name__ == "__main__":
s = np.random.random(100)
ceemdan = CEEMDAN()
cIMFs = ceemdan(s)
```
### Visualisation
The package contains a simple visualisation helper that can help, e.g., with time series and instantaneous frequencies.
```python
import numpy as np
from PyEMD import EMD, Visualisation
t = np.arange(0, 3, 0.01)
S = np.sin(13*t + 0.2*t**1.4) - np.cos(3*t)
# Extract imfs and residue
# In case of EMD
emd = EMD()
emd.emd(S)
imfs, res = emd.get_imfs_and_residue()
# In general:
#components = EEMD()(S)
#imfs, res = components[:-1], components[-1]
vis = Visualisation()
vis.plot_imfs(imfs=imfs, residue=res, t=t, include_residue=True)
vis.plot_instant_freq(t, imfs=imfs)
vis.show()
```
## Experimental
### JitEMD
Just-in-time (JIT) compiled EMD is a version of EMD which exceed on very large signals
or reusing the same instance multiple times. It's strongly sugested to be used in
Jupyter notebooks when experimenting by modifyig input rather than the method itself.
The problem with JIT is that the compilation happens on the first execution and it can be
quite costly. With small signals, or performing decomposition just once, the extra time
for compilation will be significantly larger than the decomposition, making it less performant.
Please see documentation for more information or [examples](./example/) for how to use the code.
This is experimental as it's value is still questionable, and the author (me) isn't proficient
in JIT optimization so mistakes could've been made.
Any feedback is welcomed. Happy to improve if there's intrest. Please open tickets with questions
and suggestions.
To enable JIT in your PyEMD, please install with `jit` option, i.e.
> \$ pip install EMD-signal[jit]
### EMD2D/BEMD
*Unfortunately, this is Experimental and we can't guarantee that the output is meaningful.*
The simplest use is to pass image as monochromatic numpy 2D array. Sample as
with the other modules one can use the default setting of an instance or, more explicitly,
use the `emd2d()` method.
```python
from PyEMD.EMD2d import EMD2D #, BEMD
import numpy as np
x, y = np.arange(128), np.arange(128).reshape((-1,1))
img = np.sin(0.1*x)*np.cos(0.2*y)
emd2d = EMD2D() # BEMD() also works
IMFs_2D = emd2d(img)
```
## F.A.Q
### Why is EEMD/CEEMDAN so slow?
Unfortunately, that's their nature. They execute EMD multiple times every time with slightly modified version. Added noise can cause a creation of many extrema which will decrease performance of the natural cubic spline. For some tweaks on how to deal with that please see [Speedup tricks](https://pyemd.readthedocs.io/en/latest/speedup.html) in the documentation.
## Contact
Feel free to contact me with any questions, requests or simply to say *hi*.
It's always nice to know that I've helped someone or made their work easier.
Contributing to the project is also acceptable and warmly welcomed.
### Citation
If you found this package useful and would like to cite it in your work
please use the following structure:
```latex
@misc{pyemd,
author = {Laszuk, Dawid},
title = {Python implementation of Empirical Mode Decomposition algorithm},
year = {2017},
publisher = {GitHub},
journal = {GitHub Repository},
howpublished = {\url{https://github.com/laszukdawid/PyEMD}},
doi = {10.5281/zenodo.5459184}
}
```
%prep
%autosetup -n EMD-signal-1.4.0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-EMD-signal -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.0-1
- Package Spec generated
|