diff options
author | Alexandru Cornea <alexandru.cornea@intel.com> | 2013-07-01 19:25:43 +0300 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-08-11 15:50:20 +0900 |
commit | dd782158cea266fb4a6d80a15aba7201f4728495 (patch) | |
tree | a138ef3fa907582c9ba3a8f9c77de8bc0cc466f3 | |
parent | d3b7fab070ff24a93b798d2bcc0408de4d271745 (diff) | |
download | libsolv-dd782158cea266fb4a6d80a15aba7201f4728495.tar.gz libsolv-dd782158cea266fb4a6d80a15aba7201f4728495.tar.bz2 libsolv-dd782158cea266fb4a6d80a15aba7201f4728495.zip |
resetting manifest requested domain to floor
-rw-r--r-- | packaging/libsolv.manifest | 5 | ||||
-rw-r--r-- | packaging/libsolv.spec | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/packaging/libsolv.manifest b/packaging/libsolv.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/libsolv.manifest @@ -0,0 +1,5 @@ +<manifest> + <request> + <domain name="_"/> + </request> +</manifest> diff --git a/packaging/libsolv.spec b/packaging/libsolv.spec index de1164b..67b0dbb 100644 --- a/packaging/libsolv.spec +++ b/packaging/libsolv.spec @@ -3,6 +3,7 @@ Version: 0.3.0 Release: 0 Url: https://github.com/openSUSE/libsolv Source: libsolv-%{version}.tar.bz2 +Source1001: libsolv.manifest %bcond_without enable_static %bcond_without perl_binding @@ -79,6 +80,7 @@ Perl bindings for sat solver. %prep %setup -n libsolv-%{version} +cp %{SOURCE1001} . %build export CFLAGS="$RPM_OPT_FLAGS" @@ -115,17 +117,20 @@ export NO_BRP_STRIP_DEBUG=true %postun -p /sbin/ldconfig %files +%manifest %{name}.manifest %defattr(-,root,root) %license LICENSE* %{_libdir}/libsolv.so.* %{_libdir}/libsolvext.so.* %files tools +%manifest %{name}.manifest %defattr(-,root,root) %{_bindir}/solv %{_bindir}/* %files devel +%manifest %{name}.manifest %defattr(-,root,root) %if %{with enable_static} %{_libdir}/libsolv.a @@ -140,17 +145,20 @@ export NO_BRP_STRIP_DEBUG=true %{_datadir}/cmake/Modules/* %files demo +%manifest %{name}.manifest %defattr(-,root,root) %{_bindir}/solv %if %{with perl_binding} %files -n perl-solv +%manifest %{name}.manifest %defattr(-,root,root) %{perl_vendorarch}/* %endif %if %{with python_binding} %files -n python-solv +%manifest %{name}.manifest %defattr(-,root,root) %{python_sitearch}/* %endif |