This commit is contained in:
parent
3ab54369df
commit
6086a567d9
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:629a15d9936057b8c979d537184aae9b7edc0a8f74af8ec1c60a5460bcc05db3
|
||||
size 4639324
|
3
libzypp-5.24.1.tar.bz2
Normal file
3
libzypp-5.24.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a93903286fecc7c07eba0496dcf18596d135d755dfceaff87bfb85da6cbda880
|
||||
size 4629970
|
@ -1,3 +1,70 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 21 16:56:10 CET 2008 - dmacvicar@suse.de
|
||||
|
||||
- remove unused updaterepokey, replaced by repo
|
||||
product information
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 21 15:12:52 CET 2008 - jkupec@suse.cz
|
||||
|
||||
- fixed uninitialized value in OnMediaLocation (bnc #447010)
|
||||
- revision 11770
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 20 23:59:16 CET 2008 - ma@suse.de
|
||||
|
||||
- Fix retrieval of deltarpm info.
|
||||
- revision 11764
|
||||
- version 5.24.0 (23)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 20 22:15:28 CET 2008 - ma@suse.de
|
||||
|
||||
- Fix retrieval of Repository attributes like timestamps, keywords
|
||||
and product info.
|
||||
- revision 11760
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 20 19:30:05 CET 2008 - ma@suse.de
|
||||
|
||||
- Enhance class LookupAttr and add convenience class LookupRepoAttr to
|
||||
iterate those solv file attributes which are not acssociated with a
|
||||
solvable. E.g. product or deltarpm info.
|
||||
- revision 11754
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 19 15:49:38 CET 2008 - jkupec@suse.cz
|
||||
|
||||
- encode user-supplied URL strings before using them in the Url object
|
||||
(bnc #446395, bnc #444267)
|
||||
- revision 11720
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 19 15:15:14 CET 2008 - ma@suse.de
|
||||
|
||||
- Support loading helix files.
|
||||
- revision 11719
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 18 18:37:30 CET 2008 - ma@suse.de
|
||||
|
||||
- Add class filesystem::Glob to find pathnames matching a pattern
|
||||
by using ::glob.
|
||||
- revision 11708
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 13 11:07:56 CET 2008 - schubi@suse.de
|
||||
|
||||
- Taking care for ppc64 while distupgrade (bnc #443685)
|
||||
- revision 11670
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 12 18:53:03 CET 2008 - ma@suse.de
|
||||
|
||||
- Add Capability ctor from Arch and Name: (Arch_i386, "name") or
|
||||
(Arch_i386, "name == 1.0").
|
||||
- revision 11669
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 12 14:31:20 CET 2008 - ma@suse.de
|
||||
|
||||
|
50
libzypp.spec
50
libzypp.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libzypp (Version 5.23.0)
|
||||
# spec file for package libzypp (Version 5.24.1)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -24,9 +24,9 @@ Group: System/Packages
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
AutoReqProv: on
|
||||
Summary: Package, Patch, Pattern, and Product Management
|
||||
Version: 5.23.0
|
||||
Version: 5.24.1
|
||||
Release: 1
|
||||
Source: libzypp-5.23.0.tar.bz2
|
||||
Source: libzypp-5.24.1.tar.bz2
|
||||
Source1: libzypp-rpmlintrc
|
||||
Prefix: /usr
|
||||
Provides: yast2-packagemanager
|
||||
@ -36,6 +36,11 @@ BuildRequires: cmake
|
||||
BuildRequires: libsatsolver-devel >= 0.12.1 openssl-devel
|
||||
BuildRequires: boost-devel curl-devel dejagnu doxygen gcc-c++ gettext-devel graphviz hal-devel libxml2-devel
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: libexpat-devel
|
||||
%else
|
||||
BuildRequires: expat-devel
|
||||
%endif
|
||||
%if 0%{?suse_version}
|
||||
BuildRequires: hicolor-icon-theme rpm-devel update-desktop-files
|
||||
Requires: uuid-runtime
|
||||
%endif
|
||||
@ -71,7 +76,7 @@ Authors:
|
||||
|
||||
%package devel
|
||||
License: GPL v2 or later
|
||||
Requires: libzypp == 5.23.0
|
||||
Requires: libzypp == 5.24.1
|
||||
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.10.14
|
||||
@ -228,6 +233,43 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%{_libdir}/pkgconfig/libzypp.pc
|
||||
|
||||
%changelog
|
||||
* Fri Nov 21 2008 dmacvicar@suse.de
|
||||
- remove unused updaterepokey, replaced by repo
|
||||
product information
|
||||
* Fri Nov 21 2008 jkupec@suse.cz
|
||||
- fixed uninitialized value in OnMediaLocation (bnc #447010)
|
||||
- revision 11770
|
||||
* Thu Nov 20 2008 ma@suse.de
|
||||
- Fix retrieval of deltarpm info.
|
||||
- revision 11764
|
||||
- version 5.24.0 (23)
|
||||
* Thu Nov 20 2008 ma@suse.de
|
||||
- Fix retrieval of Repository attributes like timestamps, keywords
|
||||
and product info.
|
||||
- revision 11760
|
||||
* Thu Nov 20 2008 ma@suse.de
|
||||
- Enhance class LookupAttr and add convenience class LookupRepoAttr to
|
||||
iterate those solv file attributes which are not acssociated with a
|
||||
solvable. E.g. product or deltarpm info.
|
||||
- revision 11754
|
||||
* Wed Nov 19 2008 jkupec@suse.cz
|
||||
- encode user-supplied URL strings before using them in the Url object
|
||||
(bnc #446395, bnc #444267)
|
||||
- revision 11720
|
||||
* Wed Nov 19 2008 ma@suse.de
|
||||
- Support loading helix files.
|
||||
- revision 11719
|
||||
* Tue Nov 18 2008 ma@suse.de
|
||||
- Add class filesystem::Glob to find pathnames matching a pattern
|
||||
by using ::glob.
|
||||
- revision 11708
|
||||
* Thu Nov 13 2008 schubi@suse.de
|
||||
- Taking care for ppc64 while distupgrade (bnc #443685)
|
||||
- revision 11670
|
||||
* Wed Nov 12 2008 ma@suse.de
|
||||
- Add Capability ctor from Arch and Name: (Arch_i386, "name") or
|
||||
(Arch_i386, "name == 1.0").
|
||||
- revision 11669
|
||||
* Wed Nov 12 2008 ma@suse.de
|
||||
- Take care to always reset CURLOPT_TIMECONDITION to prevent incomplete
|
||||
downloads. (bnc #444109)
|
||||
|
Loading…
Reference in New Issue
Block a user