Accepting request 103168 from zypp:Head

update

OBS-URL: https://build.opensuse.org/request/show/103168
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsolv?expand=0&rev=6
This commit is contained in:
Stephan Kulow 2012-02-08 15:05:31 +00:00 committed by Git OBS Bridge
commit 04298e34f6
3 changed files with 39 additions and 17 deletions

View File

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

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Tue Feb 7 16:33:10 CET 2012 - mls@suse.de
- add findutils to the requires of libsolv-tools [bnc#743634]
-------------------------------------------------------------------
Wed Feb 1 14:06:59 CET 2012 - mls@suse.de
- add cleandeps support for install/update
- check for cleandeps mistakes (untested)
-------------------------------------------------------------------
Fri Jan 27 14:10:34 CET 2012 - mls@suse.de
- make repo type code selection modular
- add more solvable_ functions
- add dependency getter/setter code to bindings
- cleanup dup handling
- hide more internals
-------------------------------------------------------------------
Mon Oct 24 13:26:18 CEST 2011 - ma@suse.de

View File

@ -1,7 +1,7 @@
#
# spec file for package libsolv
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -17,12 +17,10 @@
Name: libsolv
Version: 0.0.0
Release: 1
License: BSD 3-Clause
Release: 0
Url: git://gitorious.org/opensuse/libsolv.git
Source: libsolv-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Group: Development/Libraries/C and C++
%bcond_without enable_static
%bcond_without disable_shared
@ -52,15 +50,17 @@ BuildRequires: fdupes
%else
BuildRequires: expat-devel
%endif
BuildRequires: cmake rpm-devel gcc-c++
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: rpm-devel
BuildRequires: zlib-devel
%if %{with perl_binding}
BuildRequires: perl
BuildRequires: perl
%if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
BuildRequires: perl-devel
BuildRequires: perl-devel
%endif
BuildRequires: swig
BuildRequires: swig
%endif
%if %{with ruby_binding}
%if 0%{?fedora_version} || 0%{?rhel_version} >= 600 || 0%{?centos_version} >= 600
@ -68,17 +68,19 @@ BuildRequires: swig
%else
%global ruby_vendorarch %(ruby -rrbconfig -e 'puts Config::CONFIG["vendorarchdir"]')
%endif
BuildRequires: ruby ruby-devel
BuildRequires: swig
BuildRequires: ruby
BuildRequires: ruby-devel
BuildRequires: swig
%endif
%if %{with python_binding}
%global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True);")
BuildRequires: python-devel
BuildRequires: swig
BuildRequires: python-devel
BuildRequires: swig
%endif
Summary: A new approach to package dependency solving
License: BSD-3-Clause
Group: Development/Libraries/C and C++
%description
A new approach to package dependency solving
@ -109,7 +111,7 @@ Summary: A new approach to package dependency solving
Group: Development/Libraries/C and C++
Obsoletes: satsolver-tools < 0.18
Provides: satsolver-tools = 0.18
Requires: gzip bzip2 coreutils
Requires: gzip bzip2 coreutils findutils
%description tools
A new approach to package dependency solving.
@ -169,7 +171,7 @@ cmake $CMAKE_FLAGS \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DLIB=%{_lib} \
-DCMAKE_VERBOSE_MAKEFILE=TRUE \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
%{?with_enable_static:-DENABLE_STATIC=1} \
%{?with_disable_shared:-DDISABLE_SHARED=1} \
%{?with_perl_binding:-DENABLE_PERL=1} \