tarball will not rpm -ta at all
Brought to you by:
rufustfirefly
Okay. Regardless of the Linux Distro, check this out:
[root@ducky php406]# rpm -ta /tmp/php406/phpwebtools-0.2.3.tar.gz
error: File /tmp/php406/php_webtools-0.1.tar.bz2: No such file or directory
You know what's causing that?
Source0: %{name}-%{version}.tar.bz2
It's making RPM look for the wrong tarball in the directory.
You will NEED to change the spec file included if you want to ship a tar.gz tarball alongside the
tar.bz2 tarball, because of RPM using the Source0 tag to find the tarball file in the dir.
Not sure how you want to handle this one.
- ..