forked from pool/libzypp
This commit is contained in:
parent
b871d0bc73
commit
b668784610
@ -1,10 +1,48 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 19 19:25:24 CET 2007 - ma@suse.de
|
||||||
|
|
||||||
|
- Enable package read ahead/caching in commit per default to reduce
|
||||||
|
interactive media changes. If the environment variable
|
||||||
|
ZYPP_COMMIT_NO_PACKAGE_CACHE is set, caching will be disabled. (F100182)
|
||||||
|
- version 2.13.0
|
||||||
|
- revision 4878
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 19 17:18:14 CET 2007 - schubi@suse.de
|
||||||
|
|
||||||
|
- added parameter not to reset resolver results while calling
|
||||||
|
freshen pool Bug: 235761
|
||||||
|
- Revision 4875
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 18 23:54:54 CET 2007 - ma@suse.de
|
||||||
|
|
||||||
|
- Prepare package read ahead/caching of packages in commit. Adatped the
|
||||||
|
workflow. Caching details are now hidden inside CommitPackageCache.
|
||||||
|
The current implementation still performs no read ahead. (for F100182)
|
||||||
|
- version 2.12.3
|
||||||
|
- revision 4870
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 18 15:39:37 CET 2007 - ma@suse.de
|
||||||
|
|
||||||
|
- Skip invalid or broken rpm database entries. (#231211)
|
||||||
|
- version 2.12.2
|
||||||
|
- revision 4868
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 18 11:00:17 CET 2007 - schubi@suse.de
|
||||||
|
|
||||||
|
- verifySystem: check if the solution is valid after calling freshenPool()
|
||||||
|
Bug: 235761
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 15 13:52:56 CET 2007 - schubi@suse.de
|
Mon Jan 15 13:52:56 CET 2007 - schubi@suse.de
|
||||||
- Added own call for Resolver::verifySystem with additional
|
- Added own call for Resolver::verifySystem with additional
|
||||||
hardware/language check in order to keep binary compatibility
|
hardware/language check in order to keep binary compatibility
|
||||||
Fate #301224
|
Fate #301224
|
||||||
- version 2.12.1
|
- version 2.12.1
|
||||||
- revision 4862
|
- revision 4862
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 15 13:30:41 CET 2007 - ma@suse.de
|
Mon Jan 15 13:30:41 CET 2007 - ma@suse.de
|
||||||
|
31
libzypp.spec
31
libzypp.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libzypp (Version 2.12.1)
|
# spec file for package libzypp (Version 2.13.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -16,9 +16,9 @@ Group: System/Packages
|
|||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Summary: Package, Patch, Pattern, and Product Management
|
Summary: Package, Patch, Pattern, and Product Management
|
||||||
Version: 2.12.1
|
Version: 2.13.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Source: zypp-2.12.1.tar.bz2
|
Source: zypp-2.13.0.tar.bz2
|
||||||
Prefix: /usr
|
Prefix: /usr
|
||||||
Provides: yast2-packagemanager
|
Provides: yast2-packagemanager
|
||||||
Obsoletes: yast2-packagemanager
|
Obsoletes: yast2-packagemanager
|
||||||
@ -68,7 +68,7 @@ Authors:
|
|||||||
Ladislav Slezak <lslezak@suse.cz>
|
Ladislav Slezak <lslezak@suse.cz>
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n zypp-2.12.1
|
%setup -q -n zypp-2.13.0
|
||||||
|
|
||||||
%build
|
%build
|
||||||
mv configure.ac x
|
mv configure.ac x
|
||||||
@ -119,6 +119,29 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
%{_libdir}/pkgconfig/libzypp.pc
|
%{_libdir}/pkgconfig/libzypp.pc
|
||||||
|
|
||||||
%changelog -n libzypp
|
%changelog -n libzypp
|
||||||
|
* Fri Jan 19 2007 - ma@suse.de
|
||||||
|
- Enable package read ahead/caching in commit per default to reduce
|
||||||
|
interactive media changes. If the environment variable
|
||||||
|
ZYPP_COMMIT_NO_PACKAGE_CACHE is set, caching will be disabled. (F100182)
|
||||||
|
- version 2.13.0
|
||||||
|
- revision 4878
|
||||||
|
* Fri Jan 19 2007 - schubi@suse.de
|
||||||
|
- added parameter not to reset resolver results while calling
|
||||||
|
freshen pool Bug: 235761
|
||||||
|
- Revision 4875
|
||||||
|
* Thu Jan 18 2007 - ma@suse.de
|
||||||
|
- Prepare package read ahead/caching of packages in commit. Adatped the
|
||||||
|
workflow. Caching details are now hidden inside CommitPackageCache.
|
||||||
|
The current implementation still performs no read ahead. (for F100182)
|
||||||
|
- version 2.12.3
|
||||||
|
- revision 4870
|
||||||
|
* Thu Jan 18 2007 - ma@suse.de
|
||||||
|
- Skip invalid or broken rpm database entries. (#231211)
|
||||||
|
- version 2.12.2
|
||||||
|
- revision 4868
|
||||||
|
* Thu Jan 18 2007 - schubi@suse.de
|
||||||
|
- verifySystem: check if the solution is valid after calling freshenPool()
|
||||||
|
Bug: 235761
|
||||||
* Mon Jan 15 2007 - schubi@suse.de
|
* Mon Jan 15 2007 - schubi@suse.de
|
||||||
- Added own call for Resolver::verifySystem with additional
|
- Added own call for Resolver::verifySystem with additional
|
||||||
hardware/language check in order to keep binary compatibility
|
hardware/language check in order to keep binary compatibility
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7ba8d71ae7e3f961ddd8b44f74eaa20779453f55dbd3636e9a7ca1461d5eb995
|
|
||||||
size 16942728
|
|
3
zypp-2.13.0.tar.bz2
Normal file
3
zypp-2.13.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0abac577553688d3860545abb266b98d19313379f5f8f2bd19809d5ee2f70afd
|
||||||
|
size 16941385
|
Loading…
x
Reference in New Issue
Block a user