Adriaan de Groot
a4f4d417a2
Packages module: improve translated progress reporting
...
- Reduce number of strings a bit
- Less confusing translation requirements (I hope)
- Report on progress between groups
2017-08-31 03:51:18 -04:00
Adriaan de Groot
a31c4b4cb3
Packages module: better progress reporting
...
- introduce multiple modes (remove, install) to
distinguish progress messages
- handle plurals via gettext
- fix PEP8 whining from previous
2017-08-30 17:37:04 -04:00
Adriaan de Groot
e1a93987d0
Packages module: add progress reporting
...
Adds i18n to the module (but these strings are not yet extracted),
and reports progress as each group of packages is installed.
FIXES #781
2017-08-30 10:09:28 -04:00
Adriaan de Groot
3799a26b3c
Package module: optimize & fix
...
- Expand example configurations
- Optimize commoon case of just listing package names
- Do locale substitution in both kinds of cases
2017-08-29 06:58:30 -04:00
Adriaan de Groot
6c36534206
Package module: fix packages-could-be-objects code
...
- Check for 'list' when it's actually a 'dict' is strange.
Reverse logic to consider 'str' a package name and everything
else is special.
- Refactor to handle the difference between package names and
packages-with-script-data in one place.
- Add code and config documentation.
- Switch sample configurations to dummy-backend.
2017-08-29 05:51:30 -04:00
Adriaan de Groot
d66434985e
Package module: refactor package-manager into multiple classes
2017-08-29 05:51:29 -04:00
Alf Gaida
fe14559f2f
refine warn_text coding
...
fixed superfluous whitespace
2017-04-18 18:13:36 +02:00
Alf Gaida
122667f9a7
Fixed pep8 whining in module packages
2017-03-29 20:37:00 +02:00
Kyle Robertze
832fc9fd51
fixed two bugs in packages module
...
if the key "install" was used, the install would crash as the backwards
compatibility checks were incorrect. Fixed a typo in the run function so
pre- and post-install hooks now work correctly
2017-02-20 13:35:56 +01:00
Kyle Robertze
36f723e59f
added missing copyright statement
2017-02-07 17:10:48 +01:00
Kyle Robertze
4d24942547
corrected packages syntax errors
2017-02-07 17:10:48 +01:00
Kyle Robertze
45facda3cb
corrected packages module features so that they are up to date
2017-02-07 17:10:48 +01:00
Kyle Robertze
d465617432
added support for pre- and post-install scripts
2017-02-07 17:10:48 +01:00
Teo Mrnjavac
fbb77aff0c
Use --non-interactive with zypper update.
...
CAL-455 #close Fixed in master, please test.
2017-02-01 16:11:54 +01:00
Teo Mrnjavac
8804b15b59
Make try_{install,remove} more robust.
2017-02-01 11:34:10 +01:00
Rohan Garg
4a55802b18
Allow passing a LOCALE variable in the package list
...
This allows for installing locale packages. This can be achieved
by adding a entry of the format packagename-${LOCALE} in the
packages configuration module.
2016-12-20 16:57:23 +01:00
Teo Mrnjavac
c4df69b4a7
Allow try_install and try_remove entries in packages module.
2016-11-02 17:00:45 +01:00
Teo Mrnjavac
b272917e83
Add option of updating packages db before perfoming package operations.
2016-11-02 13:04:11 +01:00
V3n3RiX
ef3600891f
improve portage backend, so that it removes ALL calamares deps
2016-08-12 15:32:35 +01:00
shainer
53214a15bc
Add pkgman to run_operations invocation.
2016-07-05 21:06:27 +01:00
shainer
058c7d8913
packageOperations should be a map between operation type and list of packages. It does not make sense for it to be a list of dictionaries, all with the same format. Also makes conversions with QVariant harder.
2016-07-04 22:18:21 +01:00
Teo Mrnjavac
10ce42f35c
Use target_env calls in Python modules.
2015-09-15 16:48:41 +02:00
Gormogon
bc66502fda
Some more PEP
2015-06-14 07:25:37 -04:00
skullbocks
57406f3bc9
[modules/packages] Added support for Portage and Entropy
2015-06-08 19:29:51 +02:00
rshipp
f3319e1ef4
Change local_install to localInstall
2015-03-04 08:19:26 -07:00
rshipp
880c19c195
Fix incorrect if statement
2015-03-01 17:34:44 -07:00
rshipp
995341e9be
Allow local installs with the packages module.
...
Courtesy of @Inkane. Adds the ability to use pacman -U to install
local packages.
2015-03-01 16:31:40 -07:00
Philip
e5eee1e4dd
[unpackfs] proper sentence
2015-02-25 14:49:24 +01:00
Philip
be2353e54b
[packages] add python doc strings
2015-02-25 14:49:23 +01:00
Gormogon
113d9db7cb
Python Better Docstrings
2015-02-25 14:49:23 +01:00
Teo Mrnjavac
abeb6d9172
Run urpme noninteractive (OpenMandriva).
...
Thanks Tomasz Paweł Gajc <tpgxyz@gmail.com> for the patch.
2015-02-22 13:38:37 +01:00
Gormogon
09dc6bb5d7
[PEP 8] General Style Part 2
2015-02-18 09:47:24 -05:00
Gormogon
8e1480431a
[PEP 263] Corrected Encoding Headers
2015-02-18 09:06:10 -05:00
Teo Mrnjavac
2cd9c7c0fa
Improve urpmi call. Thanks Tomasz Paweł Gajc for the patch.
2015-01-27 18:38:11 +01:00
Kevin Kofler
5c6a302112
packages: Ignore error code for "dnf remove".
...
Unfortunately, dnf treats it as an error if we try to remove a package
that already did not exist. This means that, e.g., if we try to remove
calamares itself, but calamares was not installed on the base image,
only in the overlay, we will fail with an error. So, as long as we do
not have a better solution, we ignore the exit code of "dnf remove"
entirely.
(yum does not show this behavior, it returns success when the package to
remove is already not installed.)
2015-01-19 03:06:12 +01:00
Kevin Kofler
412b959870
packages: Offline package removal for yum and dnf.
...
When removing packages with yum or dnf, pass the --disablerepo=*
(disable all online repositories) and -C (run from cache) arguments.
Package removals do not normally require network access, and this
measure saves time and bandwidth and prevents possible unnecessary
errors (e.g., if we do not have active network access, or if there is
some problem with the mirrors).
2015-01-19 02:57:29 +01:00
Daniel Hillenbrand
722e87fd00
packages: add --noconfirm arg for pacman, also remove unneeded deps
2014-11-28 20:54:35 +01:00
Rohan Garg
ac5cecee19
Clean up unused packages after installation
...
Fixes #166 .
2014-11-27 11:03:12 +01:00
Rohan Garg
6a9c9cbaae
Fix typo
2014-10-27 18:39:11 +01:00
Rohan Garg
fdd84d1f99
Don't crash when packageOperations is empty
2014-10-27 16:58:42 +01:00
Pier Luigi Fiorini
5624132172
Add packages job
...
This job can be used to install and remove packages.
2014-09-01 21:48:35 +02:00