This commit is contained in:
parent
26140662aa
commit
7c3a43e193
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85fb1a543e7876dee0a199d47e6f6df9a628f5a657a1754d1d253e3fdc3f31d8
|
||||
size 4651985
|
3
libzypp-6.2.2.tar.bz2
Normal file
3
libzypp-6.2.2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e437f4e6a387270f1cd57ac89729b7af329e101b964bf2eb597a9941220dd3e
|
||||
size 4652634
|
@ -1,3 +1,40 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 5 14:52:44 CET 2009 - ma@suse.de
|
||||
|
||||
- Remove a lock if the locking process is in zombie state. (bnc #481577)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 00:13:19 CET 2009 - jkupec@suse.cz
|
||||
|
||||
- zypp.conf: fixed and enabled 'servicesdir'
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 3 13:38:11 CET 2009 - dmacvicar@suse.de
|
||||
|
||||
- aria2: implement speed indicators (bnc#475506)
|
||||
- aria2: implement progress indicators correctly (bnc#473846)
|
||||
- aria2: fix broken pipe when looking for aria2c which caused
|
||||
a fallback to curl. (bnc#480930)
|
||||
- aria2: implement saving and reading mirror stats data in
|
||||
/var/cache/zypp/aria2.stats
|
||||
- aria2: handle failover correctly (bnc#481115)
|
||||
- aria2: various improvements in error and report handling
|
||||
- aria2: curl: reset settings on attach to avoid duplicate
|
||||
headers
|
||||
- version 6.2.1 (2)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 3 12:44:24 CET 2009 - ma@suse.de
|
||||
|
||||
- Adapt to changed satsolver API.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 27 16:23:36 CET 2009 - dmacvicar@suse.de
|
||||
|
||||
- Make sure Fetcher pass optional files as non-interactive
|
||||
- Fixes file does not exist error when key/sig does not exist
|
||||
- version 6.2.0 (2)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 26 13:49:56 CET 2009 - ma@suse.de
|
||||
|
||||
|
36
libzypp.spec
36
libzypp.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libzypp (Version 6.1.0)
|
||||
# spec file for package libzypp (Version 6.2.2)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -24,16 +24,16 @@ Group: System/Packages
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
AutoReqProv: on
|
||||
Summary: Package, Patch, Pattern, and Product Management
|
||||
Version: 6.1.0
|
||||
Release: 2
|
||||
Source: libzypp-6.1.0.tar.bz2
|
||||
Version: 6.2.2
|
||||
Release: 1
|
||||
Source: libzypp-6.2.2.tar.bz2
|
||||
Source1: libzypp-rpmlintrc
|
||||
Prefix: /usr
|
||||
Provides: yast2-packagemanager
|
||||
Obsoletes: yast2-packagemanager
|
||||
Recommends: logrotate
|
||||
BuildRequires: cmake
|
||||
BuildRequires: libsatsolver-devel >= 0.13.0 openssl-devel
|
||||
BuildRequires: libsatsolver-devel >= 0.14.0 openssl-devel
|
||||
BuildRequires: boost-devel curl-devel dejagnu doxygen gcc-c++ gettext-devel graphviz hal-devel libxml2-devel
|
||||
# required for testsuite, webrick
|
||||
BuildRequires: ruby
|
||||
@ -80,7 +80,7 @@ Authors:
|
||||
|
||||
%package devel
|
||||
License: GPL v2 or later
|
||||
Requires: libzypp == 6.1.0
|
||||
Requires: libzypp == 6.2.2
|
||||
Requires: libxml2-devel curl-devel openssl-devel rpm-devel glibc-devel zlib-devel
|
||||
Requires: bzip2 popt-devel dbus-1-devel glib2-devel hal-devel boost-devel libstdc++-devel
|
||||
Requires: cmake libsatsolver-devel >= 0.13.0
|
||||
@ -123,7 +123,7 @@ make -C po %{?jobs:-j %jobs} translations
|
||||
%if 0%{?run_testsuite}
|
||||
make -C tests %{?jobs:-j %jobs}
|
||||
pushd tests
|
||||
ctest -A
|
||||
LD_LIBRARY_PATH=$PWD/../zypp:$LD_LIBRARY_PATH ctest .
|
||||
popd
|
||||
%endif
|
||||
#make check
|
||||
@ -245,6 +245,28 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%{_libdir}/pkgconfig/libzypp.pc
|
||||
|
||||
%changelog
|
||||
* Thu Mar 05 2009 ma@suse.de
|
||||
- Remove a lock if the locking process is in zombie state. (bnc #481577)
|
||||
* Wed Mar 04 2009 jkupec@suse.cz
|
||||
- zypp.conf: fixed and enabled 'servicesdir'
|
||||
* Tue Mar 03 2009 dmacvicar@suse.de
|
||||
- aria2: implement speed indicators (bnc#475506)
|
||||
- aria2: implement progress indicators correctly (bnc#473846)
|
||||
- aria2: fix broken pipe when looking for aria2c which caused
|
||||
a fallback to curl. (bnc#480930)
|
||||
- aria2: implement saving and reading mirror stats data in
|
||||
/var/cache/zypp/aria2.stats
|
||||
- aria2: handle failover correctly (bnc#481115)
|
||||
- aria2: various improvements in error and report handling
|
||||
- aria2: curl: reset settings on attach to avoid duplicate
|
||||
headers
|
||||
- version 6.2.1 (2)
|
||||
* Tue Mar 03 2009 ma@suse.de
|
||||
- Adapt to changed satsolver API.
|
||||
* Fri Feb 27 2009 dmacvicar@suse.de
|
||||
- Make sure Fetcher pass optional files as non-interactive
|
||||
- Fixes file does not exist error when key/sig does not exist
|
||||
- version 6.2.0 (2)
|
||||
* Thu Feb 26 2009 ma@suse.de
|
||||
- Use correct default for zconfig(solver.checkSystemFile) (bnc# 475144)
|
||||
* Thu Feb 26 2009 ma@suse.de
|
||||
|
Loading…
x
Reference in New Issue
Block a user