]> cygwin.com Git - cygwin-apps/setup.git/log
cygwin-apps/setup.git
5 years agoAdd OnNotify virtual function to class Window for WM_NOTIFY notifications
Jon Turney [Fri, 16 Sep 2016 18:23:26 +0000 (19:23 +0100)]
Add OnNotify virtual function to class Window for WM_NOTIFY notifications

Add OnNotify virtual function to class Window for WM_NOTIFY notifications
Note that the result is returned via DWLP_MSGRESULT

5 years agoChange packagemeta::_actions to an enum
Jon Turney [Sun, 15 Jul 2018 17:02:08 +0000 (18:02 +0100)]
Change packagemeta::_actions to an enum

5 years agoAdd zstd package to .appveyor.yml
Jon Turney [Sat, 13 Oct 2018 16:16:40 +0000 (17:16 +0100)]
Add zstd package to .appveyor.yml

Reformat so we can escape newlines to avoid an absurdly long line

5 years agoAdd zstd packages to build instructions
Jon Turney [Sat, 13 Oct 2018 13:23:00 +0000 (14:23 +0100)]
Add zstd packages to build instructions

Also adjust for 'if building from git' is the only way, since we don't make
source releases.

5 years agoAdd support for ZStandard compression
Achim Gratz [Sun, 2 Sep 2018 16:41:24 +0000 (18:41 +0200)]
Add support for ZStandard compression

Add support for ZStandard compression for packages and .ini files

5 years agoRemove misleading copy&paste comments
Achim Gratz [Wed, 10 Oct 2018 17:44:56 +0000 (19:44 +0200)]
Remove misleading copy&paste comments

5 years agoAvoid stringop-overflow warning with gcc8
Jon Turney [Sun, 7 Oct 2018 21:41:06 +0000 (22:41 +0100)]
Avoid stringop-overflow warning with gcc8

desktop.cc: In function 'void start_menu(const string&, const string&, const string&, const string&)':
desktop.cc:110:11: error: 'char* strncat(char*, const char*, size_t)' specified bound 260 equals destination size [-Werror=stringop-overflow=]

I think strlcat() was meant here, which MinGW doesn't have.  In it's
absence, open-code it's equivalent.

(SHGetSpecialFolderLocation() returns a pathname of length at most MAX_PATH,
and make_link() is limited to accepting a pathname of length MAX_PATH, so we
want to append our folder name, while truncating the result to MAX_PATH.)

5 years agoexcise "using namespace std;" and explicitly use a "std::" prefix throughout instead
Achim Gratz [Sun, 2 Sep 2018 16:40:33 +0000 (18:40 +0200)]
excise "using namespace std;" and explicitly use a "std::" prefix throughout instead

5 years agoAvoid potential null deref in check_for_cached()
Jon Turney [Thu, 4 Oct 2018 18:07:14 +0000 (19:07 +0100)]
Avoid potential null deref in check_for_cached()

Packages for which we don't know a filename can't possibly be cached.

See https://cygwin.com/ml/cygwin/2018-10/msg00033.html

5 years agoAllow host machine to be specified to bootstrap
Jon Turney [Thu, 4 Oct 2018 17:26:55 +0000 (18:26 +0100)]
Allow host machine to be specified to bootstrap

Allow host machine to be specified to bootstrap, rather than it picking the
first one it finds a compiler for

5 years agoImprove libgcrypt detection
Jon Turney [Thu, 4 Oct 2018 13:01:50 +0000 (14:01 +0100)]
Improve libgcrypt detection

Set ACLOCAL_PATH so libgcrypt.m4 from cross-package is found, if it is the
only one installed.

Accomodate older libgcrypt.m4, which doesn't check SYSROOT

5 years agoUse pkg-config for dependency checking where possible
Jon Turney [Wed, 1 Nov 2017 13:56:26 +0000 (13:56 +0000)]
Use pkg-config for dependency checking where possible

Modernise depedency checking and use pkg-config where possible

6 years agoFix message spam when package vendor is something other than "cygwin"
Achim Gratz [Tue, 31 Jul 2018 19:29:02 +0000 (21:29 +0200)]
Fix message spam when package vendor is something other than "cygwin"

Installed packages are getting coerced to vendor "cygwin", so there will be
warnings if the vendor string of the single repo is something other than
that.

6 years agoRemove unused IDI_SPIN
Jon Turney [Wed, 18 Jul 2018 12:01:47 +0000 (13:01 +0100)]
Remove unused IDI_SPIN

Added in 713bbe5f, but never actually used

