Commit Graph

27 Commits

Author SHA1 Message Date
Mengna Li
f5ab3f86a8
[pdcurses] fix incorrect link behavior (#32252)
* fix incorrect link behavior

* update
2023-06-27 12:42:46 -07:00
Lily Wang
40619a55c3
[pdcurses] Add export CMake config (#31453)
* [pdcurses] Add export CMake config and update to latest commit

* update version

* add judge CMAKE_BUILD_TYPE STREQUAL "Debug"

* update version

* apply suggestions

* update version

* Add find binary file

* update version

* remove CMAKE_BUILD_TYPE

* update version
2023-05-18 11:38:34 -07:00
autoantwort
5b11232d00
[many-ports] Don't use deprecated functions (autogenerated) (#26981)
* [libuvc,qt5-virtualkeyboard] remove duplicated dependency entry

* [many-ports] don't use deprecated functions (autogenerated)

* atkmm: Fix license.
gperftools: Reformat vcpkg_check_features call.
gsl: Fix license.
libpff: Fix license.
pangomm: Fix license.
qtbase: Revert, only comment changes.
type-lite: Reformat vcpkg_check_features and actually use the feature options.

---------

Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-04-13 09:13:15 -07:00
Kai Pastor
67e4272121
[pdcurses] Revise portfile (#22092)
* Use vcpkg_build_nmake

* Update versions

* Use INSTALLDIR

* Update versions
2021-12-22 00:03:46 -05:00
Simon Sobisch
70626f098f
[pdcurses] metadata: fix homepage (#20284)
* pdcurses: fixed homepage

* add port version

* update version

* revert 3.9 version hash

Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-22 13:34:14 -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
Robert Schumacher
08c951fef9
[many ports] Upgrades to 2020.02.08 (#9986)
* [many ports] Upgrades to 2020.02.08

* Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl

* Update ci baseline file

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2020-02-10 16:08:57 -08:00
NancyLi1013
23b16cc4a0 Update 2019-11-21 21:51:38 -08:00
NancyLi1013
5a161e316b [pdcurses] Add usage 2019-11-18 23:18:25 -08:00
Stefano Sinigardi
726c111481 [vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
2019-10-07 10:35:13 -07:00
pravic
18b029a5e3 [WIP] Add a Homepage URL entry for vcpkg ports (#2933)
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-15 16:54:47 -07:00
Robert Schumacher
3fadafface
[many ports] Updates 2019.05.24 (#6618)
* [many ports] Updates 2019.05.24

* Update SHA512 and resolve conflict for ebml and matroska

* [avro-c]Fix build error caused by jansson upgrades.

* [xxhash]Update to the next version to fix build error.(xxhash issue:#179)

* Fix failures and undo asio

* [libyaml, grpc, miniz, paho-mqtt, sqlitecpp] Update patches

* Update REF

* Undo nvtt flann itk libtins aws-sdk-cpp openvdb vlpp xmsh changes

* [flann, fastcdr] Fix old patches and build error.

* [flann, fastcdr] Fix build error.

* Fix ensmallen uvatlas cppcms libplist failures and undo aws-c-common libopusenc arb taglib changes

* [dcmtk, draco, flatbuffers, forge, ftgl, mosquitto,nmslib, ogre] Update old patches and fix build error.

* fix libusbmuxd failures and undo xxhash paho-mqtt mongo-c-driver flann libffi

* fix libimobiledevice and undo qhull harfbuzz lcm libbson draco flatbuffers

* undo libmupdf forge kd-soap qca

* [mosquitto] Fix installation of import libs

* [arb][asio][aws-c-common][collada-dom][concurrentqueue][cryptopp][ebml] Revert trivial/undesired changes

* [fastcdr] Minimize patch

* [many ports] Revert trivial changes

* [libyaml] Switch to non-dist tag

* [sqlite-modern-cpp] Track master due to infrequent release

* [nano-signal-slot] Revert downgrade

* [openvpn3] Bump control version to account for portfile change

* [sqlite-modern-cpp] Fixup wrong hash

* [mosquitto] Commit missing patch
2019-06-10 17:01:54 -07:00
Stanislav Ershov
6e204b2be7 Update PDCurses to 3.6 2018-06-02 02:39:29 +03:00
Robert Schumacher
67573ccf2c [pdcurses] Use out-of-source builds. Use official github. Fixes #2951. 2018-03-22 01:51:09 -07:00
Robert Schumacher
9a642ade4e [box2d][directxmesh][directxtex][directxtk][directxtk12][dxut][entityx][octomap][pdcurses][redshell][rttr][tbb][uvatlas] Improve constraint checking 2017-06-09 19:34:07 -07:00
Robert Schumacher
54be2d5e91 [pdcurses] Fix x64/x86 builds. 2017-05-22 20:26:56 -07:00
John Camp
46761d7e34 Return to C7 debugging output 2016-11-15 19:50:29 -05:00
John Camp
51b98484d7 Write to and use separate .mak file
Allows future changes to not be affected by cached buildtree
2016-11-15 14:50:38 -05:00
John Camp
10f1403555 Adds PDBs and 64-bit builds to PDCurses 2016-11-15 14:33:02 -05:00
John Camp
df207430c9 Remove unused cmake variable 2016-11-13 12:36:55 -05:00
Alexander Karatarakis
1808d461b0 triplet is now automatically included before portfiles.
Also remove trailing whitespaces from portfiles
2016-11-08 14:25:47 -08:00
Robert Schumacher
016406a52b [pdcurses] Lib files are also required in dynamic linkage 2016-10-31 09:48:58 -07:00
John Camp
7805bdff8c Added a fatal error for 64-bit builds. 2016-10-28 02:17:57 -04:00
John Camp
b2e9efee97 Removed panel library.
Panel is not emitted as a dll, and is actually just a copy of the pdcurses library anyway.
2016-10-28 00:15:32 -04:00
John Camp
05bc52d39a Re-wrote portfile to support dynamic libraries 2016-10-28 00:12:52 -04:00
John Camp
d226583ed1 Changed the download link to a static link.
The different download link packaged the zip slightly differently,
changing the hash as well as the src path.
2016-10-21 00:32:17 -04:00
John Camp
38e152cb29 Added package for PDCurses 2016-10-20 00:29:38 -04:00