platform/upstream/zypper.git
16 years ago- removed deprecated 'xu', replaced by
Jan Kupec [Thu, 26 Jun 2008 12:54:36 +0000 (12:54 +0000)]
- removed deprecated 'xu', replaced by
  zypper --xmlout install -t package -t patch

16 years ago- one more string
Jan Kupec [Wed, 25 Jun 2008 14:08:56 +0000 (14:08 +0000)]
- one more string

16 years ago- fixed and added new texts
Jan Kupec [Wed, 25 Jun 2008 12:27:47 +0000 (12:27 +0000)]
- fixed and added new texts

16 years ago- there were quite some contributions from Pepa (Josef) :O)
Jan Kupec [Tue, 24 Jun 2008 19:29:02 +0000 (19:29 +0000)]
- there were quite some contributions from Pepa (Josef) :O)

16 years ago- source tree reorganized, several file renames
Jan Kupec [Tue, 24 Jun 2008 19:21:31 +0000 (19:21 +0000)]
- source tree reorganized, several file renames

-----

#!/bin/bash

RENAMES_LIST=../renames-list
rm $RENAMES_LIST
svn mv zypper.h Zypper.h
svn mv zypper.cc Zypper.cc
svn mv zypper-command.h Command.h
svn mv zypper-command.cc Command.cc
svn mv zypper-tabulator.h Table.h
svn mv zypper-tabulator.cc Table.cc
echo "zypper.h;Zypper.h" >> $RENAMES_LIST
echo "zypper.cc;Zypper.cc" >> $RENAMES_LIST
echo "zypper-command.h;Command.h" >> $RENAMES_LIST
echo "zypper-command.cc;Command.cc" >> $RENAMES_LIST
echo "zypper-tabulator.h;Table.h" >> $RENAMES_LIST
echo "zypper-tabulator.cc;Table.cc" >> $RENAMES_LIST

# move callback headers to separate folder and remove the -callbacks prefix
mkdir callbacks
svn add callbacks
for file in $(ls *-callbacks.h); do
  newfile=${file%-callbacks\.h};
  newfile="callbacks/${newfile:7}.h"
  echo "$file;$newfile" >> $RENAMES_LIST
  svn mv $file $newfile;
done

# remove 'zypper-' prefix from the sources
for file in $(ls zypper-*); do
  echo "$file;${file:7}" >> $RENAMES_LIST
  svn mv $file ${file:7};
done

