mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 17:47:21 +01:00
7bc4a666e6
* extract runtime building from cfg * respect AURRPCURL * use -Syu if there are no targets, allows to pass extra options * one more step towards removing runtime from cfg
70 lines
1.4 KiB
Go
70 lines
1.4 KiB
Go
package settings
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/Jguer/yay/v12/pkg/db"
|
|
"github.com/Jguer/yay/v12/pkg/text"
|
|
|
|
"github.com/leonelquinteros/gotext"
|
|
)
|
|
|
|
type configMigration interface {
|
|
// Description of what the migration does
|
|
fmt.Stringer
|
|
// return true if migration was done
|
|
Do(config *Configuration) bool
|
|
// Target version of the migration (e.g. "11.2.1")
|
|
// Should match the version of yay releasing this migration
|
|
TargetVersion() string
|
|
}
|
|
|
|
type configProviderMigration struct{}
|
|
|
|
func (migration *configProviderMigration) String() string {
|
|
return gotext.Get("Disable 'provides' setting by default")
|
|
}
|
|
|
|
func (migration *configProviderMigration) Do(config *Configuration) bool {
|
|
if config.Provides {
|
|
config.Provides = false
|
|
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (migration *configProviderMigration) TargetVersion() string {
|
|
return "11.2.1"
|
|
}
|
|
|
|
func DefaultMigrations() []configMigration {
|
|
return []configMigration{
|
|
&configProviderMigration{},
|
|
}
|
|
}
|
|
|
|
func (c *Configuration) RunMigrations(migrations []configMigration,
|
|
configPath, newVersion string,
|
|
) error {
|
|
saveConfig := false
|
|
|
|
for _, migration := range migrations {
|
|
if db.VerCmp(migration.TargetVersion(), c.Version) > 0 {
|
|
if migration.Do(c) {
|
|
text.Infoln("Config migration executed (",
|
|
migration.TargetVersion(), "):", migration)
|
|
|
|
saveConfig = true
|
|
}
|
|
}
|
|
}
|
|
|
|
if saveConfig {
|
|
return c.Save(configPath, newVersion)
|
|
}
|
|
|
|
return nil
|
|
}
|