6 years agoRemove unused choose-rtarrow.bmp
Jon Turney [Mon, 16 Jul 2018 11:27:15 +0000 (12:27 +0100)]
Remove unused choose-rtarrow.bmp

Usused since replaced by tree-plus.bmp/tree-minus.bmp in 82306ac2

6 years agoProperly identify Win32 systems which support IsWow64Process2()
Jon Turney [Sat, 28 Jul 2018 22:57:17 +0000 (23:57 +0100)]
Properly identify Win32 systems which support IsWow64Process2()

Properly identify Win32 systems which support IsWow64Process2() (Windows 10
version 1511 (TH2) or later) in the default user-agent string.

6 years agoTeach bitness reporting in user-agent string about WoW64 on ARM64 release_2.893
Jon Turney [Tue, 24 Jul 2018 21:18:51 +0000 (22:18 +0100)]
Teach bitness reporting in user-agent string about WoW64 on ARM64

6 years agoRemove uninitialized NetIO::ftp_auth flag release_2.892
Jon Turney [Sat, 14 Jul 2018 15:48:07 +0000 (16:48 +0100)]
Remove uninitialized NetIO::ftp_auth flag

This appears to be left over since f5d45c3b.

NetIO::get_ftp_auth() doesn't appear to be used at all, but perhaps should
by the NetIO_IE5 constructor for FTP auth.

6 years agoInitialize file_size in NetIO constructor
Jon Turney [Sat, 14 Jul 2018 15:46:57 +0000 (16:46 +0100)]
Initialize file_size in NetIO constructor

At the moment, this is not initialized anywhere.  If it's value happens to
be greater than zero, that will be used as the size to report download
progress against.

6 years agoDon't write dependency problems to log with CRLF line terminators
Jon Turney [Thu, 22 Mar 2018 21:34:51 +0000 (21:34 +0000)]
Don't write dependency problems to log with CRLF line terminators

Only transform line endings in the dependency problems string used in a
Windows dialog text box, not in what's written to the log as well.

https://cygwin.com/ml/cygwin/2018-03/msg00266.html

6 years agoKeep track of all known sites for a given version of a package
Jon Turney [Mon, 9 Jul 2018 18:15:10 +0000 (19:15 +0100)]
Keep track of all known sites for a given version of a package

When adding a packageversion, extend it's packagesource::sites vector to
include the sites from any similar packageversions previously processed.

Also remove those packageversions from the libsolv pool so that libsolv will
always find the one that lists all the sites.

This is needed for:

- Correct handling of local installs where required packages are spread
between cache directories for more than one mirror

- Correctly falling back to a second site when multiple mirrors are used and
a problem occurs connecting to the first mirror tried.

6 years agoAdd Vendor() accessor method to SolvableVersion
Jon Turney [Sun, 8 Jul 2018 15:26:45 +0000 (16:26 +0100)]
Add Vendor() accessor method to SolvableVersion

6 years agoInternalize the libsolv repo attribute data after each setup.ini
Ken Brown [Sat, 17 Mar 2018 14:59:54 +0000 (10:59 -0400)]
Internalize the libsolv repo attribute data after each setup.ini

Call SolverPool::internalize() in the IniDBBuilderPackage destructor. This
makes attribute data from all previously processed setup.ini files available
when the next setup.ini is being processed.

Remove the now unneeded call to SolverPool::internalize() at the beginning
of packagedb::read().

6 years agoPropagate exit code of elevated process
Jon Turney [Sat, 7 Jul 2018 08:09:02 +0000 (09:09 +0100)]
Propagate exit code of elevated process

Propagate the exit code of elevated process, when --wait is used.

This addresses part of the problem about exit code noted in [1], although we
also need to audit that a non-zero exit code is reported in all error
situations.

[1] https://cygwin.com/ml/cygwin/2018-07/msg00020.html

Also report if starting the elevated child process failed.

6 years agoIf setup-minimum-version: was checked, don't check setup-version:
Jon Turney [Fri, 6 Jul 2018 16:45:42 +0000 (17:45 +0100)]
If setup-minimum-version: was checked, don't check setup-version:

Don't check setup-version: to warn about potential setup.ini parsing
problems if a setup-minimum-version: is specified.

6 years agoAdd --no-version-check option
Ken Brown [Thu, 5 Jul 2018 15:22:20 +0000 (11:22 -0400)]
Add --no-version-check option

This suppresses the warning that a newer version of setup is available.

This is intended to be used by shortcuts and scripts that run setup in a
'setup' package.

This would also suppress any future auto-update feature.

