forked from calamares/calamares
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from Hayao0819/master
3.2.32.1 ← wut
- Loading branch information
Showing
309 changed files
with
76,668 additions
and
59,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ CMakeLists.txt.user | |
|
||
# Backup files | ||
*~ | ||
*.bak | ||
|
||
# Kate | ||
*.kate-swp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# === This file is part of Calamares - <https://calamares.io> === | ||
# | ||
# SPDX-FileCopyrightText: 2020 Adriaan de Groot <[email protected]> | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
# | ||
### | ||
# | ||
# Finds KPMcore and consistently sets API flags based on the version. | ||
# | ||
if ( NOT KPMcore_searched_for ) | ||
set( KPMcore_searched_for TRUE ) | ||
|
||
find_package( KPMcore 3.3 ) | ||
set_package_properties( | ||
KPMcore PROPERTIES | ||
URL "https://invent.kde.org/kde/kpmcore" | ||
DESCRIPTION "KDE Partitioning library" | ||
TYPE RECOMMENDED | ||
PURPOSE "For disk partitioning support" | ||
) | ||
|
||
if( KPMcore_FOUND ) | ||
set( KPMcore_API_DEFINITIONS "" ) | ||
if( KPMcore_VERSION VERSION_GREATER "3.3.70" AND KPMcore_VERSION VERSION_LESS "4.0" ) | ||
message( FATAL_ERROR "KPMCore beta versions ${KPMcore_VERSION} not supported" ) | ||
endif() | ||
if ( KPMcore_VERSION VERSION_GREATER "3.3.0") | ||
list( APPEND KPMcore_API_DEFINITIONS WITH_KPMCORE331API) # kpmcore > 3.3.0 with deprecations | ||
endif() | ||
if ( KPMcore_VERSION VERSION_GREATER_EQUAL "4.0") | ||
list( APPEND KPMcore_API_DEFINITIONS WITH_KPMCORE4API) # kpmcore 4 with new API | ||
endif() | ||
if( KPMcore_VERSION VERSION_GREATER_EQUAL "4.2" ) | ||
list( APPEND KPMcore_API_DEFINITIONS WITH_KPMCORE42API) # kpmcore 4.2 with new API | ||
endif() | ||
else() | ||
set( KPMcore_API_DEFINITIONS WITHOUT_KPMcore ) | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!-- SPDX-FileCopyrightText: no | ||
SPDX-License-Identifier: CC0-1.0 | ||
--> | ||
|
||
# Contributing to Calamares | ||
|
||
### Dependencies | ||
|
||
Main: | ||
* Compiler with C++14 support: GCC >= 5 or Clang >= 3.5.1 | ||
* CMake >= 3.3 | ||
* Qt >= 5.9 | ||
* yaml-cpp >= 0.5.1 | ||
* Python >= 3.3 (required for some modules) | ||
* Boost.Python >= 1.55.0 (required for some modules) | ||
* KDE extra-cmake-modules >= 5.18 (recommended; required for some modules; | ||
required for some tests) | ||
* KDE Frameworks KCoreAddons (>= 5.58 recommended) | ||
* PythonQt (optional, deprecated) | ||
|
||
Individual modules may have their own requirements; | ||
these are listed in CMake output. | ||
Particular requirements (not complete): | ||
|
||
* *fsresizer* KPMCore >= 3.3 (>= 4.2 recommended) | ||
* *partition* KPMCore >= 3.3 (>= 4.2 recommended) | ||
* *users* LibPWQuality (optional) | ||
|
||
### Building | ||
|
||
See [wiki](https://github.com/calamares/calamares/wiki) for up to date | ||
[building](https://github.com/calamares/calamares/wiki/Develop-Guide) | ||
and [deployment](https://github.com/calamares/calamares/wiki/Deploy-Guide) | ||
instructions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.