|
@@ -0,0 +1,2916 @@
|
|
|
+#
|
|
|
+# spec file for package zypper
|
|
|
+#
|
|
|
+# Copyright (c) 2015 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
|
|
|
+# upon. The license for this file, and modifications and additions to the
|
|
|
+# file, is the same license as for the pristine package itself (unless the
|
|
|
+# license for the pristine package is not an Open Source License, in which
|
|
|
+# case the license is the MIT License). An "Open Source License" is a
|
|
|
+# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
+# published by the Open Source Initiative.
|
|
|
+
|
|
|
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
+#
|
|
|
+
|
|
|
+
|
|
|
+Name: zypper
|
|
|
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
+Summary: Command line software manager using libzypp
|
|
|
+Version: 1.14.50
|
|
|
+Release: 1%{?_dist_release}
|
|
|
+Group: system,admin-tools
|
|
|
+Vendor: Project Vine
|
|
|
+Distribution: Vine Linux
|
|
|
+
|
|
|
+License: GPL-2.0+
|
|
|
+Url: https://en.opensuse.org/Portal:Zypper
|
|
|
+Source: https://github.com/openSUSE/zypper/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
+Source1: %{name}-rpmlintrc
|
|
|
+
|
|
|
+BuildRequires: augeas-devel >= 0.5.0
|
|
|
+BuildRequires: libboost-devel >= 1.33.1
|
|
|
+BuildRequires: cmake >= 2.4.6
|
|
|
+BuildRequires: gcc-c++ >= 4.7
|
|
|
+BuildRequires: gettext-devel >= 0.15
|
|
|
+BuildRequires: libzypp-devel >= 14.35.0
|
|
|
+BuildRequires: readline-devel >= 5.1
|
|
|
+BuildRequires: rubygem-asciidoctor
|
|
|
+Requires: procps
|
|
|
+%if 0%{?suse_version}
|
|
|
+%requires_ge libzypp
|
|
|
+Recommends: logrotate cron zypper-log
|
|
|
+%endif
|
|
|
+
|
|
|
+%description
|
|
|
+Zypper is a command line tool for managing software. It can be used to add
|
|
|
+package repositories, search for packages, install, remove, or update packages,
|
|
|
+install patches, hardware drivers, verify dependencies, and more.
|
|
|
+
|
|
|
+Zypper can be used interactively or non-interactively by user, from scripts,
|
|
|
+or front-ends.
|
|
|
+
|
|
|
+Authors:
|
|
|
+--------
|
|
|
+ Jan Kupec <jkupec@suse.cz>
|
|
|
+ Michael Andres <ma@suse.de>
|
|
|
+ Duncan Mac-Vicar <dmacvicar@suse.de>
|
|
|
+ Martin Vidner <mvidner@suse.cz>
|
|
|
+ Josef Reidinger <jreidinger@suse.cz>
|
|
|
+
|
|
|
+
|
|
|
+%package log
|
|
|
+Summary: CLI for accessing the zypper logfile
|
|
|
+Group: admin-tools
|
|
|
+%if 0%{?suse_version} && 0%{?suse_version} < 1140
|
|
|
+Requires: python >= 2.6
|
|
|
+Requires: python-argparse
|
|
|
+%else
|
|
|
+Requires: python >= 2.7
|
|
|
+%endif
|
|
|
+Requires: xz
|
|
|
+BuildArch: noarch
|
|
|
+
|
|
|
+%description -n zypper-log
|
|
|
+CLI for accessing the zypper logfile
|
|
|
+
|
|
|
+Authors:
|
|
|
+--------
|
|
|
+ Dominik Heidler <dheidler@suse.de>
|
|
|
+
|
|
|
+
|
|
|
+%package aptitude
|
|
|
+Summary: aptitude compatibility with zypper
|
|
|
+Group: system,admin-toola
|
|
|
+Requires: perl
|
|
|
+%if 0%{?suse_version}
|
|
|
+Supplements: zypper
|
|
|
+%endif
|
|
|
+BuildArch: noarch
|
|
|
+
|
|
|
+%description aptitude
|
|
|
+provides aptitude compatibility using zypper
|
|
|
+
|
|
|
+Authors:
|
|
|
+--------
|
|
|
+ Bernhard M. Wiedemann <bernhard+aptitude4zypp lsmod de>
|
|
|
+
|
|
|
+
|
|
|
+%debug_package
|
|
|
+
|
|
|
+
|
|
|
+%prep
|
|
|
+%setup -q
|
|
|
+%autopatch -p1
|
|
|
+
|
|
|
+
|
|
|
+%build
|
|
|
+%cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|
|
+ -DSYSCONFDIR=%{_sysconfdir} \
|
|
|
+ -DMANDIR=%{_mandir} \
|
|
|
+ -DCMAKE_VERBOSE_MAKEFILE=TRUE \
|
|
|
+ -DCMAKE_C_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
|
|
|
+ -DCMAKE_CXX_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
|
|
|
+ -DCMAKE_BUILD_TYPE=Release \
|
|
|
+ -DUSE_TRANSLATION_SET=${TRANSLATION_SET:-zypper}
|
|
|
+
|
|
|
+#gettextize -f
|
|
|
+%cmake_build
|
|
|
+make -C %{_vpath_builddir}/po %{?_smp_mflags} translations
|
|
|
+
|
|
|
+%install
|
|
|
+rm -rf %{buildroot}
|
|
|
+
|
|
|
+%cmake_install
|
|
|
+make -C %{_vpath_builddir}/po install DESTDIR=$RPM_BUILD_ROOT
|
|
|
+
|
|
|
+# yzpper symlink
|
|
|
+ln -s zypper $RPM_BUILD_ROOT%{_bindir}/yzpper
|
|
|
+
|
|
|
+# Create filelist with translations
|
|
|
+%{find_lang} zypper
|
|
|
+%{__install} -d -m755 $RPM_BUILD_ROOT%{_var}/log
|
|
|
+touch $RPM_BUILD_ROOT%{_var}/log/zypper.log
|
|
|
+
|
|
|
+rm -rf %{buildroot}%{_datadir}/doc/packages
|
|
|
+
|
|
|
+
|
|
|
+%clean
|
|
|
+rm -rf "$RPM_BUILD_ROOT"
|
|
|
+
|
|
|
+
|
|
|
+%files -f zypper.lang
|
|
|
+%defattr(-,root,root)
|
|
|
+%license COPYING
|
|
|
+%doc HACKING
|
|
|
+%config(noreplace) %{_sysconfdir}/zypp/zypper.conf
|
|
|
+%config(noreplace) %{_sysconfdir}/logrotate.d/zypper.lr
|
|
|
+%config(noreplace) %{_sysconfdir}/logrotate.d/zypp-refresh.lr
|
|
|
+%{_sysconfdir}/bash_completion.d/zypper.sh
|
|
|
+%{_bindir}/zypper
|
|
|
+%{_bindir}/yzpper
|
|
|
+%{_bindir}/installation_sources
|
|
|
+%{_bindir}/needs-restarting
|
|
|
+
|
|
|
+%{_sbindir}/zypp-refresh
|
|
|
+%dir %{_datadir}/zypper
|
|
|
+%{_datadir}/zypper/zypper.aug
|
|
|
+%dir %{_datadir}/zypper/xml
|
|
|
+%{_datadir}/zypper/xml/xmlout.rnc
|
|
|
+%doc %{_mandir}/man1/needs-restarting.1*
|
|
|
+%doc %{_mandir}/man8/zypper.8*
|
|
|
+%doc %{_mandir}/man8/zypp-refresh.8*
|
|
|
+# declare ownership of the log file but prevent
|
|
|
+# it from being erased by rpm -e
|
|
|
+%ghost %config(noreplace) %attr (640,root,root) %{_var}/log/zypper.log
|
|
|
+
|
|
|
+%files log
|
|
|
+%defattr(-,root,root)
|
|
|
+%{_sbindir}/zypper-log
|
|
|
+%doc %{_mandir}/man8/zypper-log.8*
|
|
|
+
|
|
|
+%files aptitude
|
|
|
+%defattr(-,root,root)
|
|
|
+%exclude %{_bindir}/apt
|
|
|
+%exclude %{_bindir}/apt-get
|
|
|
+%{_bindir}/aptitude
|
|
|
+%{_sysconfdir}/zypp/apt-packagemap.d/*
|
|
|
+
|
|
|
+
|
|
|
+%changelog
|
|
|
+* Tue Oct 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.50-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Thu Sep 09 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.49-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Sat Feb 20 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.42-1
|
|
|
+- new upstream release.
|
|
|
+- dropped all patches: fixed in upstream.
|
|
|
+
|
|
|
+* Wed Mar 25 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.35-1
|
|
|
+- new upstream release.
|
|
|
+- imported Patch1 and 2 from upstream.
|
|
|
+
|
|
|
+* Tue Sep 03 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.30-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Mon Nov 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.15-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Wed Jan 03 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.13.39-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Sun Jul 17 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.44-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Sun May 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.40-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Sun Nov 15 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.25-1
|
|
|
+- initial build for Vine Linux.
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Fri Apr 24 2015 opensuse-packaging@opensuse.org
|
|
|
+- Update to version 1.12.0.20150423:
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+ + only use ANSI codes on terminals (bnc#925678)
|
|
|
+ + move duplicated code into wcwidth_without_ctrlseq function
|
|
|
+ + fix handling of wchar errors
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+* Fri Apr 17 2015 opensuse-packaging@opensuse.org
|
|
|
+- Update to version 1.12.0.20150416:
|
|
|
+ + Fix prompt returning undefined default value after wrong input (bnc#925696)
|
|
|
+ + changes 1.12.0
|
|
|
+ + Update zypper-po.tar.bz2
|
|
|
+ + only use ANSI codes on terminals (bnc#925678)
|
|
|
+ + move duplicated code into wcwidth_without_ctrlseq function
|
|
|
+ + fix handling of wchar errors
|
|
|
+* Sun Mar 22 2015 tittiatcoke@gmail.com
|
|
|
+- patch: A date limit must ignore newer patch candidates (bnc#919709)
|
|
|
+- Show locked packages in zypper summary (FATE#318326,FATE#318299)
|
|
|
+- modify repo: Notify about volatile changes to service repos (bnc#916254)
|
|
|
+- ps: Change column header from 'Login' to 'User' (bnc#915461)
|
|
|
+- man: add missing patch --date option
|
|
|
+- man: mention $releasever_major/minor repo variables
|
|
|
+- man: Update repo variable substitution (default and alternate values)
|
|
|
+- version 1.11.23
|
|
|
+* Sun Feb 8 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 5 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 1 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 29 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 25 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Jan 23 2015 ma@suse.de
|
|
|
+- repos(lr): Fix wrong exit status using the --xmlout option (bnc#914258)
|
|
|
+- version 1.11.22
|
|
|
+* Fri Jan 23 2015 ma@suse.de
|
|
|
+- Refresh plugin services on 'lr' 'ls -r' and 'ref' (bnc#893294)(FATE#318117)
|
|
|
+ Repositories provided by a plugin service (SUSE Manager) must always
|
|
|
+ be (auto-)refreshed to reflect server side changes immediately.
|
|
|
+- zypper.conf: new color/pkglistHighlightAttribute (bnc#914284)
|
|
|
+ Tune the color atrribute used for package list highlighting.
|
|
|
+- version 1.11.21
|
|
|
+* Thu Jan 22 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 18 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jan 14 2015 ma@suse.de
|
|
|
+- New global option --releasever: Set the value of the $releasever
|
|
|
+ variable in all .repo files. This can be used to switch to new
|
|
|
+ distribution repositories when performing a distribution upgrade.
|
|
|
+ (bnc#911658)
|
|
|
+- BuildRequires: libzypp-devel >= 14.34.0
|
|
|
+- Clarify legacy warning (bnc#911335)
|
|
|
+- version 1.11.20
|
|
|
+* Sun Jan 11 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 8 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jan 7 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 1 2015 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Dec 21 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Dec 19 2014 ma@suse.de
|
|
|
+- info: show new product:registerflavor attribute (bnc#896224)
|
|
|
+- version 1.11.19
|
|
|
+* Thu Dec 18 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Dec 17 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Dec 17 2014 ma@suse.de
|
|
|
+- Enhance 'Digest verification failed' message (FATE#315008)
|
|
|
+- Enhance message text when skipping repos due to an error (bnc#909244)
|
|
|
+- zypper.conf: fix wrong default mentioned in comment
|
|
|
+- zypper-log(8): Update man page
|
|
|
+- version 1.11.18
|
|
|
+* Thu Dec 11 2014 ma@suse.de
|
|
|
+- Add --[no-]color global option
|
|
|
+- Fix additional spaces in zypper output and
|
|
|
+ new colorization code (bnc#908345)
|
|
|
+- properly reset auto-retry counter (bnc#906549)
|
|
|
+- man: improve patch description (bnc#904737)
|
|
|
+- version 1.11.17
|
|
|
+* Tue Nov 11 2014 ma@suse.de
|
|
|
+- Warn about repositories with 'gpgcheck=0' (bnc#848054)
|
|
|
+- search: fix --verbose implies --details
|
|
|
+- Enhance 'Digest verification failed' dialog (FATE#315008)
|
|
|
+- Summary: quote names including spaces (bnc#903675)
|
|
|
+- version 1.11.16
|
|
|
+* Mon Nov 3 2014 ma@suse.de
|
|
|
+- Provide missing man pages (fixes #51)
|
|
|
+- Create man pages from asciidoc (fixes #53)
|
|
|
+- Warn if legacy CLI options are used (bnc#899781)
|
|
|
+- version 1.11.15
|
|
|
+* Thu Oct 16 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Oct 13 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 11 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2 (bnc#899603)
|
|
|
+* Fri Oct 10 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 8 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 4 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 27 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Sep 25 2014 ma@suse.de
|
|
|
+- Trigger appdata plugin when system repos have changed (bnc#866257)
|
|
|
+- SLE-12 (suse_version 1315) uses it's own translations set (bnc#897176)
|
|
|
+- version 1.11.14
|
|
|
+* Sat Sep 20 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Sep 18 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Sep 5 2014 ma@suse.de
|
|
|
+- Adapt to new zypp api (bnc#892579)
|
|
|
+- version 1.11.13
|
|
|
+* Wed Sep 3 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Aug 29 2014 ma@suse.de
|
|
|
+- download: use $XDG_CACHE_HOME/zypp/packages for non-root user
|
|
|
+ (bnc#891515)
|
|
|
+- download --dry-run: list packages we would download
|
|
|
+- Accept -f,--force option with refresh-services(refs)
|
|
|
+- version 1.11.12
|
|
|
+* Sat Aug 23 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 20 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Aug 18 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Jul 25 2014 ma@suse.de
|
|
|
+- Rephrase 'verify' help text (bnc#885499)
|
|
|
+- version 1.11.11
|
|
|
+* Mon Jul 14 2014 ma@suse.de
|
|
|
+- refresh-services: add option --restore-status to undo user
|
|
|
+ modifications applied to service repositories
|
|
|
+- drop rug compatibility in manpage docs and help output
|
|
|
+ (FATE#317708)
|
|
|
+- version 1.11.10
|
|
|
+* Fri Jul 11 2014 ma@suse.de
|
|
|
+- Enable --plus-content option (FATE#316287)
|
|
|
+- Add symlink yzpper -> zypper (bnc#885655)
|
|
|
+- version 1.11.9
|
|
|
+* Wed Jun 11 2014 ma@suse.de
|
|
|
+- Show patch severity (bnc#881373,FATE#312633)
|
|
|
+- Add '--details' to show the detailed installation summary (bnc#721823)
|
|
|
+- version 1.11.8
|
|
|
+* Wed May 14 2014 ma@suse.de
|
|
|
+- Notify about cached packages in download progess
|
|
|
+- Adjust download size by already cached packages in summary
|
|
|
+- Don't suggest 'zypper ps' after commit if --download-only
|
|
|
+- version 1.11.7
|
|
|
+* Thu May 8 2014 ma@suse.de
|
|
|
+- Notify user about expiring trusted keys; show trusted keys in
|
|
|
+ verbose mode.
|
|
|
+- Enable --with-interactive for update too (bnc#827953)
|
|
|
+- Highlight missing update repos in product info
|
|
|
+- version 1.11.6
|
|
|
+* Sat May 3 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 30 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Apr 29 2014 ma@suse.de
|
|
|
+- download: fix xml output when already cached
|
|
|
+- version 1.11.5
|
|
|
+* Tue Apr 15 2014 ma@suse.de
|
|
|
+- Add 'download' command (Fate#317077)
|
|
|
+- version 1.11.4
|
|
|
+* Sun Apr 13 2014 ma@suse.de
|
|
|
+- more duplicate short options fixes
|
|
|
+- Fix typo in manpage
|
|
|
+- version 1.11.3
|
|
|
+* Fri Apr 11 2014 ma@suse.de
|
|
|
+- packages: Remove conflicting short options (-r repo/recommends)
|
|
|
+- version 1.11.2
|
|
|
+* Fri Apr 4 2014 ma@suse.de
|
|
|
+- info product: show CPEid and report enabled/missing update repos
|
|
|
+- Warn if /etc/products.d/baseproduct symlink is missing.
|
|
|
+- version 1.11.1
|
|
|
+* Thu Mar 20 2014 ma@suse.de
|
|
|
+- Add summary messages for application (bnc#869439)
|
|
|
+- Rephrase some 'zypper ps' related messages (bnc#866300)
|
|
|
+- Message about uninstallable patters is obsolete (bnc#869616)
|
|
|
+- version 1.11.0
|
|
|
+* Tue Mar 18 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 23 2014 ma@suse.de
|
|
|
+- Don't include suggested packages in pattern content, as we can't
|
|
|
+ handle them (bnc#857671)
|
|
|
+- Fix computation of pattern status (bnc#864412)
|
|
|
+- fix wrong processing of translated plural forms (bnc#756195)
|
|
|
+- Fix result list of 'packages' command (bnc#864198)
|
|
|
+- version 1.10.8
|
|
|
+* Fri Feb 14 2014 ma@suse.de
|
|
|
+- Print Content Ids of required update repos in product info (Fate#316160)
|
|
|
+- Update man page
|
|
|
+- version 1.10.7
|
|
|
+* Tue Feb 11 2014 ma@suse.de
|
|
|
+- Show Product::endOfLife attribute in product info (Fate#316172)
|
|
|
+- Fix missing description tags and escaping in XML output.
|
|
|
+- Remove license text from test data (bnc#862471)
|
|
|
+- Add info command options to print dependencies.
|
|
|
+- version 1.10.6
|
|
|
+* Sun Feb 2 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 30 2014 ma@suse.de
|
|
|
+- Fix eating all memory if stdout is not a tty.
|
|
|
+- version 1.10.5
|
|
|
+* Thu Jan 30 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jan 29 2014 ma@suse.de
|
|
|
+- Don't treat missing packages due to download mode as error in
|
|
|
+ fileconflict check.
|
|
|
+- Add --replacefiles option to resolve file conflicts (bnc#673720)
|
|
|
+- version 1.10.4
|
|
|
+* Sun Jan 26 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Jan 24 2014 ma@suse.de
|
|
|
+- Add fileconflicts report (bnc#673720)
|
|
|
+- version 1.10.3
|
|
|
+* Thu Jan 23 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Jan 20 2014 ma@suse.de
|
|
|
+- Zypper must refresh CD/DVD if no raw metadata are present. (bnc#859160)
|
|
|
+- Don't read metadata from CD/DVD repo if --no-check was used (bnc#859160)
|
|
|
+- Fix filelist search to match full paths instead of basenames only (bnc#859211)
|
|
|
+- Fix missing priority in RepoInfo::dumpAsXML (bnc#855845)
|
|
|
+- Rephrase 'Disabling repository...' message (bnc#856809)
|
|
|
+- Hint to SDB and openSUSE release notes
|
|
|
+- Add note that openSUSE only supports "zypper dup" one release at a time.
|
|
|
+- Fix grof .TP commands in manpage (bnc#854784)
|
|
|
+- Fix detailed printing of query matches (bnc#853167)
|
|
|
+- version 1.10.2
|
|
|
+* Thu Jan 16 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 12 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 9 2014 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Nov 21 2013 ma@suse.de
|
|
|
+- Embed item count in summary output (bnc#756195)
|
|
|
+- Fix callback handling if media download error is ignored.
|
|
|
+- Fix detection of multiversion packages in transaction summary (bnc#844373)
|
|
|
+- Improve prompt with more options hidden behind '?' (bnc#844373)
|
|
|
+- Improve computation of unneeded packages
|
|
|
+- Fix message typo (bnc#845619)
|
|
|
+- version 1.10.1
|
|
|
+* Sat Oct 12 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 9 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Oct 7 2013 ma@suse.de
|
|
|
+- Avoid duplicated product entries (bnc#841473)
|
|
|
+- Bump version for Factory
|
|
|
+ 13.1 is continued on SuSE-Code-13_1-Branch
|
|
|
+- version 1.10.0
|
|
|
+* Sat Oct 5 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 2 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Sep 30 2013 ma@suse.de
|
|
|
+- Suppress duplicate "No package matching" messages (bnc#725872)
|
|
|
+- Fix 'zypper --root sh' creating the zypp lockfile outside chroot (bnc#575096)
|
|
|
+- Fix exception thrown if no config file exists, that's no error.
|
|
|
+- correct command help for search option --suggests
|
|
|
+- add --orphaned, --suggested, --recommended, --unneeded to 'zypper packages'
|
|
|
+- Fix inappropriate message about not installed recommend package (bnc#826973)
|
|
|
+- version 1.9.2
|
|
|
+* Sat Sep 28 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 25 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 21 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 18 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 14 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 11 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 7 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 4 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 31 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 28 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 21 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 17 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 14 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 7 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 3 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 31 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jul 27 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 3 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jun 29 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 19 2013 ma@suse.de
|
|
|
+- Set default zypper.log mode to 0640 (bnc#825490)
|
|
|
+- version 1.9.1
|
|
|
+* Sat May 25 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed May 22 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 18 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 11 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed May 8 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri May 3 2013 ma@suse.de
|
|
|
+- Add -E, --show-enabled-only option to list repos/services command
|
|
|
+ (FATE#314994)
|
|
|
+- version 1.9.0
|
|
|
+* Wed May 1 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Apr 27 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 17 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Apr 5 2013 ma@suse.de
|
|
|
+- Added new option 'download-only' to source-install (bnc #640403)
|
|
|
+- Show the right product in summary (bnc#811997)
|
|
|
+- version 1.8.14
|
|
|
+* Wed Apr 3 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Mar 26 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Mar 26 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Mar 19 2013 ma@suse.de
|
|
|
+- disable repo permanently if required by user
|
|
|
+- also search in file list when searching for a path name in
|
|
|
+ provides (bnc #798290)
|
|
|
+- add option --verbose to search command (show details about matches)
|
|
|
+- enable substrings and wildcards for 'info' (bnc #741758)
|
|
|
+- add search for provides, requires, conflicts, suggests and obsoletes,
|
|
|
+ search for capabilities
|
|
|
+- version 1.8.13
|
|
|
+* Sun Mar 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Mar 4 2013 ma@suse.de
|
|
|
+- Fix 'zypper lu' also listing products (bnc#779740)
|
|
|
+- Fix -x printing edition values for arch-old (bnc#793809)
|
|
|
+- version 1.8.12
|
|
|
+* Sun Mar 3 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 28 2013 ma@suse.de
|
|
|
+- fix zypper disregarding zypp.conf cache path settings (bnc#806568)
|
|
|
+- Allow re-install with different arch upon explicit request (bnc#804219)
|
|
|
+- version 1.8.11
|
|
|
+* Thu Feb 28 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 24 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 21 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 17 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 14 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 7 2013 ma@suse.de
|
|
|
+- zypper commandline args must not silently overrule locks
|
|
|
+ (bnc#742633,bnc#788863)
|
|
|
+- version 1.8.10
|
|
|
+* Thu Feb 7 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Feb 4 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jan 30 2013 ma@suse.de
|
|
|
+- Add '--oldpackage' to allow rollback without malicious --force
|
|
|
+ (bnc#795076)
|
|
|
+- Add missing --recommends to verify command (bnc#722551)
|
|
|
+- version 1.8.9
|
|
|
+* Fri Jan 18 2013 ma@suse.de
|
|
|
+- Add source-download command (fate#313445)
|
|
|
+- Fixing permissions is obsolete since zypper refresh wrapper has
|
|
|
+ been dropped (bnc#764119)
|
|
|
+- Fix excess whitespace in install counter (bnc#674572)
|
|
|
+- version 1.8.8
|
|
|
+* Thu Jan 17 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 13 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 10 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 3 2013 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Dec 27 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Dec 20 2012 ma@suse.de
|
|
|
+- Fix install counter (bnc#793285)
|
|
|
+- Add an "--ignore-unknown" global option to zypper.
|
|
|
+- Show installation progress (bnc #779427)
|
|
|
+- version 1.8.7
|
|
|
+* Thu Dec 20 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Dec 16 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Dec 9 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Dec 6 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Nov 22 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Nov 18 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Nov 15 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Nov 13 2012 ma@suse.de
|
|
|
+- Add global '--userdata' option to allow defining transaction ids (fate#312521)
|
|
|
+- BuildRequire libzypp supporting userdata transaction ids.
|
|
|
+- Fix 'whatprovides' output (bnc#787318)
|
|
|
+- version 1.8.6
|
|
|
+* Thu Nov 1 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 27 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Oct 25 2012 ma@suse.de
|
|
|
+- Fix source-install to accept package names and lookup their
|
|
|
+ source package (bnc#785832)
|
|
|
+- version 1.8.5
|
|
|
+* Wed Oct 24 2012 ma@suse.de
|
|
|
+- return dedicated error code if libzypp is locked (bnc #772353)
|
|
|
+- Don't ask for license agreement for openSUSE (bnc #780659)
|
|
|
+- add patch/list-patches option --category to man
|
|
|
+- Fix zypper output if stdout is not a tty (bnc#779716)
|
|
|
+- version 1.8.4
|
|
|
+* Wed Oct 17 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 26 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 22 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 19 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 15 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 12 2012 ma@suse.de
|
|
|
+- Use edition style on table columns in color mode
|
|
|
+- Reload target before executing a new command in 'zypper shell'
|
|
|
+ (bnc #767880)
|
|
|
+- version 1.8.3
|
|
|
+* Tue Sep 11 2012 ma@suse.de
|
|
|
+- show reason for not installed recommended packages (bnc #698766)
|
|
|
+- version 1.8.2
|
|
|
+* Mon Sep 10 2012 ma@suse.de
|
|
|
+- Rephrase misleading sections about zypp.conf and zypper.conf
|
|
|
+ (bnc#777323)
|
|
|
+- Enable zypper-log reading lzma (.xz) compressed logs.
|
|
|
+- properly encode data in XML output (bnc#773641)
|
|
|
+- version 1.8.1
|
|
|
+* Sat Sep 8 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 29 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Aug 2 2012 ma@suse.de
|
|
|
+- Bump version for Factory
|
|
|
+ 1.7.x is continued on SuSE-Code-12_2-Branch
|
|
|
+- version 1.8.0
|
|
|
+* Wed Aug 1 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jul 28 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 18 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 11 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jul 4 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jun 30 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 27 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Jun 25 2012 ma@suse.de
|
|
|
+- Fix spacing bug in progress bar (bnc#674572)
|
|
|
+- consider dual width fonts in output (bnc#766443)
|
|
|
+- Don't treat patches with licensed packages as interactive if
|
|
|
+ - -auto-agree-with-licenses is used (bnc#730824)
|
|
|
+- version 1.7.3
|
|
|
+* Sat Jun 23 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 13 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jun 9 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 6 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Jun 2 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed May 30 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 26 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed May 23 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 19 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed May 16 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 12 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat May 5 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Apr 28 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 25 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Apr 24 2012 ma@suse.de
|
|
|
+- More fixes for multibyte string output (bnc#735016)
|
|
|
+- version 1.7.2
|
|
|
+* Sat Apr 21 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 18 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 18 2012 ma@suse.de
|
|
|
+- Some progress bar fixes
|
|
|
+- Fix eating terminal lines (bnc#735016)
|
|
|
+* Mon Apr 16 2012 ma@suse.de
|
|
|
+- Let zypper remove lock follow addlock with respect to args and behavior (bnc#751976)
|
|
|
+- Typo (bnc#756192)
|
|
|
+- Improve source package related messages upon install and remove (bnc#755239)
|
|
|
+- Pass --root to libzypp early so lockfile is created chroot (bnc#575096)
|
|
|
+- Do not acquire a zypp lock for 'zypper ps' (bnc#703598)
|
|
|
+- Show note about possibly incomplete 'zypper ps' if not run as root (bnc#710872)
|
|
|
+- version 1.7.1
|
|
|
+* Sat Apr 14 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 11 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Apr 10 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Apr 7 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Apr 4 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Mar 1 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Feb 26 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 23 2012 ma@suse.de
|
|
|
+- Fix augeas lense enforcing a non empty anonymous section (bnc#748144)
|
|
|
+* Thu Feb 9 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Feb 2 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 29 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 22 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sun Jan 15 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Jan 12 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jan 11 2012 ma@suse.de
|
|
|
+- Fix man page --cache-dir description. (bnc#738677)
|
|
|
+* Tue Jan 10 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Jan 10 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Jan 10 2012 ma@suse.de
|
|
|
+- Return nonzero (104 - INF_CAP_NOT_FOUND) when query matches no
|
|
|
+ package (bnc#719690)
|
|
|
+* Mon Jan 9 2012 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Dec 22 2011 ma@suse.de
|
|
|
+- Remove setuid root binary /usr/sbin/zypp-refresh-wrapper (bnc#724832)
|
|
|
+* Wed Dec 21 2011 ma@suse.de
|
|
|
+- Fix zypp.conf lens (bnc#687530)
|
|
|
+- New subpackage zypper-aptitude
|
|
|
+- version 1.7.0
|
|
|
+* Mon Dec 19 2011 ma@suse.de
|
|
|
+- Update manpage to give some repo URI examples (bnc#680630)
|
|
|
+* Tue Dec 6 2011 ma@suse.de
|
|
|
+- Print patch summary (bnc#733167)
|
|
|
+- zypper-log: fix regex to match hostnames with embeded '-' too.
|
|
|
+- version 1.6.18
|
|
|
+* Thu Dec 1 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Nov 30 2011 ma@suse.de
|
|
|
+- Eat trailing whitespace in zypper.conf (bnc#687530)
|
|
|
+- Fix some static initializer issues
|
|
|
+* Sun Nov 27 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Nov 22 2011 dheidler@suse.de
|
|
|
+- zypper-log: fixed bnc#732065:
|
|
|
+ Don't truncate output, when writing to pipe
|
|
|
+- version 1.6.17
|
|
|
+* Sun Nov 20 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Nov 17 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Mon Nov 14 2011 ma@suse.de
|
|
|
+- Never evaluate package support status on openSUSE (bnc#715057)
|
|
|
+* Sun Nov 13 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Nov 10 2011 ma@suse.de
|
|
|
+- Relax parsing obs:// urls (bnc#713521)
|
|
|
+* Sun Nov 6 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Nov 4 2011 ma@suse.de
|
|
|
+- zypper-log: fix regex and on the fly support searching yast logs too
|
|
|
+* Thu Nov 3 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 29 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Thu Oct 27 2011 dheidler@suse.de
|
|
|
+- Change zypper-log arch to noarch
|
|
|
+* Wed Oct 26 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 19 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 15 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 12 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Oct 8 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Oct 5 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 28 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 17 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Sat Sep 17 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 14 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Sep 13 2011 ma@suse.de
|
|
|
+- Fix 'zypper info's report of package support status (bnc#651614)
|
|
|
+- version 1.6.16
|
|
|
+* Sat Sep 10 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Sat Sep 10 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Sep 7 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Wed Sep 7 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Sep 3 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Sat Sep 3 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 31 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Aug 30 2011 ma@suse.de
|
|
|
+- Restore default behavior for newly create repos to have gpg checks
|
|
|
+ enabled. This was accidentally disabled in 1.6.2. (bnc#714910,
|
|
|
+ bnc#524787)
|
|
|
+- version 1.6.15
|
|
|
+* Wed Aug 24 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Mon Aug 22 2011 ma@suse.de
|
|
|
+- Update sle-zypper-po.tar.bz2
|
|
|
+* Wed Aug 17 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 13 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Sat Aug 6 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Aug 3 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Fri Jul 22 2011 ma@suse.de
|
|
|
+- Fix missing include header.
|
|
|
+* Thu Jul 21 2011 ma@suse.de
|
|
|
+- Fix 'zypper search' xml output (bnc#687529)
|
|
|
+- version 1.6.14
|
|
|
+* Tue Jul 19 2011 dheidler@suse.de
|
|
|
+- zypper-log: require python2.6 and argparse insted of 2.7
|
|
|
+ on suse < 11.4
|
|
|
+- zypper-log: fix dependencies for other distros
|
|
|
+* Wed Jul 13 2011 dheidler@suse.de
|
|
|
+- zypper-log: view better error msg when logfile doesn't exist
|
|
|
+* Wed Jul 6 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 29 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Tue Jun 28 2011 dheidler@suse.de
|
|
|
+- better error msg for date format missmatch in zypper-log
|
|
|
+- 1.6.13
|
|
|
+* Tue Jun 28 2011 dheidler@suse.de
|
|
|
+- enable date option also for PID-Query in zypper-log
|
|
|
+- check date syntax in zypper-log
|
|
|
+- 1.6.12
|
|
|
+* Mon Jun 27 2011 dheidler@suse.de
|
|
|
+- Catch Broken-PIPE Exception in zypper-log
|
|
|
+- 1.6.11
|
|
|
+* Sat Jun 18 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 15 2011 dheidler@suse.de
|
|
|
+- Add zypper-log tool (cli to access zypper logfile)
|
|
|
+* Thu Jun 9 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 8 2011 ma@suse.de
|
|
|
+- Update zypper-po.tar.bz2
|
|
|
+* Wed Jun 8 2011 ma@suse.de
|
|
|
+- Adapt to changed ZYppCommitResult api.
|
|
|
+* Mon Jun 6 2011 dheidler@suse.de
|
|
|
+- fix crashing zypper when there are double config entries
|
|
|
+ in zypper.conf (bnc#614646)
|
|
|
+- 1.6.10
|
|
|
+* Tue May 31 2011 ma@suse.de
|
|
|
+- No longer use deprecated ZYppCommitResult methods.
|
|
|
+- 1.6.9
|
|
|
+* Tue May 31 2011 ma@suse.de
|
|
|
+- Correctly print exception history (bnc#655402)
|
|
|
+* Mon May 30 2011 dheidler@suse.de
|
|
|
+- use the tag-based patch-interactive interface of libzypp
|
|
|
+- 1.6.8
|
|
|
+* Wed May 25 2011 dheidler@suse.de
|
|
|
+- rename an option
|
|
|
+ old: --reboot-not-interact
|
|
|
+ new: --non-interactive-include-reboot-patches
|
|
|
+- 1.6.7
|
|
|
+* Tue May 24 2011 dheidler@suse.de
|
|
|
+- add option --reboot-not-interact (bnc#665853)
|
|
|
+- allow installation of paches wich require a reboot
|
|
|
+ non-interactively
|
|
|
+- 1.6.6
|
|
|
+* Thu May 19 2011 dheidler@suse.de
|
|
|
+- don't install prompt.h - use "zypper --promptids" instead
|
|
|
+ (bnc#637352)
|
|
|
+- 1.6.5
|
|
|
+* Wed May 18 2011 dheidler@suse.de
|
|
|
+- print warning when searching in disabled repo (bnc#661976)
|
|
|
+- 1.6.4
|
|
|
+* Fri May 13 2011 ma@suse.de
|
|
|
+- fix get_installed_providers by capability not to use selectables
|
|
|
+ (bnc#693576)
|
|
|
+- 1.6.3
|
|
|
+* Thu May 5 2011 dheidler@suse.de
|
|
|
+- add option to set/change gpgcheck flag for repos (bnc#524787)
|
|
|
+- 1.6.2
|
|
|
+* Tue Apr 26 2011 dheidler@suse.de
|
|
|
+- suppress success message, when adding lock failed (bnc#539159)
|
|
|
+- 1.6.1
|
|
|
+* Mon Apr 18 2011 dmacvicar@suse.de
|
|
|
+- fate#312127 list patches until certain date only
|
|
|
+* Fri Apr 15 2011 ma@suse.de
|
|
|
+- Fix list-patches/updates xml output to include architecture and
|
|
|
+ patch status information (bnc#687529)
|
|
|
+- Fix search xml output to actually write xml. (bnc#687529)
|
|
|
+- 1.5.8
|
|
|
+* Tue Apr 12 2011 dheidler@suse.de
|
|
|
+- use old repo cache when refresh failed for non-root users
|
|
|
+ (see bnc#683509)
|
|
|
+- 1.5.7
|
|
|
+* Mon Apr 11 2011 dheidler@suse.de
|
|
|
+- detect terminal linebreak when printing status (bnc#304282)
|
|
|
+- 1.5.6
|
|
|
+* Thu Apr 7 2011 dheidler@suse.de
|
|
|
+- zypper patch/lp category filter (fate#310085)
|
|
|
+- 1.5.5
|
|
|
+* Fri Mar 18 2011 dmacvicar@suse.de
|
|
|
+- zypper -n display license interactively (bnc#660001)
|
|
|
+ Patch by Bernhard Wiedemann <bwiedemann@suse.de>
|
|
|
+- 1.5.4
|
|
|
+* Mon Jan 17 2011 ma@suse.de
|
|
|
+- Don't perform automatic service refresh if non-root user.
|
|
|
+* Fri Jan 14 2011 ma@suse.de
|
|
|
+- Report service plugin excetions during refresh, but continue.
|
|
|
+* Thu Dec 23 2010 dheidler@suse.de
|
|
|
+- view mirrorlist-url when there is no baseurl set (in the repo-file)
|
|
|
+- 1.5.3
|
|
|
+* Mon Dec 6 2010 dheidler@suse.de
|
|
|
+- Try not to fail, when there is no baseurl (bnc#650920)
|
|
|
+- 1.5.2
|
|
|
+* Tue Nov 30 2010 jkupec@suse.cz
|
|
|
+- do not autorefresh services if --no-refresh is given
|
|
|
+- load target before refreshing services
|
|
|
+* Tue Nov 23 2010 ma@suse.de
|
|
|
+- Print error message if 'zypper ps' fails. (bnc #655402)
|
|
|
+* Mon Nov 8 2010 jkupec@suse.cz
|
|
|
+- modifyrepo: exit with error if repo not found (bnc #650822)
|
|
|
+* Sun Oct 31 2010 jkupec@suse.cz
|
|
|
+- Fixed multiversion packages incorrectly shown in "not updated"
|
|
|
+ list (bnc #629197).
|
|
|
+* Sat Oct 30 2010 jkupec@suse.cz
|
|
|
+- Summary: fixed not shown "not updated" list when there were no
|
|
|
+ installable updates when doing 'zypper up' (bnc #594282)
|
|
|
+* Fri Oct 29 2010 jkupec@suse.cz
|
|
|
+- Clear keyboard buffer before showing the prompt message
|
|
|
+ to avoid unwanted <enter> hits (bnc #649248)
|
|
|
+* Mon Oct 25 2010 jkupec@suse.cz
|
|
|
+- Tell about download-only switched on (bnc #648606)
|
|
|
+* Wed Oct 20 2010 jkupec@suse.cz
|
|
|
+- zypper in --force plainpkgname (no repo,EVRA) to request install
|
|
|
+ of the highest version regardless of vendor/deps/locks.
|
|
|
+ (bnc #483426)
|
|
|
+- 1.5.1
|
|
|
+* Tue Oct 19 2010 jkupec@suse.cz
|
|
|
+- Proper hint for forcing downgrade of a package (bnc #620377)
|
|
|
+* Tue Oct 19 2010 jkupec@suse.cz
|
|
|
+- Summary: ignore arch changes in the "not installed updates" list
|
|
|
+ (bnc #646410)
|
|
|
+* Mon Oct 18 2010 jkupec@suse.cz
|
|
|
+- Make repository list data (repos/lr) configurable (bnc #543510)
|
|
|
+- Also load the solv file when refreshing to ensure it was created
|
|
|
+ with proper version of satsolver-tools (bnc #456718)
|
|
|
+* Mon Oct 18 2010 jkupec@suse.cz
|
|
|
+- Fixed 'patch --skip-interactive' (bnc #647214)
|
|
|
+* Fri Oct 15 2010 jkupec@suse.cz
|
|
|
+- Auto-refresh services before loading repos.
|
|
|
+* Thu Oct 14 2010 jkupec@suse.cz
|
|
|
+- Make sure package gets installed from given .rpm file, not
|
|
|
+ repository (bnc #524280)
|
|
|
+- Better message in case non-root tries to access
|
|
|
+ /etc/zypp/credentials.d to get credentials for authenticated URL
|
|
|
+ (bnc #448736)
|
|
|
+* Tue Oct 12 2010 jkupec@suse.cz
|
|
|
+- Skip locked patches in 'patch' and 'list-patches' (bnc #420606)
|
|
|
+- Added Status to 'lp --issues' table
|
|
|
+* Mon Oct 11 2010 jkupec@suse.cz
|
|
|
+- Do not report changing to equivalent vendors as a vendor change
|
|
|
+ (bnc #605380)
|
|
|
+- In install summary, show version for packages which have multiple
|
|
|
+ versions installed (bnc #644820)
|
|
|
+- 1.5.0
|
|
|
+* Wed Oct 6 2010 jkupec@suse.cz
|
|
|
+- Use original user package string when reporting problems
|
|
|
+ (bnc #642051)
|
|
|
+* Mon Sep 20 2010 jkupec@suse.cz
|
|
|
+- Fixed unrecognized patchname-with-version (bnc #640399)
|
|
|
+* Thu Sep 9 2010 jkupec@suse.cz
|
|
|
+- Fixed zypper.conf parsing: allow white space before key=value.
|
|
|
+* Fri Aug 13 2010 dmacvicar@suse.de
|
|
|
+- add -lrt to build on Fedora
|
|
|
+* Tue Jul 27 2010 ma@suse.de
|
|
|
+- Fix evaluation of package specs containing edition or arch.
|
|
|
+ (bnc#624320)
|
|
|
+- 1.4.7
|
|
|
+* Fri Jul 23 2010 jkupec@suse.cz
|
|
|
+- Fixed wiki links in the man page (bnc #623860)
|
|
|
+* Thu Jul 15 2010 jkupec@suse.cz
|
|
|
+- Use getpass() from stduni.h instead of our own function.
|
|
|
+ Fixes bnc #619196
|
|
|
+- updated translations
|
|
|
+- 1.4.6
|
|
|
+* Tue Jul 13 2010 jkupec@suse.cz
|
|
|
+- Show support level in package info when running on SLE
|
|
|
+ (bnc #599154)
|
|
|
+* Fri Jul 2 2010 ma@suse.de
|
|
|
+- Let zypper manpage be found via `apropos`. (bnc#613198)
|
|
|
+* Thu Jun 10 2010 jkupec@suse.cz
|
|
|
+- Enabled obs:// URI in addrepo (bnc #423098).
|
|
|
+- updated translations
|
|
|
+- 1.4.5
|
|
|
+* Mon May 17 2010 jkupec@suse.cz
|
|
|
+- --clean-deps added to 'remove' command. The otion tells the
|
|
|
+ solver to remove any packages that become unneeded after removing
|
|
|
+ a packages that depended on them.
|
|
|
+ - -no-clean-deps also added, to override zypp.conf's
|
|
|
+ solver.cleandepsOnRemove setting.
|
|
|
+- Check for running pkgkit only if acquiring of zypp lock actually
|
|
|
+ fails (bnc #580513)
|
|
|
+- Use --cache-dir as base for other --*-cache-dir options.
|
|
|
+ - -pkg-cache-dir and --solv-cache-dir added
|
|
|
+- If name-version is auto-split, don't try caps (bnc #600471)
|
|
|
+- updated translations
|
|
|
+- 1.4.4
|
|
|
+* Tue May 11 2010 ma@suse.de
|
|
|
+- Show gpg keys creation and expire dates when asking to trust.
|
|
|
+* Thu May 6 2010 jkupec@suse.cz
|
|
|
+- Fixed empty 'not updated' lists (bnc #600134).
|
|
|
+- 1.4.3
|
|
|
+* Mon May 3 2010 ma@suse.de
|
|
|
+- Don't suggest "zypper ps" after update, if zypper itself is the only
|
|
|
+ process with deleted files open.
|
|
|
+* Wed Apr 28 2010 ma@suse.de
|
|
|
+- Fix 'zypper ps' not printing the first file twice. (bnc#599265)
|
|
|
+* Wed Apr 28 2010 ma@suse.de
|
|
|
+- Fix segv when printing solver feedback. (bnc#600236)
|
|
|
+* Mon Apr 26 2010 jkupec@suse.cz
|
|
|
+- Fixed ignored --download-* options (bnc #598268).
|
|
|
+* Mon Apr 19 2010 jkupec@suse.cz
|
|
|
+- Package selection code rewritten. Enabled unified package
|
|
|
+ arguments ([+/-]repo:type:nameOPversion.arch) for in/up/rm
|
|
|
+ commands.
|
|
|
+- 1.4.2
|
|
|
+* Thu Apr 1 2010 jkupec@suse.cz
|
|
|
+- Merged rpm .spec file cleanup (Pavol Rusnák)
|
|
|
+- Fixed crash if no available packages found in repos (bnc #591760)
|
|
|
+- 1.4.1
|
|
|
+* Fri Mar 26 2010 jkupec@suse.cz
|
|
|
+- --label added to 'targetos' command (bnc #586303)
|
|
|
+* Tue Mar 23 2010 jkupec@suse.cz
|
|
|
+- Fixed "removed locks:" message not translated (bnc #581332)
|
|
|
+* Tue Mar 23 2010 jkupec@suse.cz
|
|
|
+- Fixed 'lp --issues' and 'patch --cve #' (bnc #589640)
|
|
|
+* Thu Mar 18 2010 jkupec@suse.cz
|
|
|
+- Showing full product name in summary, license text, and products
|
|
|
+ table (bnc #589333)
|
|
|
+* Wed Mar 17 2010 jkupec@suse.cz
|
|
|
+- Reporting why specified selectable can't be updated
|
|
|
+ in 'zypper in packages' or 'zypper up packages' (bnc #522223)
|
|
|
+ In case of 'zypper up' the summary also shows a list of packages
|
|
|
+ that have update candidates, but will not get upgraded.
|
|
|
+- 1.4.0
|
|
|
+* Wed Mar 3 2010 jkupec@suse.cz
|
|
|
+- Ignoring trailing slash when matching repos by URL (bnc #585082)
|
|
|
+* Tue Mar 2 2010 jkupec@suse.cz
|
|
|
+- Checking for running PackageKit. If it's running zypper offers
|
|
|
+ to suggest to it to quit (bnc#580513).
|
|
|
+* Mon Mar 1 2010 jkupec@suse.cz
|
|
|
+- Show installed packages only from specified repos when
|
|
|
+ 'zypper [-i|-u] -r repo' is used (bnc#467106)
|
|
|
+- 1.2.21
|
|
|
+* Thu Feb 25 2010 jkupec@suse.cz
|
|
|
+- Added a few forgotten strings for translation (bnc #581332)
|
|
|
+* Thu Feb 25 2010 ma@suse.de
|
|
|
+- Fix SEGV in Summary::writeResolvableList
|
|
|
+- 1.2.20
|
|
|
+* Tue Feb 23 2010 jkupec@suse.cz
|
|
|
+- Avoid a newline in 'zypper --quiet list-patches' (bnc #523573)
|
|
|
+* Tue Feb 23 2010 jkupec@suse.cz
|
|
|
+- Showing packages that need additional customer contract
|
|
|
+ separately in the installation summary (bnc #581926 c#6)
|
|
|
+* Mon Feb 22 2010 jkupec@suse.cz
|
|
|
+- Avoiding confirmation of unchanged license on upgrade
|
|
|
+ (bnc #394396)
|
|
|
+- 1.2.19
|
|
|
+* Sun Feb 21 2010 jkupec@suse.cz
|
|
|
+- clean --all: clean also garbage and zypper cache (bnc #467693)
|
|
|
+- 1.2.18
|
|
|
+* Fri Feb 19 2010 jkupec@suse.cz
|
|
|
+- Fixed broken --type (bnc #580571)
|
|
|
+* Wed Feb 10 2010 ma@suse.de
|
|
|
+- Fix 'zypper products' failing to list installed products under
|
|
|
+ certain conditions (bnc #578721)
|
|
|
+- Fix SEGV if $HOME or $PWD are unset in the environment (bnc #578684)
|
|
|
+- 1.2.17
|
|
|
+* Mon Feb 8 2010 jkupec@suse.cz
|
|
|
+- Replaced .po files in source tree by tarballs.
|
|
|
+- updated translations + SLE11-SP1 translations added
|
|
|
+- 1.2.16
|
|
|
+* Wed Feb 3 2010 jkupec@suse.cz
|
|
|
+- Exit if missing required option argument.
|
|
|
+- Start using Capability::guessPackageSpec to parse package
|
|
|
+ arguments.
|
|
|
+- man page updated (bnc #576080)
|
|
|
+- 1.2.15
|
|
|
+* Sat Jan 30 2010 jkupec@suse.cz
|
|
|
+- Fixed ignored .arch when specifying packages as name.arch
|
|
|
+ (bnc #561294)
|
|
|
+* Wed Jan 27 2010 jkupec@suse.cz
|
|
|
+- Setting --root correctly when working with lock (reported by Uwe)
|
|
|
+* Wed Jan 27 2010 jkupec@suse.cz
|
|
|
+- Correctly abbreviate strings with non-ascii characters in tables
|
|
|
+ (bnc #393723)
|
|
|
+* Thu Jan 7 2010 jkupec@suse.cz
|
|
|
+- Avoid overwriting progress lines with other messages
|
|
|
+ (bnc #495977)
|
|
|
+* Wed Jan 6 2010 jkupec@suse.cz
|
|
|
+- Fixed --no-force-resolution help text (bnc #535816)
|
|
|
+* Wed Dec 9 2009 jkupec@suse.cz
|
|
|
+- zypper.conf: main.showAlias option added to choose between
|
|
|
+ alias and name for showing repos
|
|
|
+* Tue Dec 8 2009 jkupec@suse.cz
|
|
|
+- search, pt: hide patterns flagged user invisible (bnc #538152)
|
|
|
+* Fri Dec 4 2009 jkupec@suse.cz
|
|
|
+- Report invalid alias exception from libzypp (bnc #473834)
|
|
|
+- 1.2.14
|
|
|
+* Thu Dec 3 2009 jkupec@suse.cz
|
|
|
+- Match repositories also by name wherever repository is expected
|
|
|
+ (bnc #462697).
|
|
|
+* Thu Dec 3 2009 jkupec@suse.cz
|
|
|
+- Show truely all updates when --all is used (bnc #557557)
|
|
|
+- 1.2.13
|
|
|
+* Wed Dec 2 2009 jkupec@suse.cz
|
|
|
+- new prompt options for media errors:
|
|
|
+ * cd/dvd: 'e' to eject selected drive (bnc #279045)
|
|
|
+ * https: 's' to disable SSL CA check (bnc #223512)
|
|
|
+* Fri Nov 27 2009 jkupec@suse.cz
|
|
|
+- solver.forceResolutionCommands added to zypper.conf to
|
|
|
+ configure commands in which forceResolve solver option
|
|
|
+ should be set (bnc #549940)
|
|
|
+- --download-* aliases added for --download <mode> option values
|
|
|
+- 1.2.12
|
|
|
+* Fri Nov 20 2009 jkupec@suse.cz
|
|
|
+- --download option added to in, up, dup, ve, and patch commands
|
|
|
+ to set the package download mode ad-hoc. Available download
|
|
|
+ modes: only, in-advance, in-heaps, as-needed.
|
|
|
+- Show update notifications after installation (fate #301175)
|
|
|
+- 1.2.11
|
|
|
+* Fri Nov 20 2009 jkupec@suse.cz
|
|
|
+- dist-upgrade: warn about muliple repos and show hint. This
|
|
|
+ is a temporary solution to fate #305553.
|
|
|
+* Thu Nov 19 2009 jkupec@suse.cz
|
|
|
+- Show recommended and suggested packages in summary (fate #303493)
|
|
|
+* Tue Nov 10 2009 jkupec@suse.cz
|
|
|
+- --gpg-auto-import-keys global option added (fate #307087)
|
|
|
+* Tue Nov 10 2009 jkupec@suse.cz
|
|
|
+- --with-interactive option added to 'patch' command (bnc #497711)
|
|
|
+* Fri Nov 6 2009 ma@suse.de
|
|
|
+- Fix zypper to use up-to-date RepoInfos. (bnc #544432)
|
|
|
+- 1.2.10
|
|
|
+* Fri Nov 6 2009 jkupec@suse.cz
|
|
|
+- fixed wrong package counting during installation (bnc #545295)
|
|
|
+* Fri Nov 6 2009 ma@suse.de
|
|
|
+- al/rl: Support 'kind:name' notation if -t is not given. Also required
|
|
|
+ to remove a specific lock as rl does not yet support -t. (bnc 551956)
|
|
|
+* Wed Nov 4 2009 jkupec@suse.cz
|
|
|
+- updated translations
|
|
|
+* Tue Nov 3 2009 ma@suse.de
|
|
|
+- Fix typo in man page. (bnc #552265)
|
|
|
+* Mon Nov 2 2009 ma@suse.de
|
|
|
+- Prevent clipping lines when output is redirected. (bnc #551744)
|
|
|
+- 1.2.9
|
|
|
+* Fri Oct 30 2009 ma@suse.de
|
|
|
+- Fix 'zypper in --from' selecting the wrong packages. (bnc #548392)
|
|
|
+- 1.2.8
|
|
|
+* Fri Oct 23 2009 ma@suse.de
|
|
|
+- Fix 'dup --from' not to perform a complete distupgrade. (bnc #549490)
|
|
|
+- Require at least libzypp version used at buildtime. (bnc #549205)
|
|
|
+- 1.2.7
|
|
|
+* Fri Oct 23 2009 jkupec@suse.cz
|
|
|
+- Fixed unintentional hiding of the 'p' install summary option
|
|
|
+ (bnc #549183)
|
|
|
+* Wed Oct 21 2009 ma@suse.de
|
|
|
+- Fix abort on 'zypper lu -a'. (bnc #548752)
|
|
|
+- 1.2.6
|
|
|
+* Mon Oct 12 2009 jkupec@suse.cz
|
|
|
+- 'zypper lr' now shows details about repos specified as arguments.
|
|
|
+- Added '--from' to 'zypper dup' to do the upgrade from
|
|
|
+ specified repos only.
|
|
|
+- Translations updated
|
|
|
+- 1.2.5
|
|
|
+* Tue Sep 29 2009 jkupec@suse.cz
|
|
|
+- Fixed wrong update candidate selection (bnc #539360)
|
|
|
+- Translations updated
|
|
|
+* Wed Sep 23 2009 jkupec@suse.cz
|
|
|
+- Fixed troubleshooting wiki link (bnc #533606)
|
|
|
+* Mon Sep 21 2009 jkupec@suse.cz
|
|
|
+- 'zypper ps' added to list processes using deleted files
|
|
|
+ (fate #300763). This is instead of showing the list after each
|
|
|
+ commit.
|
|
|
+* Fri Sep 18 2009 ma@suse.de
|
|
|
+- Remove connection to dead zypp::ScanDBReport.
|
|
|
+* Wed Sep 16 2009 ma@suse.de
|
|
|
+- Fix zyppers installRecommends option not following the zypp.conf
|
|
|
+ setting. (bnc #539579)
|
|
|
+* Thu Sep 10 2009 jkupec@suse.cz
|
|
|
+- Fixed wrong table column width computation causing excessive
|
|
|
+ output (bnc #534795)
|
|
|
+* Thu Sep 3 2009 jkupec@suse.cz
|
|
|
+- Showing running processes using files deleted by recent package
|
|
|
+ upgrade/downgrade or removal (fate #300763).
|
|
|
+* Thu Aug 27 2009 mvidner@suse.cz
|
|
|
+- 1.2.3, by popular demand
|
|
|
+* Mon Jul 27 2009 jkupec@suse.cz
|
|
|
+- Fixed installing rpms with epoch (bnc #404048)
|
|
|
+* Mon Jul 27 2009 jkupec@suse.cz
|
|
|
+- --download-only option added for in, up, patch, dup, and ve
|
|
|
+ command (fate #302159)
|
|
|
+* Wed Jul 15 2009 jkupec@suse.cz
|
|
|
+- list-updates: show also current installed version (bnc #466599)
|
|
|
+- 1.2.2
|
|
|
+* Wed Jul 15 2009 jkupec@suse.cz
|
|
|
+- Manage updates for bugzilla and CVE issues (fate #305503).
|
|
|
+ Following options added to lu and patch commands:
|
|
|
+ * list-updates: --bugzilla, --cve, --issues, --all
|
|
|
+ * patch: --bugzilla, --cve options added
|
|
|
+ See 'man zypper' for more details.
|
|
|
+* Thu Jul 9 2009 jkupec@suse.cz
|
|
|
+- Enable use of name-version.arch all together (bnc #519312).
|
|
|
+- Improved description in .spec file
|
|
|
+- Show verbose summary when -v is used (bnc #517171).
|
|
|
+ If -v is used, version are shown, if -vv is used, all the package
|
|
|
+ details are shown in the installation summary.
|
|
|
+* Wed Jul 8 2009 ma@suse.de
|
|
|
+- Remove references to deprecated UpgradeStatistics.
|
|
|
+* Mon Jun 29 2009 jkupec@suse.cz
|
|
|
+- Updated translations.
|
|
|
+- 1.2.1
|
|
|
+* Mon Jun 29 2009 jkupec@suse.cz
|
|
|
+- now 'list-patches' does not hide other updates if software
|
|
|
+ management updates (which are to be installed before any other)
|
|
|
+ are available. (bnc #503068)
|
|
|
+- fixed a bug in selection of updates in 'zypper patch'
|
|
|
+ (bnc #498814)
|
|
|
+* Tue Jun 23 2009 jkupec@suse.cz
|
|
|
+- Handle multiple versions of the same package in summary
|
|
|
+ (bnc #389128).
|
|
|
+* Mon Jun 8 2009 jkupec@suse.cz
|
|
|
+- some code cleanup and fixes
|
|
|
+- show arch & repo in 'products'
|
|
|
+- 1.2.0
|
|
|
+* Thu Jun 4 2009 ma@suse.de
|
|
|
+- Adapt to libzypp-6.8.0 api changes.
|
|
|
+* Fri May 22 2009 jkupec@suse.cz
|
|
|
+- Fixed some help issues (bnc #505938)
|
|
|
+* Sun Apr 26 2009 jkupec@suse.cz
|
|
|
+- config file handling improved, --config option added to load
|
|
|
+ custom config files instead of the default ones.
|
|
|
+ Override priority order with --config (highest to lowest):
|
|
|
+ * CLI options
|
|
|
+ * --config custom/zypper.conf
|
|
|
+ * zypp.conf
|
|
|
+* Sat Apr 25 2009 jkupec@suse.cz
|
|
|
+- Highlighting package count numbers in the summary.
|
|
|
+* Wed Apr 15 2009 jkupec@suse.cz
|
|
|
+- Fixed requesting of perl symbols in 'install'. E.g.
|
|
|
+ zypper install 'perl(MIME::Lite)' (bnc #433679)
|
|
|
+- Corrected list of repo priority in 'repos' and 'services' command
|
|
|
+ (bnc #436688) (Susanne Oberhauser <froh@novell.com>)
|
|
|
+* Thu Apr 2 2009 jkupec@suse.cz
|
|
|
+- configuration file support added. Global settings go to
|
|
|
+ /etc/zypp/zypper.conf, user's to $HOME/.zypper.conf.
|
|
|
+ Override priority order (highest to lowest):
|
|
|
+ * CLI options
|
|
|
+ * --config custom/zypper.conf
|
|
|
+ * $HOME/.zypper.conf
|
|
|
+ * /etc/zypp/zypper.conf
|
|
|
+ * zypp.conf
|
|
|
+- configurable colorized output added
|
|
|
+- improved installation summary (bnc #389128). Allows to view
|
|
|
+ version, arch, repo, vendor; view the summary in pager,
|
|
|
+ shows installed package counts
|
|
|
+- xmloutput now writes also old version and old arch in summary
|
|
|
+ (bnc #331060)
|
|
|
+- zypper.conf: solver/installRecommends option added, along with
|
|
|
+ - -recommends option for in, up, patch, ve, and dup commands
|
|
|
+ to override zypper.conf setting. If not used, libzypp's setting
|
|
|
+ is used. (bnc #478144)
|
|
|
+* Wed Mar 18 2009 jkupec@suse.cz
|
|
|
+- show dialog's default option in parentheses instead
|
|
|
+ of capitalizing it.
|
|
|
+* Thu Mar 12 2009 jkupec@suse.cz
|
|
|
+- turn off colors by default (to be configurable in zypper.conf)
|
|
|
+ (bnc #483349)
|
|
|
+- 1.1.1
|
|
|
+* Wed Mar 11 2009 jkupec@suse.cz
|
|
|
+- --requires and --recommends added to info command
|
|
|
+ (Marcus Hüwe <suse-tux@gmx.de>)
|
|
|
+* Tue Mar 10 2009 jkupec@suse.cz
|
|
|
+- Fixed noarch->anyarch and vice-versa update via 'zypper up foo'
|
|
|
+ (bnc #483179).
|
|
|
+- Fixed list-updates showing not-yet-installed packages
|
|
|
+ (bnc #483910).
|
|
|
+- 1.1.0
|
|
|
+* Fri Mar 6 2009 jkupec@suse.cz
|
|
|
+- Introduced colors.
|
|
|
+- Removed some forgotten control chars from non-terminal output
|
|
|
+ (bnc #440822).
|
|
|
+- Fixed FindReadline to find shared lib, not static.
|
|
|
+- Bash completion: allow spaces in repository aliases
|
|
|
+ (werner@suse.de) (bnc #474361)
|
|
|
+* Tue Feb 24 2009 ma@suse.de
|
|
|
+- Let 'zypper clean' keep the raw metadata cache of CD/DVD based
|
|
|
+ repositories. We'd need the CD/DVD again to recreate the data.
|
|
|
+ If this is actually desired, explicitly remove an recreate the
|
|
|
+ CD/DVD based repository. (bnc #476429).
|
|
|
+* Sun Feb 15 2009 jkupec@suse.cz
|
|
|
+- Writing additional rpm output after installing/removing packages
|
|
|
+ (bnc #369450)
|
|
|
+- Added ability to change URI in medium error dialog. Dialog help
|
|
|
+ texts added.
|
|
|
+* Thu Feb 12 2009 jkupec@suse.cz
|
|
|
+- Bash completion: added completion of global options and
|
|
|
+ locks for removelock command (jreidinger)
|
|
|
+* Thu Feb 12 2009 jkupec@suse.cz
|
|
|
+- Fixed localization and xml output of a/r/i prompt with timeout.
|
|
|
+* Wed Feb 11 2009 jkupec@suse.cz
|
|
|
+- Bash completion improved, allows completion after command
|
|
|
+ shorthands, multiple options, option shorthands, repository
|
|
|
+ aliases. (jreidinger)
|
|
|
+- Avoiding reading of input in a/r/i prompt with timeout in
|
|
|
+ non-interactive mode (bnc #469872)
|
|
|
+* Tue Jan 27 2009 jkupec@suse.cz
|
|
|
+- Adapted authetication callback for non-curl URLs (bnc #460970)
|
|
|
+* Thu Jan 15 2009 jkupec@suse.cz
|
|
|
+- fixed typo (bnc #447594)
|
|
|
+* Wed Jan 14 2009 jkupec@suse.cz
|
|
|
+- check for SLE platform on runtime using base product name
|
|
|
+ instead of compile time (adapted fate #305057)
|
|
|
+* Wed Jan 14 2009 jkupec@suse.cz
|
|
|
+- modifyrepo - accept multiple arguments
|
|
|
+* Mon Jan 12 2009 jkupec@suse.cz
|
|
|
+- some text and man page corrections
|
|
|
+* Mon Jan 12 2009 jkupec@suse.cz
|
|
|
+- fixed list-patches/patch inconsistency in determining needed
|
|
|
+ patches (bnc #464458)
|
|
|
+* Tue Dec 16 2008 jkupec@suse.cz
|
|
|
+- translations update
|
|
|
+- 1.0.3
|
|
|
+* Thu Dec 11 2008 jkupec@suse.cz
|
|
|
+- fixed typo (bnc #458248)
|
|
|
+- r11924
|
|
|
+* Fri Dec 5 2008 jkupec@suse.cz
|
|
|
+- man page update (fixes also bnc #450857)
|
|
|
+* Mon Dec 1 2008 jkupec@suse.cz
|
|
|
+- fixed handling of source-install -d and -D options (bnc #428131)
|
|
|
+- r11843
|
|
|
+* Fri Nov 28 2008 jkupec@suse.cz
|
|
|
+- translations update
|
|
|
+- 1.0.2
|
|
|
+* Mon Nov 24 2008 jkupec@suse.cz
|
|
|
+- fixed segfault in 'info' when looking for package to show
|
|
|
+ (bnc #448247)
|
|
|
+- r11795
|
|
|
+- 1.0.1
|
|
|
+* Mon Nov 24 2008 jkupec@suse.cz
|
|
|
+- fixed generation of solver testcases for verify and dist-upgrade
|
|
|
+- r11789
|
|
|
+* Wed Nov 19 2008 jkupec@suse.cz
|
|
|
+- encode user-supplied URL strings before using them in the Url object
|
|
|
+ (bnc #446395, bnc #444267)
|
|
|
+- r11722
|
|
|
+* Tue Nov 18 2008 jkupec@suse.cz
|
|
|
+- select packages to show in 'info' like the install/update command
|
|
|
+ does (bnc #437854) (r11701)
|
|
|
+- translations update
|
|
|
+- 1.0.0
|
|
|
+* Mon Nov 17 2008 jkupec@suse.cz
|
|
|
+- avoid removing of installed local rpms (bnc #445504)
|
|
|
|