6 years agoFix SolvableVersion::deplist() to handle version-relations correctly
Jon Turney [Fri, 6 Jul 2018 16:16:16 +0000 (17:16 +0100)]
Fix SolvableVersion::deplist() to handle version-relations correctly

This was using completely the wrong Id for the version-relation, so it was
always returning unversioned dependencies

6 years agoFinish providing support for provides: and conflicts:
Ken Brown [Wed, 21 Mar 2018 19:38:07 +0000 (15:38 -0400)]
Finish providing support for provides: and conflicts:

Introduce member functions SolvableVersion::provides() and
SolvableVersion::conflicts().  This enables packagedb::read() to access
provides and conflicts lists from setup.ini.

6 years agoREADME: Put marker for footnote about copr next to the correct package
Jon Turney [Mon, 18 Jun 2018 17:19:43 +0000 (18:19 +0100)]
README: Put marker for footnote about copr next to the correct package

Signed-off-by: Jon Turney <jon.turney@dronecode.org.uk>
6 years agonetio.cc: fix a bug in string handling
Corinna Vinschen [Mon, 18 Jun 2018 17:16:59 +0000 (19:16 +0200)]
netio.cc: fix a bug in string handling

commit ed6137e5f94f45e50a12994aeae310278b2bf758 back in 2003(!)
introduced a bug in creating an empty password string which,
embarrassingly, only now has been catched by gcc.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
6 years agoreplace http links with official https URLs
Corinna Vinschen [Mon, 18 Jun 2018 15:36:39 +0000 (17:36 +0200)]
replace http links with official https URLs

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
6 years agoFix detection of automatically added packages
Ken Brown [Thu, 7 Jun 2018 17:37:24 +0000 (13:37 -0400)]
Fix detection of automatically added packages

In the "confirm" dialog, report a package as automatically added for install
if the version being installed is different from the version requested by
the user.  This can happen if the global update mode is "Keep" but a package
needs to be updated because of a versioned dependency.

6 years agoImprove the preparation of the package database
Ken Brown [Thu, 7 Jun 2018 17:37:23 +0000 (13:37 -0400)]
Improve the preparation of the package database

Introduce a new function packagedb::noChanges() to set the database to a "no
changes requested" state.  Call it the first time the chooser page is
activated, before calling ChooserPage::applyCommandLinePackageSelection().

Also use it to simplify the code in two places.

Remove code from ChooserPage::changeTrust() that was making changes to the
database after ChooserPage::applyCommandLinePackageSelection() had already
been called.

6 years agoAllow command-line uninstallation of specific orphaned packages
Ken Brown [Tue, 27 Mar 2018 17:56:27 +0000 (13:56 -0400)]
Allow command-line uninstallation of specific orphaned packages

Also change the implementation of the "--delete-orphans" option to use
the same definition of "orphaned" that's used elsewhere in the code.

6 years agoMake sure that the IniDBBuilderPackage destructor is called when needed
Ken Brown [Sat, 17 Mar 2018 14:59:53 +0000 (10:59 -0400)]
Make sure that the IniDBBuilderPackage destructor is called when needed

The IniDBBuilderPackage destructor contains code that is intended to be run
after each setup.ini file is processed.  But the IniDBBuilderPackage
variables in do_local_ini() and do_remote_ini were declared outside the loop
that processed the files.  Move the declaration inside the loop so that the
destructor is called after each iteration.

6 years agoHandle test-only packages better
Jon Turney [Wed, 6 Jun 2018 18:57:56 +0000 (19:57 +0100)]
Handle test-only packages better

Don't create a current version with an empty version string when parsing a
package which doesn't have a current version.

6 years agoSort the packages listed in the "confirm" dialog
Ken Brown [Sun, 18 Mar 2018 16:31:37 +0000 (12:31 -0400)]
Sort the packages listed in the "confirm" dialog

6 years agoGive a fatal error on a checksum failure during install
Ken Brown [Wed, 21 Mar 2018 18:03:00 +0000 (14:03 -0400)]
Give a fatal error on a checksum failure during install

This only affects local installs, where the hash of an archive is not
checked until we reach do_install_thread().  At this point it seems
too late to recover safely.

6 years agoLink with -lws2_32 again
Yaakov Selkowitz [Tue, 20 Mar 2018 21:42:19 +0000 (16:42 -0500)]
Link with -lws2_32 again

libgpg-error 1.28 includes new APIs which use socket functions, which
on Win32 are provided by WinSock2.

