Accepting request 116238 from zypp:Head

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/116238
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsolv?expand=0&rev=7
This commit is contained in:
Stephan Kulow 2012-05-08 04:46:18 +00:00 committed by Git OBS Bridge
commit 9ebcbc1340
4 changed files with 25 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:25cae9d9e58a4fd0491d162d605b034043f2bc5ee028c8ab60dc3c8c0f75699e
size 275070

3
libsolv-0.1.0.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c740bbbd55091b18c786b11aaf4a2d818d31adc2ee0b7f28fb06a4800b6e48a
size 300657

View File

@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon Apr 23 15:52:26 CEST 2012 - mls@suse.de
- added testcase framework
- add solver_get_unneeded() to get a list of no longer needed
installed packages
- changed duprule generation to ignore uninstallable packages [bnc#750485]
- fix memory leaks
- speed up whatprovides generation
- support 64bit nums, return files sizes in bytes
- return errors instead of calling exit()
- support tilde in rpm version comparison [bnc#466994]
- 0.1.0
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 7 16:33:10 CET 2012 - mls@suse.de Tue Feb 7 16:33:10 CET 2012 - mls@suse.de

View File

@ -16,7 +16,7 @@
# #
Name: libsolv Name: libsolv
Version: 0.0.0 Version: 0.1.0
Release: 0 Release: 0
Url: git://gitorious.org/opensuse/libsolv.git Url: git://gitorious.org/opensuse/libsolv.git
Source: libsolv-%{version}.tar.bz2 Source: libsolv-%{version}.tar.bz2
@ -166,6 +166,9 @@ CMAKE_FLAGS=
%if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600 %if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
CMAKE_FLAGS="-DFEDORA=1" CMAKE_FLAGS="-DFEDORA=1"
%endif %endif
%if 0%{?suse_version}
CMAKE_FLAGS="-DSUSE=1"
%endif
cmake $CMAKE_FLAGS \ cmake $CMAKE_FLAGS \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \ -DCMAKE_INSTALL_PREFIX=%{_prefix} \
@ -211,7 +214,9 @@ rm -rf "$RPM_BUILD_ROOT"
%files tools %files tools
%defattr(-,root,root) %defattr(-,root,root)
%if 0%{?suse_version}
%exclude %{_bindir}/helix2solv %exclude %{_bindir}/helix2solv
%endif
%exclude %{_bindir}/solv %exclude %{_bindir}/solv
%{_bindir}/* %{_bindir}/*
@ -226,7 +231,9 @@ rm -rf "$RPM_BUILD_ROOT"
%{_libdir}/libsolvext.so %{_libdir}/libsolvext.so
%endif %endif
%{_includedir}/solv %{_includedir}/solv
%if 0%{?suse_version}
%{_bindir}/helix2solv %{_bindir}/helix2solv
%endif
%{_datadir}/cmake/Modules/* %{_datadir}/cmake/Modules/*
%files demo %files demo