Dawid Wróbel
f446c96825
[kf5textwidgets] new port ( #19766 )
...
* Add kf5textwidgets port
* Fixed kf5textwidgets for windows
* [kf5*] update to 5.75.0
* [kf5textwidgets] convert manifest to JSON
* [kf5textwidgets] use gettext port tools
* [kf5textwidgets] use current spec syntax
* [kf5textwidgets] remove redundant options
* [kf5textwidgets] update to 5.84
* [kf5textwidgets] only remove what's needed
* [kf5textwidgets] wrap paths in quotes
* [kf5textwidgets] default data location is OK
* [kf5textwidgets] update versions
* [kf5textwidgets] DISABLE_PARALLEL_CONFIGURE
* [kf5textwidgets] update versions
* [kf5textwidgets] fix Windows static builds
* [kf5textwidgets] update versions
* [kf5textwidgets] remove /bin when building static
* [kf5textwidgets] update versions
* [kf5textwidgets] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5textwidgets] update versions
* [kf5textwidgets] libiconv patches only for windows static builds
* [kf5textwidgets] update versions
* [kf5textwidgets] cleanup, iconv was fixed in kf5i18n
* [kf5textwidgets] update versions
* [kf5textwidgets] use generic, non-semver versioning
* [kf5textwidgets] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-09-13 19:46:28 -07:00
Dawid Wróbel
f66a43752d
[kf5package] new port ( #19195 )
...
* Add kf5package port
* [kf5package] remove vcpkg-cmake-wrapper block
* [kf5package] more fixes
* Fixed kf5package for windows
* Fixed kf5package for windows (by Kuntal Majumder)
* [kf5package] use PORT variable where applicable
* [kf5package] update to 5.75.0
* [kf5package] fix macOS libiconv
* [kf5package] update to 5.84.0
* [kf5package] update versions
* [kf5package] use vcpkg_copy_tools() to copy kpackagetool5
* [kf5package] update versions
* [kf5package] use semVer
* [kf5package] remove redundant options, wrap paths in quotes
* [kf5package] update to current spec
* [kf5package] update versions
* [kf5package] fix configure options
* [kf5package] update versions
* [kf5package] fix vcpkg_cmake_config_fixup() usage
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* [kf5package] update versions
* [kf5package] libiconv patches only for windows static builds
* [kf5package] update versions
* [kf5package] libiconv patches also on osx
* [kf5package] update versions
* [kf5package] cleanup, iconv was fixed in kf5i18n
* [kf5package] update versions
* [kf5package] use generic, non-semver versioning
* [kf5package] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-13 19:46:21 -07:00
Dawid Wróbel
d36353bb2a
[kf5service] new port ( #19180 )
...
* Add kf5service port
* Add kf5service port
* [kf5service] update to 5.75.0
* [kf5service] update to 5.84.0
* [kf5service] update versions
* [kf5service] update to current spec
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5service] use semVer
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5service] wrap paths in quotes
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5service] update versions
* [kf5package] only remove what's needed
* [kf5package] phrasing, other cleanups
* [kf5service] update versions
* [kf5service] DISABLE_PARALLEL_CONFIGURE
* [kf5service] update versions
* [kf5service] add gettext tools dependency
* [kf5service] update versions
* [kf5service] upstream requires bison >= 3.0
* [kf5service] remove unused dependencies
* [kf5service] update versions
* [kf5service] remove redundant options
* [kf5service] update versions
* [kf5service] copy kbuildsycoca5 tool
* [kf5service] update versions
* [kf5service] fix Windows static builds
* [kf5service] update versions
* [kf5service] cleanup, iconv was fixed in kf5i18n
* [kf5service] update versions
* [kf5service] use generic, non-semver versioning
* [kf5service] update versions
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-09-13 19:46:09 -07:00
Dawid Wróbel
b614a40e3c
[kf5i18n] static builds fixes ( #20016 )
...
* [kf5i18n] fix libiconv transient dependency
* [kf5i18n] update versions
2021-09-09 21:15:36 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
Kai Pastor
642d1ccb27
[kealib] Update, revise features ( #19118 )
...
* Convert manifest to JSON
* Remove purely transitive dependencies
* Parallel is unsupported with HDF5 C++
* Revise portfile
* Update to 1.4.14
* x-add-version
2021-09-07 11:56:42 -07:00
Dawid Wróbel
698ffe5d25
[kf5solid] Fix CMake config; some extra fixes ( #19810 )
...
* [kf5solid] require bison >= 3.0
* [kf5solid] fix CMake config file
* [kf5solid] some apps actually use solid-hardware5
diff --git a/ports/kf5solid/portfile.cmake b/ports/kf5solid/portfile.cmake
index b876b00c0..53cf1841b 100644
--- a/ports/kf5solid/portfile.cmake
+++ b/ports/kf5solid/portfile.cmake
@@ -44,6 +44,11 @@ vcpkg_cmake_install()
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/KF5Solid)
vcpkg_copy_pdbs()
+vcpkg_copy_tools(
+ TOOL_NAMES solid-hardware5
+ AUTO_CLEAN
+ )
+
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
@@ -51,9 +56,6 @@ endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/etc")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
-# solid-hardware and solid-power are a non-dev tools allowing to list hardware and power managament status of one's system. No need to keep them.
-file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-hardware5${VCPKG_HOST_EXECUTABLE_SUFFIX}")
-file(REMOVE "${CURRENT_PACKAGES_DIR}/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}" "${CURRENT_PACKAGES_DIR}/debug/bin/solid-power${VCPKG_HOST_EXECUTABLE_SUFFIX}")
file(RENAME "${CURRENT_PACKAGES_DIR}/debug/lib/qml" "${CURRENT_PACKAGES_DIR}/debug/qml")
file(RENAME "${CURRENT_PACKAGES_DIR}/lib/qml" "${CURRENT_PACKAGES_DIR}/qml")
* [kf5solid] /etc is empty, no need to remove it
* [kf5solid] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5solid] update versions
2021-09-03 22:20:10 -07:00
Dawid Wróbel
14f6b67e42
[kf5globalaccel] new port ( #19757 )
...
* Add kf5globalaccel port
* Revert "Add kf5globalaccel port"
This reverts commit f1ac3db8e2
.
* Add kf5globalaccel port
* Fixed kf5globalaccel for windows
* [kf5globalaccel] update to 5.75.0
* [kf5globalaccel] update to 5.84.0
* [kf5globalaccel] use vcpkg_copy_tools
* [kf5globalaccel] only remove what's needed
* [kf5globalaccel] wrap paths in quotes
* [kf5globalaccel] use semVer
* [kf5globalaccel] update versions
* [kf5globalaccel] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5globalaccel] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-09-03 17:17:46 -07:00
Dawid Wróbel
960264885a
[kf5crash] fix cmake.in to allow consumption by static builds ( #19179 )
...
* [kf5crash] fix cmake.in to allow consumption by static builds
* [kf5crash] update versions
* [kf5crash] kcrash is supported on Win and macOS, too
* [kf5crash] update versions
* [kf5crash] replace deprecated functions
* [kf5crash] update versions
* [kf5crash] don't overzealously delete folders
* [kf5crash] update versions
* [kf5crash] proactively disable docs
* [kf5crash] use semVer
* [kf5crash] update versions
* [kf5crash] remove extraneous options
* [kf5crash] update versions
* [kf5crash] wrap paths in quotes
* [kf5crash] update versions
* [kf5crash] remove bin folders in static build
* [kf5crash] update versions
* [kf5crash] rename patch file
* [kf5crash] update versions
* [kf5crash] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5crash] update versions
2021-09-03 16:41:20 -07:00
JonLiu1993
7ad9757560
[ktx] update to 4.0.0 release ( #18644 )
...
* [ktx] update to 4.0.0
* update version
* fix-arm64-error
* update version
* fix ci error
* update version
2021-09-03 16:31:10 -07:00
Dawid Wróbel
aa65c404c6
[kf5coreaddons] fix Windows static builds & CMake Config ( #19439 )
...
* [kf5coreaddons] fix Windows static builds
https://invent.kde.org/frameworks/kcoreaddons/-/merge_requests/122
Also:
- replace deprecated functions
- embrace paths in quotes
- actually remove the folders that need to be removed
* [kf5coreaddons] update versions
* [kf5coreaddons] delete redundant REMOVE
* [kf5coreaddons] update versions
* [kf5coreaddons] save data files to default /share location
* [kf5coreaddons] update versions
* [kf5coreaddons] fix CMake Config for static builds
* [kf5coreaddons] update versions
* [kf5coreaddons] update versions
* [kf5coreaddons] fix vcpkg_cmake_config_fixup() usage
* [kf5coreaddons] update versions
* [kf5coreaddons] workaround Linux Inotify issue
* [kf5coreaddons] update versions
* [kf5coreaddons] rename patch file
* [kf5coreaddons] update versions
2021-09-01 11:29:13 -07:00
Dawid Wróbel
d55546a5bf
[kf5archive] fix cmake.in to allow consumption by static builds ( #19194 )
...
* [kf5archive] fix cmake.in to allow consumption by static builds
* [kf5archive] update versions
* [kf5archive] add lzma, zstd features
* [kf5archive] update versions
* [kf5archive] fix MAYBE_UNUSED_VARIABLES usage
* [kf5archive] replace deprecated functions
* [kf5archive] use semVer
* [kf5archive] update versions
* [kf5archive] add vcpkg_check_features
* [kf5archive] update versions
* [kf5archive] remove redundant option
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5archive] wrap all paths in quotes
* [kf5archive] update versions
* [kf5archive] lookup ZSTD using CMake
* [kf5archive] update versions
* [kf5archive] fix vcpkg_cmake_config_fixup() usage
* [kf5archive] update versions
* [kf5archive] rename patch files
* [kf5archive] update versions
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-09-01 11:19:07 -07:00
Dawid Wróbel
a9d758fe25
[kf5configwidgets] new port ( #16562 )
...
* Add kf5configwidgets port
* Fix KF5ConfigWidgets for windows
* [kf5configwidgets] update to 5.75.0
* [kf5configwidgets] convert CONTROL to manifest
* [kf5configwidgets] update versions
* [kf5configwidgets] update to 5.81
* [kf5configwidgets] update versions
* [kf5configwidgets] update to 5.84
* [kf5configwidgets] update versions
* [kf5configwidgets] add 'designerplugin' feature
* [kf5configwidgets] update versions
* [kf5configwidgets] wrap paths in quotes
* [kf5configwidgets] update versions
* [kf5configwidgets] actually update SHA512
* [kf5configwidgets] update versions
* [kf5configwidgets] fix static builds
* [kf5configwidgets] set QT plugins path correctly
* [kf5configwidgets] update versions
* [kf5configwidgets] remove obsolete versions
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5configwidgets] rename patch file
* [kf5configaddons] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-08-31 12:40:34 -07:00
Dawid Wróbel
ae89e7d99f
[kf5wallet] new port ( #19450 )
...
* Add kf5kwallet port
* Fixed kf5wallet for windows
* [kf5wallet] update to 5.84.0
* [kf5wallet] port CONTROL to JSON
* [kf5wallet] use msgmerge provided by gettext port
* [kf5wallet] only remove what's required
* [kf5wallet] wrap paths in quotes
* [kf5wallet] update deprecated functions
* [kf5wallet] DISABLE_PARALLEL_CONFIGURE to fix clang-format error
* [kf5wallet] update versions
* [kf5wallet] remove static /bin folders
* [kf5wallet] update versions
* [kf5wallet] use semVer
* [kf5wallet] update versions
* [kf5wallet] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5wallet] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-08-30 10:23:23 -07:00
Dawid Wróbel
c0bc5e1b0f
[kf5guiaddons] fix Wayland scanner not being found by transitive deps; fix static builds ( #19203 )
...
* [kf5guiaddons] add QtWaylandScanner_EXECUTABLE variable to Config.cmake
* [kf5guiaddons] update versions
* [kf5guiaddons] remove extraneous options
* [kf5guiaddons] update versions
* [kf5guiaddons] remove extraneous lines, bump version
* [kf5guiaddons] update versions
* [kf5guiaddons] add QtWaylandScanner_EXECUTABLE to MAYBE_UNUSED_VARIABLES
* [kf5guiaddons] update versions
* [kf5guiaddons] replace CURRENT_INSTALLED_DIR without affecting other vars
* [kf5guiaddons] update deprecated functions
* [kf5guiaddons] wrap paths in quotes
* [kf5guiaddons] update versions
* [kf5guiaddons] use PACKAGE_PREFIX relative path instead CURRENT_PACKAGES_DIR
* [kf5guiaddons] update versions
* [kf5guiaddons] cache the QtWaylandScanner_EXECUTABLE variable
* [kf5guiaddons] update versions
* [kf5guiaddons] update versions
* [kf5guiaddons] Add missing static dependency
* [kf5guiaddons] update versions
* [kf5guiaddons] rename patch file
* [kf5guiaddons] update versions
* [kf5guiaddons] add PACKAGE_NAME to vcpkg_cmake_config_fixup
* [kf5guiaddons] update versions
2021-08-30 10:04:04 -07:00
q1000treadz
24c9f30d4c
[KWSys] add new port ( #19712 )
...
* add kwsys port
* ./vcpkg x-add-version --all
* unsupport uwp
* ./vcpkg x-add-version --all
* Fix versions for port
* Update version database
* corrections
* corrections2
* corrections3
* update hash
2021-08-24 15:46:24 -07:00
Dawid Wróbel
ab60f27567
[kf5windowsystem] fix cmake.in for static usage; extra fixes ( #19440 )
...
* [kf5windowsystem] fix cmake.in for static usage; extra fixes
- apply https://invent.kde.org/frameworks/kwindowsystem/-/merge_requests/27 patch
- fix MAYBE_UNUSED_VARIABLES usage
- use semVer
- update deprecated functions
- wrap paths in quotes
- don't overzealously remove folders
* [kf5windowsystem] update versions
* [kf5windowsystem] fix cmake.in for static usage on Linux
* [kf5windowsystem] update versions
2021-08-19 15:49:06 -07:00
NancyLi1013
c315cf92f7
[keystone] Fix static build with dynamic CRT on Windows ( #19491 )
...
* [keystone] Fix static build with dynamic CRT on Windows
* Add port-version
* Update version files
* Add double quotes for the path
* Update versions/k-/keystone.json
* Add comments for kstool
* Update versions/k-/keystone.json
2021-08-11 17:18:20 -07:00
Dawid Wróbel
7a4dc666e2
[kf5attica] new port ( #19446 )
...
* Add KF5Attica
* [kf5attica] bump to 5.73
* [kf5attica] use PORT variable where applicable
* [kf5attica] update to 5.75.0
* [kf5attica] port CONTROL to JSON
* [kf5attica] update to 5.84.0
* [kf5attica] remove unused options
* [kf5attica] only remove what's required
* [kf5attica] grammar in description
* [kf5attica] update deprecated functions
* [kf5attica] wrap paths in quotes
* [kf5attica] update versions
* [kf5attica] fix static builds
* [kf5attica] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-08-09 09:00:57 -07:00
Jack·Boos·Yu
b7f99c3c4b
[vcpkg-cmake] Fix docs and usage of option MAYBE_UNUSED_VARIABLES ( #19245 )
...
* Remove unused cmake options and MAYBE_UNUSED_VARIABLES values
* Update MAYBE_UNUSED_VARIABLES docs
* update version
* version stuff
* version stuff
* update docs
2021-08-03 10:42:34 -07:00
Dawid Wróbel
e47b72b646
[kf5jobwidgets] new port ( #19200 )
...
* Add kf5jobwidgets port
* [kf5jobwidgets] update to 5.75.0
* [kf5jobwidgets] update to 5.84.0
* [kf5jobwidgets] update versions
* [kf5jobwidgets] fix static build
* [kf5jobwidgets] update versions
* [kf5jobwidgets] replace deprecated functions
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5jobwidgets] update versions
* [kf5jobwidgets] use semVer
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5jobwidgets] update versions
* [kf5jobwidgets] DISABLE_PARALLEL_CONFIGURE
* [kf5jobwidgets] update versions
* [kf5jobwidgets] fix MAYBE_UNUSED_VARIABLES usage
* [kf5jobwidgets] update versions
* [kf5jobwidgets] remove extraneous options
* [kf5jobwidgets] update versions
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-08-02 16:50:31 -07:00
Dawid Wróbel
3d4ce760a1
[kf5solid] new port ( #19201 )
...
* Add kf5solid port
* Fixed kf5solid for windows
* [kf5solid] update to 5.75.0
* [kf5solid] update to 5.84.0
* [kf5solid] update versions
* [kf5solid] replace outdated functions
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5solid] use semver
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
* [kf5solid] update versions
* [kf5solid] DISABLE_PARALLEL_CONFIGURE
* [kf5solid] update versions
* [kf5solid] fix MAYBE_UNUSED_VARIABLES usage
* [kf5solid] update versions
* [kf5solid] remove extraneous options
* [kf5solid] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2021-08-02 16:49:35 -07:00
Dawid Wróbel
bfa4cea3a8
[kf5sonnet] new port ( #19199 )
...
* Add kf5sonnet port
* [kf5sonnet] remove binaries
* Fixed kf5sonnet for windows
* [kf5sonnet] fix windows build
* [kf5sonnet] update to 5.75.0
* [kf5sonnet] update to 5.84.0
* [kf5sonnet] update versions
* [kf5sonnet] use semver
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* [kf5sonnet] replace deprecated functions
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
* [kf5sonnet] update versions
* [kf5sonnet] DISABLE_PARALLEL_CONFIGURE
* [kf5sonnet] update versions
* [kf5sonnet] fix MAYBE_UNUSED_VARIABLES usage
* [kf5sonnet] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2021-07-29 11:09:33 -07:00
Dawid Wróbel
d331544d82
[many ports] Update KF5 frameworks to 5.84 ( #19168 )
...
* [kf5*] Update KDE Frameworks to 5.84
* [kf5*] Update versions
2021-07-27 17:02:50 -07:00
Kai Pastor
7d2541c69c
[gettext] Add gettext cmake wrapper ( #18159 )
...
* Add gettext cmake wrapper
* x-add-version
* Make kf5i18n use gettext[tools]:host
* x-add-version
* Revise wrapper source names
* Update git-tree
* Provide host tools via port config, not wrapper
* Enable tools on linux
* Fix linux libintl.h hint
* Update git-tree
* Update git-tree
* Revise vcpkg port config
* Revise linux libintl.h message
* Revise cmake style
* Build only release variant of tools
* Cache configuration for faster build
* Update git-tree
* Fix typo
* Revise options
* Add top-level Makefile for tools
* Remove non-libintl libs and includes
* Update git-tree
* Update port-version
* x-add-version
* [gettext] Address PR comments
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2021-07-24 13:10:41 -07:00
João Maia
110c89fc6a
[klein] create a new port ( #18279 )
...
* [klein] new port
* [klein] Replace version-string by version
* [klein] Add call to vcpkg_fixup_pkgconfig()
* [klein] Replace klein by ${PORT}
* [klein] Add patch to avoid using FetchContent
* [klein] Change version to version-date
* update version
* Apply suggestions from code review
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
* Update git-tree version
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2021-07-06 10:29:48 -07:00
NancyLi1013
d76b4ebe74
[vcpkg baseline][kf5* librsvg] Add DISABLE_PARALLEL_CONFIGURE ( #18600 )
...
* [kf5*] Add DISABLE_PARALLEL_CONFIGURE
* Update version files
* [librsvg] Add DISABLE_PARALLEL_CONFIGURE
* Update version files
2021-06-24 13:04:57 -07:00
NancyLi1013
dc94103b4a
[kf5config] Add DISABLE_PARALLEL_CONFIGURE ( #18345 )
...
* [kf5config] Add DISABLE_PARALLEL_CONFIGURE
* Update version files
2021-06-11 09:51:15 -07:00
Jack·Boos·Yu
02fa0eb4c6
[openssl] Add cmake wrapper to handle OPENSSL_ROOT_DIR ( #18042 )
...
* [openssl] Add cmake wrapper to handle OPENSSL_ROOT_DIR
* Get the abs path
* update version record
* apply suggestion.
* Clean up openssl related code, move to openssl wrapper.
* update version record
* [kf5holidays] Disable parallel configure
* update version record
* update version record
* bump version
* Update versions/o-/openssl.json
* update baseline
* Update ports/openssl/vcpkg-cmake-wrapper.cmake
* Update ports/openssl/vcpkg-cmake-wrapper.cmake
* Update versions/o-/openssl.json
* Update ports/openssl/vcpkg.json
* Update versions/o-/openssl.json
* Update ports/openssl/vcpkg.json
* Update versions/o-/openssl.json
* update version record
2021-06-11 08:45:08 -07:00
Dawid Wróbel
1c4fb017f0
[kf5codecs] new port ( #16561 )
...
* Add kf5codecs port
* Fixed KF5Codecs for windows
* [kf5*] update to 5.75.0
* [kf5codecs] update versions
* [kf5codecs] convert CONTROL to manifest
* [kf5codecs] update to 5.81
* [kf5codecs] update versions
* [kf5codecs] update versions
* [kf5codecs] migrate to vcpkg_cmake_configure
* [kf5codecs] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-05-28 10:47:22 -07:00
Dawid Wróbel
f116649874
[kf5dbusaddons] new port ( #16564 )
...
* Add kf5dbusaddons port
* Fixed kf5bbusaddons for windows
* [kf5*] update to 5.75.0
* [kf5dbusaddons] convert CONTROL to manifest
* [kf5dbusaddons] update to 5.81
* [kf5dbusaddons] update versions
* [kf5dbusaddons] migrate to vcpkg_cmake_configure
* [kf5dbusaddons] update versions
* [kf5dbusaddons] disable parallel configure
* [kf5dbusaddons] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-05-26 14:58:18 -07:00
Dawid Wróbel
1d9aa0168a
[kf5auth] new port ( #16559 )
...
* Add kf5auth port
* Fixed KF5Auth build for windows
* [kf5*] update to 5.75.0
* [kf5auth] convert CONTROL to manifest
* [kf5auth] update version
* kf5auth: update to 5.81
* kf5auth: add version
* [kf5auth] migrate to vcpkg_cmake_configure
* [kf5auth] update versions
* [kf5auth] disable parallel configure
* [kf5auth] update versions
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
2021-05-26 14:55:48 -07:00
Dawid Wróbel
b34b7ff2c9
[many ports] Update KF5 frameworks to 5.81 ( #17268 )
...
* [many ports] Update KF5 frameworks to 5.81
* [many ports] Update KF5 versions
* [kf5guiaddons] disable parallel configure
* [kf5windowsystem] disable parallel configure
* [many ports] Update KF5 versions
* [kf5archive] disable parallel configure
* [many ports] Update KF5 versions
2021-05-21 01:30:43 -07:00
Kiba Amor
00b218d544
[knet]Update to v1.0.2 ( #17170 )
...
* Update to v1.0.2
* Update knet to v1.0.2
* Update knet.json
* revert changes to bext-di
* Update ports/knet/vcpkg.json
Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
* format-manifest
* update version
Co-authored-by: Victor Romero <romerosanchezv@gmail.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-04-12 11:22:48 -07:00
Dawid Wróbel
bc96cd54bf
[many ports] Update existing KF5 frameworks to 5.75 ( #13467 )
...
* Update KF5 framework to 5.73
kf5crash
- make x11 patch exclusive to linux
- enable win/macOS builds
kf5syntaxhighlighting
- fix building on non-Win by removing the cli tool from all platforms
* Add kf5auth port
* Revert "Add kf5auth port"
This reverts commit 8703c24236
.
* Add kf5globalaccel port
* Revert "Add kf5globalaccel port"
This reverts commit f1ac3db8e2
.
* [ecm] use where possible
* [kf5holidays] use PORT placeholder where possible
* [kf5syntaxhighlighting] use PORT placeholder where possible
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5plotting] use PORT placeholder where possible
* [kf5crash] fix logical condition in the patch
* [kf5crash] logical condition again, include other BSDs
* [kf5i18n] acquire python3
* [kf5i18n] remove vcpk cmake wrapper added mistakenly
* Update KF5 framework to 5.73
kf5crash
- make x11 patch exclusive to linux
- enable win/macOS builds
kf5syntaxhighlighting
- fix building on non-Win by removing the cli tool from all platforms
* Add kf5auth port
* Revert "Add kf5auth port"
This reverts commit 8703c24236
.
* Add kf5globalaccel port
* Revert "Add kf5globalaccel port"
This reverts commit f1ac3db8e2
.
* [ecm] use where possible
* [kf5holidays] use PORT placeholder where possible
* [kf5syntaxhighlighting] use PORT placeholder where possible
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5plotting] use PORT placeholder where possible
* [kf5crash] fix logical condition in the patch
* [kf5crash] logical condition again, include other BSDs
* [kf5i18n] acquire python3
* [kf5i18n] remove vcpk cmake wrapper added mistakenly
* [ecm] Remove 'skip' from windows baseline
* Fixed KF5ItemModel for windows
* [kf5syntaxhighlighting] fix Windows build
* Fixed k5syntaxhighlighting for windows
* [kf5plotting] fix license files
* [kf5archive] fix license files
* [kf5*] update to 5.75.0
* [kf5holidays] fix sha sum
* [kf5syntaxhighlighting] fix licensing
* [kf5itemviews] fix windows static build
* [kf5widgetsaddons] fix windows static build
* [kf5completion] fix windows static build
* [kf5*] fix windows static build
* [kf5i18n] fix windows static build
* [kf5windowsystem] require libxcb-res0-dev
* [kf5windowsystem] depend on qt5-x11extras
* [qt5] fix brotli reference
* Delete duplicate apt entries.
* kf5crash: fix linux build
* kf5i18n: fix Linux build
* ecm: do not override custom clang format files
* kf5i18n: fix Windows build
* [kf5*] update versions
* [kf5i18n] fix logical NOT
* [kf5syntaxhighlighting] disable parallel configure
* [kf5*] update versions
* [kf5*] convert CONTROL to manifest
* [kf5*] update versions
* [kf5*] update versioning scheme
* [ecm] syntax formatting
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5syntaxhighlighting] syntax formatting
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5holidays] syntax formatting
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
* [kf5archive] restore original line order
* [kf5holidays] restore CRLF
* [kf5archive] restore CRLF
* [kf5syntaxhighlighting] syntax formatting
* [kf5syntaxhighlighting] quotations
* [kf5syntaxhighlighting] fix \bin removal redundancy
* [kf5*] update versions
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Kuntal Majumder <hellozee@disroot.org>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2021-04-12 10:15:11 -07:00
Johannes Rave
1ff8bc0a60
[krabsetw] Update krabsetw to 4.1.18 ( #16576 )
2021-03-10 12:30:00 -06:00
Jack·Boos·Yu
3ae84754fa
[vcpkg baseline][ktx/otl] Update download hash ( #16289 )
2021-02-18 18:37:43 -08:00
Radames Cruz
1eb49ea2ec
[kuku] Update Kuku to version 2.1 ( #16194 )
...
* Update Kuku to version 2.1
* Update Kuku version in version files
2021-02-12 19:10:44 -08:00
Cheney Wang
62f5be4fab
[kinectsdk1] Update hash ( #15856 )
...
* [kinectsdk1] Update Hash
* Fix error in vcpkg.json file
* Add kinectsdk1.json
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-01-26 15:09:03 -08:00
nicole mazzuca
68a74950d0
[vcpkg] Rename port_versions
to versions
( #15784 )
2021-01-21 09:53:22 -08:00