https://cygwin.com/ml/cygwin/2018-03/msg00306.html

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
6 years agoMigrate configured connection type from the removed 'direct(legacy)' to 'direct' release_2.891
Jon Turney [Thu, 15 Mar 2018 22:13:05 +0000 (22:13 +0000)]
Migrate configured connection type from the removed 'direct(legacy)' to 'direct'

6 years agoMake SolvableVersion::accessible() useful for local installs release_2.890
Ken Brown [Sun, 11 Mar 2018 14:43:06 +0000 (10:43 -0400)]
Make SolvableVersion::accessible() useful for local installs

For local installs, we need SolvableVersion::accessible() indicate whether
or not there is an archive available in the local cache.

This is used in packagemeta::set_action() to prevent the chooser from
offering unavailable versions for re-installation.

6 years agoRemove packages not found by scan from solver
Jon Turney [Wed, 14 Mar 2018 14:52:57 +0000 (14:52 +0000)]
Remove packages not found by scan from solver

Remove not-installed packages not found by scan from solver, as well as from
packagemeta, to avoid solutions including them from being proposed.

6 years agoAdd a --version option
Jon Turney [Wed, 7 Mar 2018 14:47:45 +0000 (14:47 +0000)]
Add a --version option

Add a --version option, and make some related tweaks to output

6 years agoAdd conflicts: support
Jon Turney [Wed, 7 Mar 2018 15:28:12 +0000 (15:28 +0000)]
Add conflicts: support

6 years agoAdd provides: support
Jon Turney [Wed, 7 Mar 2018 15:20:56 +0000 (15:20 +0000)]
Add provides: support

6 years agoAlways give the fake root category the name 'All'
Jon Turney [Tue, 6 Mar 2018 16:17:30 +0000 (16:17 +0000)]
Always give the fake root category the name 'All'

After we rearranged things in 0c539f7f, it's now too early to tell if we
have any packages or not.

The only thing about this category that is ever used is it's name, so we
don't actually need to use the real 'All' category here.

Saying 'No packages found' was never particularly helpful here, so just use
a fake category with the fixed name 'All'.

6 years agoFix packagemeta::ScanDownloadedFiles
Jon Turney [Tue, 6 Mar 2018 14:56:40 +0000 (14:56 +0000)]
Fix packagemeta::ScanDownloadedFiles

packagemeta::scan clears the site list if the package was not found, and
packagemeta::ScanDownloadedFiles uses packageversion::accessible() to check
that.

Instead communicate via a return value

v2:
empty packages were always inaccessible, even though we returned early from
scan() without clearing the sites list, so return false in that case

6 years agoUpdate .gitignore
Jon Turney [Tue, 6 Mar 2018 15:48:03 +0000 (15:48 +0000)]
Update .gitignore

6 years agoAdd setup-minimum-version: to setup.ini
Jon Turney [Fri, 19 Jan 2018 15:36:03 +0000 (15:36 +0000)]
Add setup-minimum-version: to setup.ini

This allows setup.ini to require a certain setup version, rather than advise
a newer version when one is available.

Unfortunately, versions of setup prior to this one don't implement this, but
at least we have this going forward.

When we want to start using this, we can break backwards compatibility with
even older setup in a less clean way, simply by using setup.ini grammar that
they can't parse.

6 years agoImprove file:// URL handling
SZAVAI Gyula [Wed, 28 Feb 2018 11:51:24 +0000 (12:51 +0100)]
Improve file:// URL handling

As a repo URL, we're accepting:

* raw windows paths (with both \ and /), e.g.

  c:\cygwin repo
  \\machine\share\cygwin repo

* proper file: protocol URLs, e.g.

  file:///c:/cygwin%20repo
  file://machine/share/cygwin%20repo

Most non-standard URLs accepted by the old code should work, too.
Paths longer than 260 characters are not supported anymore.

6 years agoNetIO: Remove unused URL parsing code
SZAVAI Gyula [Wed, 28 Feb 2018 11:51:23 +0000 (12:51 +0100)]
NetIO: Remove unused URL parsing code

6 years agoRemove simpsock.{cc,h} and drop linkage with ws2_32
Jon Turney [Sun, 28 Jan 2018 19:43:39 +0000 (19:43 +0000)]
Remove simpsock.{cc,h} and drop linkage with ws2_32

6 years agoRemove NetIO_HTTP
SZAVAI Gyula [Sun, 28 Jan 2018 19:36:49 +0000 (19:36 +0000)]
Remove NetIO_HTTP

