Jan Kupec [Wed, 9 Jul 2008 20:16:42 +0000 (20:16 +0000)]
changes
Jan Kupec [Wed, 9 Jul 2008 20:14:00 +0000 (20:14 +0000)]
- fix setting of solver flags for dist-upgrade (bnc #406959)
- use commong set_solver_flags() to prevent this from happenning again
Jan Kupec [Tue, 8 Jul 2008 13:02:04 +0000 (13:02 +0000)]
- split misc into install, update, and solve-commit.cc
Jan Kupec [Mon, 7 Jul 2008 14:58:30 +0000 (14:58 +0000)]
- fix includes
Jan Kupec [Thu, 26 Jun 2008 13:46:28 +0000 (13:46 +0000)]
- some updates
Jan Kupec [Thu, 26 Jun 2008 13:02:04 +0000 (13:02 +0000)]
changes
Jan Kupec [Thu, 26 Jun 2008 12:55:20 +0000 (12:55 +0000)]
- don't close stderr (#398530)
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
Jan Kupec [Wed, 25 Jun 2008 14:08:56 +0000 (14:08 +0000)]
- one more string
Jan Kupec [Wed, 25 Jun 2008 12:27:47 +0000 (12:27 +0000)]
- fixed and added new texts
Jan Kupec [Tue, 24 Jun 2008 19:29:02 +0000 (19:29 +0000)]
- there were quite some contributions from Pepa (Josef) :O)
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
Jan Kupec [Tue, 24 Jun 2008 19:20:10 +0000 (19:20 +0000)]
- renaming source tree part one
Jan Kupec [Tue, 24 Jun 2008 19:10:32 +0000 (19:10 +0000)]
Jan Kupec [Tue, 24 Jun 2008 17:12:34 +0000 (17:12 +0000)]
update
Jan Kupec [Tue, 24 Jun 2008 13:38:17 +0000 (13:38 +0000)]
- forgot to set ignorealreadyrecommended for verify and --debug-solver
Jan Kupec [Sun, 22 Jun 2008 12:18:44 +0000 (12:18 +0000)]
missing option
Jan Kupec [Sat, 21 Jun 2008 17:13:24 +0000 (17:13 +0000)]
- unused
Jan Kupec [Fri, 20 Jun 2008 11:53:25 +0000 (11:53 +0000)]
changes
Jan Kupec [Fri, 20 Jun 2008 11:52:25 +0000 (11:52 +0000)]
- adapted to new patch message and script handling (#401220)
Jan Kupec [Thu, 19 Jun 2008 11:35:56 +0000 (11:35 +0000)]
changes
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.
Jan Kupec [Thu, 19 Jun 2008 11:29:40 +0000 (11:29 +0000)]
- zypp-checkpatches dropped
Jan Kupec [Wed, 18 Jun 2008 15:46:32 +0000 (15:46 +0000)]
- sync from 11.0
Stephan Kulow [Wed, 18 Jun 2008 11:48:46 +0000 (11:48 +0000)]
fix listing
Josef Reidinger [Thu, 12 Jun 2008 08:55:40 +0000 (08:55 +0000)]
Ooops, revert part of another patch
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)
Jan Kupec [Thu, 5 Jun 2008 15:48:00 +0000 (15:48 +0000)]
- typo (bnc #389087)
Jan Kupec [Thu, 5 Jun 2008 14:38:34 +0000 (14:38 +0000)]
changes
Jan Kupec [Thu, 5 Jun 2008 14:37:13 +0000 (14:37 +0000)]
- fix installation of patches/patterns/products (bnc #395326)
Jan Kupec [Wed, 4 Jun 2008 14:47:41 +0000 (14:47 +0000)]
changes
Jan Kupec [Wed, 4 Jun 2008 14:42:35 +0000 (14:42 +0000)]
- count packages correctly on error (bnc #397037)
Jan Kupec [Tue, 3 Jun 2008 10:00:25 +0000 (10:00 +0000)]
changes
Jan Kupec [Tue, 3 Jun 2008 09:59:16 +0000 (09:59 +0000)]
- ivalid priority message
Jan Kupec [Tue, 3 Jun 2008 09:28:33 +0000 (09:28 +0000)]
- remove upper priority limit
Jan Kupec [Tue, 3 Jun 2008 09:28:02 +0000 (09:28 +0000)]
- inr description in global help
Jan Kupec [Mon, 2 Jun 2008 15:55:04 +0000 (15:55 +0000)]
- correct spelling
Jan Kupec [Mon, 2 Jun 2008 15:29:23 +0000 (15:29 +0000)]
changes
Jan Kupec [Mon, 2 Jun 2008 15:28:27 +0000 (15:28 +0000)]
- current 11.1 factory zypper will be 0.12.x
Jan Kupec [Mon, 2 Jun 2008 15:21:44 +0000 (15:21 +0000)]
- --debug-solver for inr and ve (bnc #396353)
Jan Kupec [Mon, 2 Jun 2008 13:16:09 +0000 (13:16 +0000)]
- log zypper version _after_ logger is set up
Jan Kupec [Sat, 31 May 2008 00:21:22 +0000 (00:21 +0000)]
- s/URL/URI, s/resolvable/package + some other cleanup
Jan Kupec [Fri, 30 May 2008 16:55:10 +0000 (16:55 +0000)]
changes
Jan Kupec [Fri, 30 May 2008 16:30:05 +0000 (16:30 +0000)]
- zypper up <foo> to defaults to -t package (bnc #385990)
Jan Kupec [Fri, 30 May 2008 16:17:42 +0000 (16:17 +0000)]
- some license display corrections
Josef Reidinger [Fri, 30 May 2008 13:42:34 +0000 (13:42 +0000)]
changes
Josef Reidinger [Fri, 30 May 2008 13:37:07 +0000 (13:37 +0000)]
show help messages when show license in pager (bnc #394394)
Jan Kupec [Mon, 26 May 2008 15:13:27 +0000 (15:13 +0000)]
version
Jan Kupec [Mon, 26 May 2008 15:09:56 +0000 (15:09 +0000)]
- translations
Jan Kupec [Mon, 26 May 2008 12:32:33 +0000 (12:32 +0000)]
changes
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)
Jan Kupec [Sun, 25 May 2008 21:51:14 +0000 (21:51 +0000)]
- new translation
Jan Kupec [Sun, 25 May 2008 15:31:16 +0000 (15:31 +0000)]
- translations update
Jan Kupec [Sun, 25 May 2008 13:50:38 +0000 (13:50 +0000)]
changes
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
Jan Kupec [Sat, 24 May 2008 12:07:41 +0000 (12:07 +0000)]
changes
Jan Kupec [Sat, 24 May 2008 11:59:37 +0000 (11:59 +0000)]
- basic overall install progress (bnc #240588)
Jan Kupec [Thu, 22 May 2008 17:17:11 +0000 (17:17 +0000)]
- fix changelog
Jan Kupec [Thu, 22 May 2008 17:12:02 +0000 (17:12 +0000)]
version
Jan Kupec [Thu, 22 May 2008 17:10:30 +0000 (17:10 +0000)]
- minor update
Jan Kupec [Thu, 22 May 2008 13:55:46 +0000 (13:55 +0000)]
changes
Jan Kupec [Thu, 22 May 2008 13:53:45 +0000 (13:53 +0000)]
- fixed addrepo -n (bnc #393579)
Jan Kupec [Thu, 22 May 2008 13:16:38 +0000 (13:16 +0000)]
- say we have -s for --details (.po's have been synced)
Jan Kupec [Thu, 22 May 2008 13:08:01 +0000 (13:08 +0000)]
- translations
Jan Kupec [Thu, 22 May 2008 11:07:05 +0000 (11:07 +0000)]
- main.cc added
Jan Kupec [Thu, 22 May 2008 08:27:27 +0000 (08:27 +0000)]
- ZYPP_READONLY_HACK ported from code 10 (until we integrate
InterProcessMutex)
Jan Kupec [Wed, 21 May 2008 15:46:07 +0000 (15:46 +0000)]
- fixed installing of already installed patterns (bnc #391414)
Jan Kupec [Tue, 20 May 2008 17:06:33 +0000 (17:06 +0000)]
changes
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)
Jan Kupec [Tue, 20 May 2008 11:59:28 +0000 (11:59 +0000)]
changes
Jan Kupec [Tue, 20 May 2008 11:58:11 +0000 (11:58 +0000)]
- show correct patch list
Jan Kupec [Tue, 20 May 2008 11:37:36 +0000 (11:37 +0000)]
changes
Jan Kupec [Tue, 20 May 2008 11:36:12 +0000 (11:36 +0000)]
- display patch updates in --xmlout (bnc #390769)
Jan Kupec [Tue, 20 May 2008 11:20:03 +0000 (11:20 +0000)]
changes
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
Josef Reidinger [Tue, 20 May 2008 06:53:57 +0000 (06:53 +0000)]
changes
Josef Reidinger [Tue, 20 May 2008 06:52:28 +0000 (06:52 +0000)]
exit if bad arguments is passed to whatprovides (bnc #391576).
Jan Kupec [Mon, 19 May 2008 16:33:52 +0000 (16:33 +0000)]
- translations update
Jan Kupec [Mon, 19 May 2008 16:32:17 +0000 (16:32 +0000)]
- fixed setting autorefresh to false by default
Josef Reidinger [Fri, 16 May 2008 10:08:23 +0000 (10:08 +0000)]
changes
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)
Josef Reidinger [Thu, 15 May 2008 13:38:24 +0000 (13:38 +0000)]
changes
Josef Reidinger [Thu, 15 May 2008 13:37:51 +0000 (13:37 +0000)]
support for symlink named rug - autoenable rug compatibility
Josef Reidinger [Thu, 15 May 2008 12:49:37 +0000 (12:49 +0000)]
changes
Josef Reidinger [Thu, 15 May 2008 12:48:29 +0000 (12:48 +0000)]
fix input after showing in pager (bnc #390027)
Jan Kupec [Thu, 15 May 2008 10:40:21 +0000 (10:40 +0000)]
- translations update
Jan Kupec [Tue, 13 May 2008 18:19:15 +0000 (18:19 +0000)]
- translations update
Jan Kupec [Tue, 13 May 2008 10:23:19 +0000 (10:23 +0000)]
- make yapt happy
Jan Kupec [Tue, 13 May 2008 10:16:06 +0000 (10:16 +0000)]
version
Josef Reidinger [Tue, 13 May 2008 10:00:50 +0000 (10:00 +0000)]
changes
Josef Reidinger [Tue, 13 May 2008 09:59:54 +0000 (09:59 +0000)]
allow non-root user handling with their specified root dir
Jan Kupec [Mon, 12 May 2008 16:17:40 +0000 (16:17 +0000)]
changes
Jan Kupec [Mon, 12 May 2008 16:16:28 +0000 (16:16 +0000)]
- fix --uninstalled-only in search
Jan Kupec [Mon, 12 May 2008 15:44:13 +0000 (15:44 +0000)]
- translations update
Jan Kupec [Mon, 12 May 2008 15:18:01 +0000 (15:18 +0000)]
changes
Jan Kupec [Mon, 12 May 2008 15:06:32 +0000 (15:06 +0000)]
- show rpm remove error reason (bnc #388810)
Jan Kupec [Mon, 12 May 2008 14:50:20 +0000 (14:50 +0000)]
changes
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
Jan Kupec [Sun, 11 May 2008 22:26:23 +0000 (22:26 +0000)]
- set --no-recommends when generating solver test case
Jan Kupec [Sun, 11 May 2008 21:36:08 +0000 (21:36 +0000)]
- fix format