Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[yasm/yasm-tool] Incorporate yasm-tool into yasm #23218

Merged
merged 8 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ports/gmp/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gmp",
"version-string": "6.2.1",
"port-version": 7,
"port-version": 8,
"description": "The GNU Multiple Precision Arithmetic Library",
"homepage": "https://gmplib.org",
"supports": "!(windows & (arm | arm64))",
Expand All @@ -12,7 +12,7 @@
"platform": "windows"
},
{
"name": "yasm-tool",
"name": "yasm",
"host": true,
"platform": "windows"
JackBoosY marked this conversation as resolved.
Show resolved Hide resolved
}
Expand Down
5 changes: 3 additions & 2 deletions ports/yasm-tool-helper/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "yasm-tool-helper",
"version-string": "2020-03-11",
"description": "Backfill that depends on yasm-tool:host",
"port-version": 1,
"description": "Backfill that depends on yasm:host",
"homepage": "https://github.com/Microsoft/vcpkg",
"dependencies": [
{
"name": "yasm-tool",
"name": "yasm",
"host": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion ports/yasm-tool-helper/yasm-tool-helper.cmake.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include("${CMAKE_CURRENT_LIST_DIR}/../../../@HOST_TRIPLET@/share/yasm-tool/vcpkg-port-config.cmake")
include("${CMAKE_CURRENT_LIST_DIR}/../../../@HOST_TRIPLET@/share/yasm/vcpkg-port-config.cmake")
46 changes: 1 addition & 45 deletions ports/yasm-tool/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,45 +1 @@
if(VCPKG_TARGET_IS_WINDOWS)
set(YASM_BUILD_BINARY ON)
set(VCPKG_POLICY_EMPTY_INCLUDE_FOLDER enabled)
set(VCPKG_LIBRARY_LINKAGE static)

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO yasm/yasm
REF 009450c7ad4d425fa5a10ac4bd6efbd25248d823 # 1.3.0 plus bugfixes for https://github.com/yasm/yasm/issues/153
SHA512 a542577558676d11b52981925ea6219bffe699faa1682c033b33b7534f5a0dfe9f29c56b32076b68c48f65e0aef7c451be3a3af804c52caa4d4357de4caad83c
)

file(INSTALL "${SOURCE_PATH}/COPYING"
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}"
RENAME copyright)
foreach(LICENSE Artistic.txt BSD.txt GNU_GPL-2.0 GNU_LGPL-2.0)
file(COPY "${SOURCE_PATH}/${LICENSE}" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
endforeach()

vcpkg_find_acquire_program(PYTHON3)
get_filename_component(PYTHON3_DIR "${PYTHON3}" DIRECTORY)
vcpkg_add_to_path("${PYTHON3_DIR}")

vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DENABLE_NLS=OFF
-DYASM_BUILD_TESTS=OFF
)
vcpkg_install_cmake()

vcpkg_copy_tools(TOOL_NAMES yasm)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/include")
else()
set(YASM_BUILD_BINARY OFF)
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
endif()

configure_file("${CMAKE_CURRENT_LIST_DIR}/vcpkg-port-config.cmake.in"
"${CURRENT_PACKAGES_DIR}/share/${PORT}/vcpkg-port-config.cmake" @ONLY)
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
10 changes: 5 additions & 5 deletions ports/yasm-tool/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "yasm-tool",
"version": "1.3.0",
"port-version": 1,
"description": "A modular assembler.",
"homepage": "http://yasm.tortall.net/",
"supports": "native & !uwp"
"version-date": "2021-12-14",
"description": "Legacy port. Use port yasm instead.",
"dependencies": [
"yasm"
JackBoosY marked this conversation as resolved.
Show resolved Hide resolved
]
}
3 changes: 3 additions & 0 deletions ports/yasm/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ endif()
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
vcpkg_copy_tools(vsyasm yasm ytasm DEPENDENCIES ${EXTRA_OPTION} AUTO_CLEAN)

file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")

configure_file("${CURRENT_PORT_DIR}/vcpkg-port-config.cmake.in"
"${CURRENT_PACKAGES_DIR}/share/${PORT}/vcpkg-port-config.cmake" @ONLY)
# Handle copyright
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,7 @@ function(yasm_tool_helper)
message(FATAL_ERROR "Unexpected arguments to yasm_tool_helper: ${arg_UNPARSED_ARGUMENTS}")
endif()

if(@YASM_BUILD_BINARY@)
set(YASM "${Z_YASM_TOOL_HELPER_LIST_DIR}/../../tools/yasm-tool/yasm.exe")
else()
vcpkg_find_acquire_program(YASM)
endif()
find_program(YASM yasm PATHS "${Z_YASM_TOOL_HELPER_LIST_DIR}/../../tools/yasm")

if(arg_APPEND_TO_PATH)
get_filename_component(YASM_EXE_PATH ${YASM} DIRECTORY)
Expand Down
4 changes: 2 additions & 2 deletions ports/yasm/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yasm",
"version-string": "1.3.0",
"port-version": 2,
"version": "1.3.0",
"port-version": 3,
"description": "Yasm is a complete rewrite of the NASM assembler under the new BSD License.",
"homepage": "https://github.com/yasm/yasm",
"supports": "windows & !uwp & !arm",
Expand Down
10 changes: 5 additions & 5 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -2526,7 +2526,7 @@
},
"gmp": {
"baseline": "6.2.1",
"port-version": 7
"port-version": 8
},
"gmsh": {
"baseline": "4.9.0",
Expand Down Expand Up @@ -7494,15 +7494,15 @@
},
"yasm": {
"baseline": "1.3.0",
"port-version": 2
"port-version": 3
},
"yasm-tool": {
"baseline": "1.3.0",
"port-version": 1
"baseline": "2021-12-14",
"port-version": 0
},
"yasm-tool-helper": {
"baseline": "2020-03-11",
"port-version": 0
"port-version": 1
},
"yato": {
"baseline": "1.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/g-/gmp.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "59549497251993927a45b78b09b9785f59ce7cf2",
"version-string": "6.2.1",
"port-version": 8
},
{
"git-tree": "5d207c0d8a6481f96f2277fd3245f2a80456a706",
"version-string": "6.2.1",
Expand Down
5 changes: 5 additions & 0 deletions versions/y-/yasm-tool-helper.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "56fd355bef577119b2c389e9416c189ee37db669",
"version-string": "2020-03-11",
"port-version": 1
},
{
"git-tree": "7d0e3b2224338888cd1e2f7a00c182961a7ea760",
"version-string": "2020-03-11",
Expand Down
5 changes: 5 additions & 0 deletions versions/y-/yasm-tool.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "3dfdd1baa6d39d028a1859d415e3c0f8072d5ef6",
"version-date": "2021-12-14",
"port-version": 0
},
{
"git-tree": "456004e2ac7a578572cb14ebf581c246b869516a",
"version": "1.3.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/y-/yasm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "ec2bb096cdd5d37790a67e48e3fcd31674506632",
"version": "1.3.0",
"port-version": 3
},
{
"git-tree": "eaab6c3ae3bfc1ffcfaee3b1695d7ee21dacc7b1",
"version-string": "1.3.0",
Expand Down