6 years agoAdd Proxy class to encapsulate proxy configuration for NetIO_IE5
SZAVAI Gyula [Fri, 26 Jan 2018 16:56:35 +0000 (17:56 +0100)]
Add Proxy class to encapsulate proxy configuration for NetIO_IE5

Drop Proxy::bypass method (jturney)

6 years agoRemove NetIO_File
SZAVAI Gyula [Sun, 28 Jan 2018 19:20:53 +0000 (19:20 +0000)]
Remove NetIO_File

Convert raw paths into file:// form URLs so WinInet can handle them

This maybe changes the set of malformed file:// URLs we handle (which is ok,
although it would be nice to know the details),

6 years agoRename IDC_NET_IE5 to IDC_NET_PRECONFIG
SZAVAI Gyula [Fri, 26 Jan 2018 16:56:33 +0000 (17:56 +0100)]
Rename IDC_NET_IE5 to IDC_NET_PRECONFIG

6 years agoRemove direct(legacy) connection type
SZAVAI Gyula [Sun, 28 Jan 2018 19:06:49 +0000 (19:06 +0000)]
Remove direct(legacy) connection type

If setup.rc contains net-method:Legacy, it will be silently converted to
net-method:IE

6 years agoAvoid a crash if we try to uninstall an unknown package release_2.889
Jon Turney [Wed, 21 Feb 2018 21:31:20 +0000 (21:31 +0000)]
Avoid a crash if we try to uninstall an unknown package

This can happen if the solver decides it wants to uninstall 'base'.

6 years agoA package provides what it obsoletes, as well as itself.
Jon Turney [Wed, 21 Feb 2018 21:29:20 +0000 (21:29 +0000)]
A package provides what it obsoletes, as well as itself.

This is needed to allow a package which obsoletes an installed package to
get installed.

Will need to revisit this when we implement explicit provides: in setup.ini.

6 years agoDon't crash in confirm page when installing source packages release_2.888
Jon Turney [Tue, 13 Feb 2018 22:32:06 +0000 (22:32 +0000)]
Don't crash in confirm page when installing source packages

6 years agoFix a spelling mistake in a tooltip
Jon Turney [Wed, 7 Feb 2018 12:04:13 +0000 (12:04 +0000)]
Fix a spelling mistake in a tooltip

6 years agoAdd .appyveyor.yml release_2.887
Jon Turney [Thu, 1 Feb 2018 13:20:42 +0000 (13:20 +0000)]
Add .appyveyor.yml

6 years agoMake sure we process the last version description in setup.ini
Jon Turney [Fri, 2 Feb 2018 19:41:58 +0000 (19:41 +0000)]
Make sure we process the last version description in setup.ini

6 years agoAllow depends: to be empty release_2.886
Jon Turney [Wed, 31 Jan 2018 14:21:09 +0000 (14:21 +0000)]
Allow depends: to be empty

If a version section has no depends:, we'll end up using any previous
requires: or depends: seen.

This isn't quite right, and we should only use the requires: (if any) if a
particular version section has no depends:

For the moment, just allow an empty depends:, so a version section can be
explicitly marked as having no depends:

6 years agoApply default problem solutions in unattended mode
Jon Turney [Tue, 30 Jan 2018 21:14:07 +0000 (21:14 +0000)]
Apply default problem solutions in unattended mode

Also log problems
Also make --include-source work in unattended mode

6 years agoMerge branch 'topic/libsolv' release_2.885
Jon Turney [Sun, 28 Jan 2018 15:12:03 +0000 (15:12 +0000)]
Merge branch 'topic/libsolv'

6 years agoAdd a new page to let the user review and confirm actions topic/libsolv
Jon Turney [Tue, 23 Jan 2018 17:50:13 +0000 (17:50 +0000)]
Add a new page to let the user review and confirm actions

Add a new page to let the user review and confirm actions, after
dependencies have been added and problems solved.

Ideally, this would re-use the picker-page grid to present these actions,
but for the moment just write it as text (as we did before in the prereq
page) (This is still a slight improvement as it shows all actions for
review, not just the ones added by the solver)

6 years agoAdd handling for 'replace-versions:' in setup.ini
Jon Turney [Mon, 22 Jan 2018 22:33:54 +0000 (22:33 +0000)]
Add handling for 'replace-versions:' in setup.ini

Sometimes we make mistakes and release versions which are broken or have a
version which is wildly incorrect.  We can remove those versions from future
download, but they can linger indefinitely in installs (until a distupgrade
is done), as there is a higher version already installed.

Allow setup.ini to contain a per-package 'replace-versions:' header, which
identifies any versions which should be forcibly dist-upgraded (i.e.
downgraded to the best version in setup.ini).

