search for: newspec

Displaying 6 results from an estimated 6 matches for "newspec".

Did you mean: ewspec
2020 May 03
2
perl Net::Interface module on CentOS 8
We have received a perl program that makes use of "Net::Interface" module which I am trying to run on CentOS 8. However, running into issues as this module is not found. use Net::Interface; I could use cpan to install the same, but currently using the rpm packages for all the needs. Any idea which rpm package provides this perl module? Thanks.
2015 Feb 18
1
How to write RPM spec
> On Wed, 18 Feb 2015 05:36:48 +1300 > Jegadeesh Kumar wrote: > >> I setup the RPM build server and read some doc to write the spec >> files. but i did get it clearly. So can you guys please help me >> to write a new RPM spec. If you have set up an RPM build server then you should have installed the rpmbuild and rpmdevtools packages. If you have installed the latter
2020 May 03
0
perl Net::Interface module on CentOS 8
...but currently using the rpm packages > for all the needs. Any idea which rpm package provides this perl module? There are no CentOS 8packages that provide that Perl module, I don?t see packages in C7 either (nor in EPEL). I suggest packaging them yourself. The rpm-build package has an rpmdev-newspec command that can take a -t perl argument to create a spec file from a template for a perk module. So `rpmdev-newspec -t perl perl-Net-Interface` -- Jonathan Billings
2017 Dec 27
4
An rpmbuild spec question
Stephen John Smoogen wrote: > On Wed, Dec 27, 2017 at 3:41 PM <m.roth at 5-cent.us> wrote: > >> I'm trying to build a package to create a directory and install some >> files. My rpmbuild keeps failing, unable to cd into the directory, "no >> such". Now, in the tmpfile, I *see* it cd'ing into BUILD/opt, and the >> source was unzipped and untared
2017 Dec 28
0
An rpmbuild spec question
...9;[' > /usr/local/src/rpmbuild/BUILDROOT/smipmicfg-1.27.0-.el7.centos.x86_64 '!=' > / ']' > And you see that "-" after the name/version You're missing a lot of package metadata in your spec file. I suggest starting over, install rpmdevtools, use: rpmdev-newspec -t minimal smipmicfg It will create a file smipmicfg.spec, and it will be fully populated with a mimimal spec file. You can probably just remove the %build section entirely, and just use the %install section to extract the contents of the tarball (or just create the dir and copy %{SOURCE0} to %bu...
2019 Feb 14
0
Proposed speedup of spec.pgram from spectrum.R
...45%. In the function as it currently exists, only the upper right triangle of pgram is necessary and pgram is not returned by the function, therefore, calculating the lower left portion (ie when j < i) is not required. We change two nested loops to index from i:ncol(x) instead of 1L:ncol(x) : newspec.pgram <- function (x, spans = NULL, kernel = NULL, taper = 0.1, pad = 0, fast = TRUE, demean = FALSE, detrend = TRUE, plot = TRUE, na.action = na.fail, ...) { ## Estimate spectral density from (smoothed) periodogram. series <- deparse(subs...