Commit Graph

5 Commits

Author SHA1 Message Date
Marko Mahnič
988870e4f5
[argumentum] Update to v0.3.2 (#30552)
* [argumentum] Update to 0.3.2

* Update hash after tag moved

* ./vcpkg.exe format-manifest ports/argumentum/vcpkg.json

* Fix vcpkg.json version, license, ./vcpkg.exe x-add-version --all

* Increase port-version

* ./vcpkg.exe x-add-version --all --overwrite-version

* Set port-version back to 0

* Remove generated version info for argumentum

* Re-add generated version info for argumentum

* Fix version string

* ./vcpkg.exe x-add-version --overwrite-version argumentum

* Install only the static version

* ./vcpkg.exe x-add-version --overwrite-version argumentum
2023-04-04 19:17:35 -07:00
Jack·Boos·Yu
a6cb7292c4
[many ports]switch to vcpkg-cmake / vckg-cmake-config part 1 (#29880)
* [many ports]switch to vcpkg-cmake / vckg-cmake-config

* version

* Missing changes

* version

* typo

* version

* typo

* version

* fix typo

* version

* deprecate vcpkg_extract_source_archive_ex

* version

* fix arguments

* version

---------

Co-authored-by: jyu49 <yu_jack@apple.com>
2023-03-06 15:44:04 -08: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
Marko Mahnič
019cbfb62f
[argumentum] Update to 0.3.0 (#10355) 2020-03-10 15:46:53 -07:00
Marko Mahnič
6403c56e7c [argumentum] Add new port (#9478)
* [argumentum] Add new port

* Remove testing code from portfile

* Use a new release that respects build_static_libs

- add vcpkg_check_linkage

* Use the new repository name

* Add homepage to control file

* Fix the portfile as suggested in PR #9478

* Disable some platforms as suggested in PR #9478

We will try to fix the build on these platforms in a future release.

* Use release 0.2.2 with fixed header preparation

* (wip) check which platforms are failing

* Reenable all ports for argumentum in ci.baseline

* Fix argumentum version in control file
2020-01-02 13:40:50 -08:00