(It's not possible to just instruct the solver to disfavour these specific
versions, as that's not implemented, see libsolv issue #170)

6 years agoAdd 'depends2:' as an alternative to 'depends':
Jon Turney [Fri, 19 Jan 2018 19:04:38 +0000 (19:04 +0000)]
Add 'depends2:' as an alternative to 'depends':

Prior versions of setup recognize 'depends:', but don't handle it properly:

(i) they always use the dependencies of the current version, not the version
actually being installed

(ii) they cannot parse any version-relation containing a relation and
version identifier (i.e. they can only handle a bare package name)

Thus, there is no safe way to start using 'depends:' lines without getting
undesirable behaviour from old versions of setup

(In case (i), it may install incorrect dependencies if a non-current version
is installed, potentially resulting in a broken package.

In case (ii), it will fail to parse the setup.ini with an error.)

Add 'depends2:', so calm can supply per-version dependencies in a form
useful to setup with libsolv-based dependency solving, without effecting
older versions of setup.

6 years agoPreserve reinstall tasks when going back from dependency problem page.
Jon Turney [Mon, 15 Jan 2018 16:27:39 +0000 (16:27 +0000)]
Preserve reinstall tasks when going back from dependency problem page.

6 years agoClarify the unsolved-problems warning
Ken Brown [Sat, 13 Jan 2018 23:50:14 +0000 (18:50 -0500)]
Clarify the unsolved-problems warning

If the user unchecks the 'Accept default solutions' box and selects
'Next', don't imply that choosing a non-default solution would break
their system.

6 years agoRemove all trailing ".any" from package names in problem report
Jon Turney [Sat, 13 Jan 2018 14:00:01 +0000 (14:00 +0000)]
Remove all trailing ".any" from package names in problem report

6 years agoApply default solution to dependency problems
Jon Turney [Wed, 6 Dec 2017 17:52:45 +0000 (17:52 +0000)]
Apply default solution to dependency problems

Mark the default solution in the problem report

Refactor of SolverSolution::update() so we can apply the default
solution(s).

Also:

Break out logging of the task list, so we can show it in the "dependency
problems exists, but don't use the default solution, just do what I ask"
case.

Break out 'include-source' process, so it can have effect in the case where
dependency problems exist.

v2:
Actually re-solve after adjusting the task list with default solutions.

Use the last solution as the default solution.  The solver sorts the
solutions, and I think the last one will normally be the one which removes
the problematic task from the task list

6 years agoMore crash avoidance in SolvableVersion member functions
Jon Turney [Mon, 6 Nov 2017 18:02:08 +0000 (18:02 +0000)]
More crash avoidance in SolvableVersion member functions

The following call-stack means we end up calling SolvableVersion methods
before packagedb::prep(), i.e. before attributes have been internalized, so
their values aren't available.

PickView::init_headers
PickView::refresh
PickView::init
ChooserPage::createListview
ChooserPage::OnInit

We call PickView::refresh again after we've computed the initial solution,
so the columns always end up with the correct width.

6 years agoCorrectly order preparing packagedb for chooser
Jon Turney [Sat, 4 Nov 2017 18:01:49 +0000 (18:01 +0000)]
Correctly order preparing packagedb for chooser

Do packagedb::prep() in ChooserPage::OnActivate(), as doing it in OnInit()
is wrong, as that only gets called once (but lazily).

Make packagedb::prep() idempotent after packagedb::init(), so it doesn't do
it's work again, if we come back to chooser from a later page.

Re-arrange applying command line package selection, and determining the
initial solution, which should only happen once, but after packagedb::prep()

6 years agoEnsure packagedb and underlying solver pool is empty before we read setup.ini
Jon Turney [Thu, 2 Nov 2017 14:15:04 +0000 (14:15 +0000)]
Ensure packagedb and underlying solver pool is empty before we read setup.ini

We need to make sure the packagedb is empty if we step backwards to here.

v2:
Also clear solver stored in SolverSolution, which holds a pool pointer

6 years agoRemove the function filemanip.cc:base()
Ken Brown [Fri, 27 Oct 2017 18:47:21 +0000 (14:47 -0400)]
Remove the function filemanip.cc:base()

This was called only on plain filenames, not full pathnames, so it was not
needed.  Moreover, it wasn't correctly handling filenames containing colons.

6 years agoAvoid clobbering installed.db when no setup.ini is found
Ken Brown [Sat, 28 Oct 2017 17:46:19 +0000 (13:46 -0400)]
Avoid clobbering installed.db when no setup.ini is found

If no setup.ini is found, do_ini_thread is never called.  But we need to
ensure that packagedb::read is called, or else installed.db gets emptied.
Move the calls to packagedb::read and other packagedb functions from
do_ini_thread to ChooserPage::OnInit.

6 years agoDon't override a Skip selection
Ken Brown [Fri, 20 Oct 2017 10:59:54 +0000 (06:59 -0400)]
Don't override a Skip selection

Introduce SolverTasks::taskSkip, and generate it when the user chooses
to Skip a package that the solver wants to install.  Implement it by
sending a SOLVER_LOCK command on the package name.

6 years agoFix the functionality of taskKeep
Ken Brown [Thu, 19 Oct 2017 18:44:45 +0000 (14:44 -0400)]
Fix the functionality of taskKeep

A taskKeep is generated whenever the user wants to keep an installed
version that's different from the default_version, where the latter is
whatever the solver has chosen.  We need to make sure that
default_version is set appropriately wherever it is needed.

6 years agoExtend the SolvableVersion member functions to the empty package
Ken Brown [Tue, 17 Oct 2017 12:12:48 +0000 (08:12 -0400)]
Extend the SolvableVersion member functions to the empty package

Currently some of these functions cause crashes when the package is
empty because the libsolv function pool_id2solvable unconditionally
dereferences its first argument ('pool').

6 years agoTake command line package/category install/uninstall into account
Jon Turney [Mon, 9 Oct 2017 17:10:52 +0000 (18:10 +0100)]
Take command line package/category install/uninstall into account

Rather than overwriting the packagedb changes made from processing command
line options in ChooserPage::OnInit(), use the 'initial' flag to
changeTrust() in createListview() to take them into consideration.

--upgrade-also and --force-current are now handled directly.

6 years agoChange UI to add 'Sync' choice and change 'Test' to checkbox
Jon Turney [Mon, 9 Oct 2017 14:37:06 +0000 (15:37 +0100)]
Change UI to add 'Sync' choice and change 'Test' to checkbox

Set the initial update mode in UI correctly:
- 'Sync', if --force-current option is used
- 'Keep', if packages are selected on command line without --upgrade-also
- 'Current', otherwise

Add mapping of 'Sync' to SolverSolution::updateForce to mapping of UI
update mode to solver update mode.

6 years agoAdd distupgrade support to solver
Jon Turney [Mon, 9 Oct 2017 14:05:22 +0000 (15:05 +0100)]
Add distupgrade support to solver

Also, ignore change transactions (these are usually vendorchange as we
forget the vendor for installed packages)

Also, don't put unknown type transactions into the transaction list

6 years agoNon-existent source packages aren't accessible for installation
Jon Turney [Sat, 30 Sep 2017 22:23:29 +0000 (23:23 +0100)]
Non-existent source packages aren't accessible for installation

Prevent the src checkbox appearing for source packages which don't exist

6 years agoUse solver for initial pick list when upgrading
Jon Turney [Fri, 29 Sep 2017 13:46:46 +0000 (14:46 +0100)]
Use solver for initial pick list when upgrading

Use the solver to determine initial pick list for Curr or Test, rather than
directly picking packages. Thus the solver's initial solution in the pending
view should be the first thing the user sees.

Note: Keep is magical, and the package db pick list gets reset by
ChooserPage::keepClicked(), rather than going through changeTrust().

We don't unify these two paths, because the trust level passed to
changeTrust() gets recorded in PickView::defTrust and used by the line
picker in some mysterious way, and seems to only be expected to be
TRUST_CURR or TRUST_TEST.  There's probably a subtle bug here, in that the
line picker might behave differently depending on if Curr or Test was
selected before Keep.

Drop passing upgrade flag to solver run after the user has made their
selections: the picker selection now reflects what the user is asking for.

6 years agoHandle 'Source:' lines in setup.ini
Jon Turney [Fri, 26 May 2017 13:30:40 +0000 (14:30 +0100)]
Handle 'Source:' lines in setup.ini

This is somewhat awkward:

Storing the source package by Id rather than by name is looking a bit like a
premature optimization, but being to able to refer to source packages by Id
is very handy.

If the src pkg isn't seen until after the pkg, we don't know what it's Id
will be.  So we have to go back and fixup the Ids after we've seen all
packages.

6 years agoAllow user to refuse the default problem solutions
Ken Brown [Sat, 16 Sep 2017 15:39:40 +0000 (11:39 -0400)]
Allow user to refuse the default problem solutions

Add new method SolverSolution::db2trans to change the solver's
transaction list to reflect the package database.  Use it if the user
refuses the default problem solutions.  Reinstate warning that this
could cause breakage.

Remove PrereqPage::OnMessageCmd, which is no longer needed (and which
disallows clicking Next if the "Accept default problem solutions" box
is unchecked).

v2:
Tweak MessageBox text

6 years agoAdd a ficitious "base" package that requires all Base packages
Ken Brown [Sat, 16 Sep 2017 15:28:37 +0000 (11:28 -0400)]
Add a ficitious "base" package that requires all Base packages

Modify the solver's problem report so that it refers to "Base
packages" rather than the "base" package.

6 years agoAdd new member function SolverSolution::trans2db
Ken Brown [Fri, 8 Sep 2017 15:16:24 +0000 (11:16 -0400)]
Add new member function SolverSolution::trans2db

This resets the package database to reflect the solver's transaction
list.  Call this if the user clicks Back on the Prerequisite page, to
allow reviewing and making changes before accepting the solver's
solution.

v2:
Drop text about seeing default solutions.  They aren't applied as we want
the user to choose there own solution.

6 years agoFactor out SolverTasks::setTasks()
Ken Brown [Sat, 16 Sep 2017 14:50:37 +0000 (10:50 -0400)]
Factor out SolverTasks::setTasks()

Move the code from prereq.cc that makes a solver task list from packagedb
state into a new function SolverTasks::setTasks.

6 years agoFix 'SolverTasks::taskList' typedef
Ken Brown [Mon, 4 Sep 2017 20:44:31 +0000 (16:44 -0400)]
Fix 'SolverTasks::taskList' typedef

Remove the '&'.  This was causing source installs to all refer to the
same package, due to the call to q.add(pkg->desired.sourcePackage(),
SolverTasks::taskInstall) in PrereqChecker::isMet.

6 years agoDownload only the packages being installed
Ken Brown [Sat, 2 Sep 2017 18:27:52 +0000 (14:27 -0400)]
Download only the packages being installed

6 years agoDon't create an "_installed_test_" repo
Ken Brown [Wed, 6 Sep 2017 14:44:27 +0000 (10:44 -0400)]
Don't create an "_installed_test_" repo

This prevents libsolv from knowing that an installed test release is
installed, since pool->installed is "_installed".

6 years agoAllow the installation of test packages without setting "Test" globally
Ken Brown [Wed, 6 Sep 2017 02:22:23 +0000 (22:22 -0400)]
Allow the installation of test packages without setting "Test" globally

Instead of disabling test repos when "Test" is not selected, just give
them lower priority than ordinary repos.

v2:
Give test repos normal, rather than high priority, when selected so we don't
prefer a test version over a higher non-test version.

6 years agoAsk solver to check dependencies of installed packages
Ken Brown [Sat, 16 Sep 2017 14:06:26 +0000 (10:06 -0400)]
Ask solver to check dependencies of installed packages

6 years agoImprove the reading of installed.db
Ken Brown [Sat, 2 Sep 2017 16:37:29 +0000 (12:37 -0400)]
Improve the reading of installed.db

When creating a packageversion for a package listed in installed.db,
use the information for the installed version rather than the
"current" version.  Add a new function packagedb::findBinaryVersion to
help with this.

Get as much information about an installed information as possible
from the prior reading of setup.ini.

Improve detection of installed test releases.  An installed test
release might not appear in setup.ini because it is no longer
available (e.g., it might have been replaced by a newer test release).
Detect this by comparing its version to the current version.

6 years agoAdd a PackageSpecification() constructor which takes a package name and version
Jon Turney [Fri, 26 May 2017 13:30:40 +0000 (14:30 +0100)]
Add a PackageSpecification() constructor which takes a package name and version

6 years agoAdd SolvableVersion::obsoletes()
Ken Brown [Sat, 16 Sep 2017 11:19:55 +0000 (07:19 -0400)]
Add SolvableVersion::obsoletes()

v2: Add SolvableVersion::obsoletes(), factor out key-to-deplist code from
SolvableVersion::depends() as SolvableVersion::deplist()

6 years agoFix setup.ini parsing
Ken Brown [Sat, 2 Sep 2017 15:57:25 +0000 (11:57 -0400)]
Fix setup.ini parsing

The IniDBBuilderPackage::process function wasn't fully resetting the
addPackageData for a new version of a package.  This caused SHA512
failures among other things.

This page took 0.074988 seconds and 5 git commands to generate.