# adapt include paths
sed -i -e 's/zypper\.h/Zypper.h/g' $(grep -Rl 'zypper\.h' *)
sed -i -e 's/zypper\.cc/Zypper.cc/g' $(grep -Rl 'zypper\.cc' *)
sed -i -e 's/zypper-command\.\(h\|cc\)/Command.\1/g' $(grep -Rl 'zypper-command\.\(h\|cc\)' *)
sed -i -e 's/zypper-tabulator\.\(h\|cc\)/Table.\1/g' $(grep -Rl 'zypper-tabulator\.\(h\|cc\)' *)
sed -i -e 's/zypper-\(\w*\)-callbacks\.h/callbacks\/\1.h/g' $(grep -Rl 'zypper-\w*-callbacks\.h' *)
sed -i -e 's/zypper-\(.*\.\(h\|cc\)\)/\1/g' $(grep -Rl 'zypper-.*\.\(h\|cc\)' *)
for file in $(find -name '*.h'); do
  file1=${file:2}
  regex=${file1/\.h/\\\.h}
  regex=${regex/\//\\\/};
  sed -i -e "s/\"$regex\"/\"..\\/$regex\"/g" callbacks/*
done

-----

zypper.h;Zypper.h
zypper.cc;Zypper.cc
zypper-command.h;Command.h
zypper-command.cc;Command.cc
zypper-tabulator.h;Table.h
zypper-tabulator.cc;Table.cc
zypper-keyring-callbacks.h;callbacks/keyring.h
zypper-locks-callbacks.h;callbacks/locks.h
zypper-media-callbacks.h;callbacks/media.h
zypper-repo-callbacks.h;callbacks/repo.h
zypper-rpm-callbacks.h;callbacks/rpm.h
zypper-getopt.cc;getopt.cc
zypper-getopt.h;getopt.h
zypper-info.cc;info.cc
zypper-info.h;info.h
zypper-locks.cc;locks.cc
zypper-locks.h;locks.h
zypper-main.cc;main.cc
zypper-main.h;main.h
zypper-misc.cc;misc.cc
zypper-misc.h;misc.h
zypper-prompt.cc;prompt.cc
zypper-prompt.h;prompt.h
zypper-repos.cc;repos.cc
zypper-repos.h;repos.h
zypper-richtext.cc;richtext.cc
zypper-richtext.h;richtext.h
zypper-search.cc;search.cc
zypper-search.h;search.h
zypper-utils.cc;utils.cc
zypper-utils.h;utils.h

16 years ago- renaming source tree part one
Jan Kupec [Tue, 24 Jun 2008 19:20:10 +0000 (19:20 +0000)]
- renaming source tree part one

16 years ago(no commit message)
Jan Kupec [Tue, 24 Jun 2008 19:10:32 +0000 (19:10 +0000)]

16 years agoupdate
Jan Kupec [Tue, 24 Jun 2008 17:12:34 +0000 (17:12 +0000)]
update

16 years ago- forgot to set ignorealreadyrecommended for verify and --debug-solver
Jan Kupec [Tue, 24 Jun 2008 13:38:17 +0000 (13:38 +0000)]
- forgot to set ignorealreadyrecommended for verify and --debug-solver

16 years agomissing option
Jan Kupec [Sun, 22 Jun 2008 12:18:44 +0000 (12:18 +0000)]
missing option

16 years ago- unused
Jan Kupec [Sat, 21 Jun 2008 17:13:24 +0000 (17:13 +0000)]
- unused

16 years agochanges
Jan Kupec [Fri, 20 Jun 2008 11:53:25 +0000 (11:53 +0000)]
changes

16 years ago- adapted to new patch message and script handling (#401220)
Jan Kupec [Fri, 20 Jun 2008 11:52:25 +0000 (11:52 +0000)]
- adapted to new patch message and script handling (#401220)

16 years agochanges
Jan Kupec [Thu, 19 Jun 2008 11:35:56 +0000 (11:35 +0000)]
changes

16 years ago- zypp-refresh: don't accept files with GPG problems (bnc #398530),
Jan Kupec [Thu, 19 Jun 2008 11:31:47 +0000 (11:31 +0000)]
- zypp-refresh: don't accept files with GPG problems (bnc #398530),
  report an error instead.

16 years ago- zypp-checkpatches dropped
Jan Kupec [Thu, 19 Jun 2008 11:29:40 +0000 (11:29 +0000)]
- zypp-checkpatches dropped

16 years ago- sync from 11.0
Jan Kupec [Wed, 18 Jun 2008 15:46:32 +0000 (15:46 +0000)]
- sync from 11.0

16 years agofix listing
Stephan Kulow [Wed, 18 Jun 2008 11:48:46 +0000 (11:48 +0000)]
fix listing

16 years agoOoops, revert part of another patch
Josef Reidinger [Thu, 12 Jun 2008 08:55:40 +0000 (08:55 +0000)]
Ooops, revert part of another patch

16 years ago- support multiple arguments to add/remove lock (bnc #398844)
Josef Reidinger [Thu, 12 Jun 2008 08:54:11 +0000 (08:54 +0000)]
- support multiple arguments to add/remove lock (bnc #398844)
- enable specify repository for add/remove lock
- read only locks file, apply is not needed
- doesn't initialize pool for add repo (bnc #398839)

16 years ago- typo (bnc #389087)
Jan Kupec [Thu, 5 Jun 2008 15:48:00 +0000 (15:48 +0000)]
- typo (bnc #389087)

16 years agochanges
Jan Kupec [Thu, 5 Jun 2008 14:38:34 +0000 (14:38 +0000)]
changes

16 years ago- fix installation of patches/patterns/products (bnc #395326)
Jan Kupec [Thu, 5 Jun 2008 14:37:13 +0000 (14:37 +0000)]
- fix installation of patches/patterns/products (bnc #395326)

16 years agochanges
Jan Kupec [Wed, 4 Jun 2008 14:47:41 +0000 (14:47 +0000)]
changes

16 years ago- count packages correctly on error (bnc #397037)
Jan Kupec [Wed, 4 Jun 2008 14:42:35 +0000 (14:42 +0000)]
- count packages correctly on error (bnc #397037)

16 years agochanges
Jan Kupec [Tue, 3 Jun 2008 10:00:25 +0000 (10:00 +0000)]
changes

16 years ago- ivalid priority message
Jan Kupec [Tue, 3 Jun 2008 09:59:16 +0000 (09:59 +0000)]
- ivalid priority message

16 years ago- remove upper priority limit
Jan Kupec [Tue, 3 Jun 2008 09:28:33 +0000 (09:28 +0000)]
- remove upper priority limit

16 years ago- inr description in global help
Jan Kupec [Tue, 3 Jun 2008 09:28:02 +0000 (09:28 +0000)]
- inr description in global help

16 years ago- correct spelling
Jan Kupec [Mon, 2 Jun 2008 15:55:04 +0000 (15:55 +0000)]
- correct spelling

16 years agochanges
Jan Kupec [Mon, 2 Jun 2008 15:29:23 +0000 (15:29 +0000)]
changes

16 years ago- current 11.1 factory zypper will be 0.12.x
Jan Kupec [Mon, 2 Jun 2008 15:28:27 +0000 (15:28 +0000)]
- current 11.1 factory zypper will be 0.12.x

16 years ago- --debug-solver for inr and ve (bnc #396353)
Jan Kupec [Mon, 2 Jun 2008 15:21:44 +0000 (15:21 +0000)]
- --debug-solver for inr and ve (bnc #396353)

16 years ago- log zypper version _after_ logger is set up
Jan Kupec [Mon, 2 Jun 2008 13:16:09 +0000 (13:16 +0000)]
- log zypper version _after_ logger is set up

16 years ago- s/URL/URI, s/resolvable/package + some other cleanup
Jan Kupec [Sat, 31 May 2008 00:21:22 +0000 (00:21 +0000)]
- s/URL/URI, s/resolvable/package + some other cleanup

16 years agochanges
Jan Kupec [Fri, 30 May 2008 16:55:10 +0000 (16:55 +0000)]
changes

16 years ago- zypper up <foo> to defaults to -t package (bnc #385990)
Jan Kupec [Fri, 30 May 2008 16:30:05 +0000 (16:30 +0000)]
- zypper up <foo> to defaults to -t package (bnc #385990)

16 years ago- some license display corrections
Jan Kupec [Fri, 30 May 2008 16:17:42 +0000 (16:17 +0000)]
- some license display corrections

16 years agochanges
Josef Reidinger [Fri, 30 May 2008 13:42:34 +0000 (13:42 +0000)]
changes

16 years agoshow help messages when show license in pager (bnc #394394)
Josef Reidinger [Fri, 30 May 2008 13:37:07 +0000 (13:37 +0000)]
show help messages when show license in pager (bnc #394394)

16 years agoversion BASE-SuSE-Linux-11_0-Branch
Jan Kupec [Mon, 26 May 2008 15:13:27 +0000 (15:13 +0000)]
version

16 years ago- translations
Jan Kupec [Mon, 26 May 2008 15:09:56 +0000 (15:09 +0000)]
- translations

16 years agochanges
Jan Kupec [Mon, 26 May 2008 12:32:33 +0000 (12:32 +0000)]
changes

16 years ago- fixed layout of tables when the text contains special characters
Jan Kupec [Mon, 26 May 2008 12:31:49 +0000 (12:31 +0000)]
- fixed layout of tables when the text contains special characters
  (bnc #393723)

16 years ago- new translation
Jan Kupec [Sun, 25 May 2008 21:51:14 +0000 (21:51 +0000)]
- new translation

16 years ago- translations update
Jan Kupec [Sun, 25 May 2008 15:31:16 +0000 (15:31 +0000)]
- translations update

16 years agochanges
Jan Kupec [Sun, 25 May 2008 13:50:38 +0000 (13:50 +0000)]
changes

16 years ago- ignore recommends of installed packages (bnc #389694)
Jan Kupec [Sun, 25 May 2008 13:49:16 +0000 (13:49 +0000)]
- ignore recommends of installed packages (bnc #389694)
- new command 'install-new-recommends' to do just that

16 years agochanges
Jan Kupec [Sat, 24 May 2008 12:07:41 +0000 (12:07 +0000)]
changes

16 years ago- basic overall install progress (bnc #240588)
Jan Kupec [Sat, 24 May 2008 11:59:37 +0000 (11:59 +0000)]
- basic overall install progress (bnc #240588)

16 years ago- fix changelog
Jan Kupec [Thu, 22 May 2008 17:17:11 +0000 (17:17 +0000)]
- fix changelog

16 years agoversion
Jan Kupec [Thu, 22 May 2008 17:12:02 +0000 (17:12 +0000)]
version

16 years ago- minor update
Jan Kupec [Thu, 22 May 2008 17:10:30 +0000 (17:10 +0000)]
- minor update

16 years agochanges
Jan Kupec [Thu, 22 May 2008 13:55:46 +0000 (13:55 +0000)]
changes

16 years ago- fixed addrepo -n (bnc #393579)
Jan Kupec [Thu, 22 May 2008 13:53:45 +0000 (13:53 +0000)]
- fixed addrepo -n (bnc #393579)

16 years ago- say we have -s for --details (.po's have been synced)
Jan Kupec [Thu, 22 May 2008 13:16:38 +0000 (13:16 +0000)]
- say we have -s for --details (.po's have been synced)

16 years ago- translations
Jan Kupec [Thu, 22 May 2008 13:08:01 +0000 (13:08 +0000)]
- translations

16 years ago- main.cc added
Jan Kupec [Thu, 22 May 2008 11:07:05 +0000 (11:07 +0000)]
- main.cc added

16 years ago- ZYPP_READONLY_HACK ported from code 10 (until we integrate
Jan Kupec [Thu, 22 May 2008 08:27:27 +0000 (08:27 +0000)]
- ZYPP_READONLY_HACK ported from code 10 (until we integrate
  InterProcessMutex)

16 years ago- fixed installing of already installed patterns (bnc #391414)
Jan Kupec [Wed, 21 May 2008 15:46:07 +0000 (15:46 +0000)]
- fixed installing of already installed patterns (bnc #391414)

16 years agochanges
Jan Kupec [Tue, 20 May 2008 17:06:33 +0000 (17:06 +0000)]
changes

16 years ago- fix zypper looping when arguments are parsed as
Duncan Mac-Vicar P [Tue, 20 May 2008 13:19:50 +0000 (13:19 +0000)]
- fix zypper looping when arguments are parsed as
  capabilities. (bnc#391644)

16 years agochanges
Jan Kupec [Tue, 20 May 2008 11:59:28 +0000 (11:59 +0000)]
changes

16 years ago- show correct patch list
Jan Kupec [Tue, 20 May 2008 11:58:11 +0000 (11:58 +0000)]
- show correct patch list

16 years agochanges
Jan Kupec [Tue, 20 May 2008 11:37:36 +0000 (11:37 +0000)]
changes

16 years ago- display patch updates in --xmlout (bnc #390769)
Jan Kupec [Tue, 20 May 2008 11:36:12 +0000 (11:36 +0000)]
- display patch updates in --xmlout (bnc #390769)

16 years agochanges
Jan Kupec [Tue, 20 May 2008 11:20:03 +0000 (11:20 +0000)]
changes

16 years ago- show correct available version (bnc #386703)
Jan Kupec [Tue, 20 May 2008 11:18:21 +0000 (11:18 +0000)]
- show correct available version (bnc #386703)
- look for exact package name matches, not substrings

16 years agochanges
Josef Reidinger [Tue, 20 May 2008 06:53:57 +0000 (06:53 +0000)]
changes

16 years agoexit if bad arguments is passed to whatprovides (bnc #391576).
Josef Reidinger [Tue, 20 May 2008 06:52:28 +0000 (06:52 +0000)]
exit if bad arguments is passed to whatprovides (bnc #391576).

16 years ago- translations update
Jan Kupec [Mon, 19 May 2008 16:33:52 +0000 (16:33 +0000)]
- translations update

16 years ago- fixed setting autorefresh to false by default
Jan Kupec [Mon, 19 May 2008 16:32:17 +0000 (16:32 +0000)]
- fixed setting autorefresh to false by default

16 years agochanges
Josef Reidinger [Fri, 16 May 2008 10:08:23 +0000 (10:08 +0000)]
changes

16 years agocorrectly report when libzypp cannot lock due to error instead of allready existing...
Josef Reidinger [Fri, 16 May 2008 10:07:45 +0000 (10:07 +0000)]
correctly report when libzypp cannot lock due to error instead of allready existing lock. (bnc#300103)

16 years agochanges
Josef Reidinger [Thu, 15 May 2008 13:38:24 +0000 (13:38 +0000)]
changes

16 years agosupport for symlink named rug - autoenable rug compatibility
Josef Reidinger [Thu, 15 May 2008 13:37:51 +0000 (13:37 +0000)]
support for symlink named rug - autoenable rug compatibility

16 years agochanges
Josef Reidinger [Thu, 15 May 2008 12:49:37 +0000 (12:49 +0000)]
changes

16 years agofix input after showing in pager (bnc #390027)
Josef Reidinger [Thu, 15 May 2008 12:48:29 +0000 (12:48 +0000)]
fix input after showing in pager (bnc #390027)

16 years ago- translations update
Jan Kupec [Thu, 15 May 2008 10:40:21 +0000 (10:40 +0000)]
- translations update

16 years ago- translations update
Jan Kupec [Tue, 13 May 2008 18:19:15 +0000 (18:19 +0000)]
- translations update

16 years ago- make yapt happy
Jan Kupec [Tue, 13 May 2008 10:23:19 +0000 (10:23 +0000)]
- make yapt happy

16 years agoversion
Jan Kupec [Tue, 13 May 2008 10:16:06 +0000 (10:16 +0000)]
version

16 years agochanges
Josef Reidinger [Tue, 13 May 2008 10:00:50 +0000 (10:00 +0000)]
changes

16 years agoallow non-root user handling with their specified root dir
Josef Reidinger [Tue, 13 May 2008 09:59:54 +0000 (09:59 +0000)]
allow non-root user handling with their specified root dir

16 years agochanges
Jan Kupec [Mon, 12 May 2008 16:17:40 +0000 (16:17 +0000)]
changes

16 years ago- fix --uninstalled-only in search
Jan Kupec [Mon, 12 May 2008 16:16:28 +0000 (16:16 +0000)]
- fix --uninstalled-only in search

16 years ago- translations update
Jan Kupec [Mon, 12 May 2008 15:44:13 +0000 (15:44 +0000)]
- translations update

16 years agochanges
Jan Kupec [Mon, 12 May 2008 15:18:01 +0000 (15:18 +0000)]
changes

16 years ago- show rpm remove error reason (bnc #388810)
Jan Kupec [Mon, 12 May 2008 15:06:32 +0000 (15:06 +0000)]
- show rpm remove error reason (bnc #388810)

16 years agochanges
Jan Kupec [Mon, 12 May 2008 14:50:20 +0000 (14:50 +0000)]
changes

16 years ago- fixes by m4r3k:
Jan Kupec [Mon, 12 May 2008 14:46:56 +0000 (14:46 +0000)]
- fixes by m4r3k:
- adapted to new command help
- fall back to path completion if there's nothing else to complete

16 years ago- set --no-recommends when generating solver test case
Jan Kupec [Sun, 11 May 2008 22:26:23 +0000 (22:26 +0000)]
- set --no-recommends when generating solver test case

16 years ago- fix format
Jan Kupec [Sun, 11 May 2008 21:36:08 +0000 (21:36 +0000)]
- fix format

16 years ago- log version also in main
Jan Kupec [Sun, 11 May 2008 21:34:43 +0000 (21:34 +0000)]
- log version also in main

16 years agochanges
Jan Kupec [Sun, 11 May 2008 21:34:12 +0000 (21:34 +0000)]
changes

16 years ago- fixed update -t {patch,patter,product} (bnc #388201)
Jan Kupec [Sun, 11 May 2008 21:11:04 +0000 (21:11 +0000)]
- fixed update -t {patch,patter,product} (bnc #388201)
- fixed patch-check

16 years agodo not use %run_ldconfig
Stephan Kulow [Sun, 11 May 2008 18:00:58 +0000 (18:00 +0000)]
do not use %run_ldconfig

16 years ago- remove unused code
Jan Kupec [Fri, 9 May 2008 16:03:26 +0000 (16:03 +0000)]
- remove unused code

16 years ago- work around bug #388810
Jan Kupec [Fri, 9 May 2008 16:00:18 +0000 (16:00 +0000)]
- work around bug #388810
- fix progressEnd to say Error on error

16 years agochanges
Jan Kupec [Fri, 9 May 2008 15:09:31 +0000 (15:09 +0000)]
changes