Skip to content

Commit

Permalink
libxml2@2.13.3 (bazelbuild#2511)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-j-mikhin committed Aug 3, 2024
1 parent a12dae4 commit 68c194e
Show file tree
Hide file tree
Showing 11 changed files with 171 additions and 3 deletions.
6 changes: 6 additions & 0 deletions modules/libxml2/2.13.3/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module(
name = "libxml2",
version = "2.13.3",
compatibility_level = 1,
)
bazel_dep(name = "rules_foreign_cc", version = "0.11.1-fix")
33 changes: 33 additions & 0 deletions modules/libxml2/2.13.3/patches/add_build_file.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
--- /dev/null
+++ BUILD.bazel
@@ -0,0 +1,30 @@
+""" Builds libxml2.
+"""
+
+load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake")
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+)
+
+cache_entries = {
+ "CMAKE_INSTALL_LIBDIR": "lib",
+ "CMAKE_POSITION_INDEPENDENT_CODE": "ON",
+ "BUILD_SHARED_LIBS": "OFF",
+ #libxml2 specific options.
+ "LIBXML2_WITH_PYTHON": "OFF",
+ "LIBXML2_WITH_LZMA": "OFF",
+ "LIBXML2_WITH_ICONV": "OFF",
+ "LIBXML2_WITH_TESTS": "OFF",
+ "LIBXML2_WITH_PROGRAMS": "OFF",
+}
+
+cmake(
+ name = "libxml2",
+ env = {"CMAKE_BUILD_TYPE": "Release"},
+ lib_source = ":srcs",
+ cache_entries = cache_entries,
+ out_include_dir = "include/libxml2",
+ visibility = ["//visibility:public"],
+)
9 changes: 9 additions & 0 deletions modules/libxml2/2.13.3/patches/module_dot_bazel.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
--- MODULE.bazel
+++ MODULE.bazel
@@ -0,0 +1,6 @@
+module(
+ name = "libxml2",
+ version = "2.13.3",
+ compatibility_level = 1,
+)
+bazel_dep(name = "rules_foreign_cc", version = "0.11.1-fix")
17 changes: 17 additions & 0 deletions modules/libxml2/2.13.3/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
matrix:
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
- windows
bazel:
- 7.x
- 6.x
tasks:
verify_targets:
name: Verify build targets
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- '@libxml2//:libxml2'
10 changes: 10 additions & 0 deletions modules/libxml2/2.13.3/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"url": "https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.3.tar.xz",
"integrity": "sha256-CAXXwYDPCcqtcWZsekWKdPBBVhpTKQJFTaUEfYOUgTg=",
"strip_prefix": "libxml2-2.13.3",
"patches": {
"add_build_file.patch": "sha256-BUQITR/ihcj0DnP/rqIRazzqZLdi6ujzkjVZJmRBkPo=",
"module_dot_bazel.patch": "sha256-RLaGAUnfNgug6A5Jee8iZ8uig743hLmjUKN1PGupPZY="
},
"patch_strip": 0
}
15 changes: 15 additions & 0 deletions modules/libxml2/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"homepage": "https://gitlab.gnome.org/GNOME/libxml2/-/wikis/home",
"maintainers": [
{
"email": "tectep@gmail.com",
"github": "dmitry-j-mikhin",
"name": "Dmitry Mikhin"
}
],
"repository": [],
"versions": [
"2.13.3"
],
"yanked_versions": {}
}
45 changes: 45 additions & 0 deletions modules/rules_foreign_cc/0.11.1-fix/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
"bazelbuild/rules_foreign_cc"

module(
name = "rules_foreign_cc",
version = "0.11.1-fix",
compatibility_level = 1,
)

bazel_dep(name = "bazel_skylib", version = "1.3.0")
bazel_dep(name = "platforms", version = "0.0.5")
bazel_dep(name = "rules_python", version = "0.23.1")

# Dev dependencies
bazel_dep(name = "gazelle", version = "0.34.0", dev_dependency = True, repo_name = "bazel_gazelle")
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.5.0", dev_dependency = True)
bazel_dep(name = "stardoc", version = "0.5.6", dev_dependency = True, repo_name = "io_bazel_stardoc")
bazel_dep(name = "rules_cc", version = "0.0.9")

python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(python_version = "3.9")
use_repo(python, "python_3_9")

tools = use_extension("@rules_foreign_cc//foreign_cc:extensions.bzl", "tools")
use_repo(
tools,
"cmake_3.23.2_toolchains",
"cmake_src",
"gettext_runtime",
"glib_dev",
"glib_src",
"gnumake_src",
"meson_src",
"ninja_1.12.0_toolchains",
"ninja_build_src",
"pkgconfig_src",
"rules_foreign_cc_framework_toolchains",
)

register_toolchains(
"@rules_foreign_cc_framework_toolchains//:all",
"@cmake_3.23.2_toolchains//:all",
"@ninja_1.12.0_toolchains//:all",
"@python_3_9//:all",
"@rules_foreign_cc//toolchains:all",
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
===================================================================
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,9 +1,9 @@
"bazelbuild/rules_foreign_cc"

module(
name = "rules_foreign_cc",
- version = "0.0.0",
+ version = "0.11.1-fix",
compatibility_level = 1,
)

bazel_dep(name = "bazel_skylib", version = "1.3.0")
11 changes: 11 additions & 0 deletions modules/rules_foreign_cc/0.11.1-fix/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
matrix:
platform: ["centos7", "debian10", "macos", "ubuntu2004", "windows"]
bazel: ["6.x", "7.x"]

tasks:
verify_targets:
name: "Verify build targets"
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets:
- "@rules_foreign_cc//toolchains/private:make_tool"
9 changes: 9 additions & 0 deletions modules/rules_foreign_cc/0.11.1-fix/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"integrity": "sha256-CufV9MOCpUpC8FwWHTCOfq/QcJ0XgafHnMCah34KKVI=",
"strip_prefix": "rules_foreign_cc-0.11.1-fix5",
"url": "https://github.com/dmitry-j-mikhin/rules_foreign_cc/releases/download/0.11.1-fix5/rules_foreign_cc-0.11.1-fix5.tar.gz",
"patches": {
"module_dot_bazel_version.patch": "sha256-KNy4hxrtD5aT5HCkvAu0ispP5K8WLP5lszgy0LTdSSI="
},
"patch_strip": 1
}
5 changes: 2 additions & 3 deletions modules/rules_foreign_cc/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
"name": "James Sharpe"
}
],
"repository": [
"github:bazelbuild/rules_foreign_cc"
],
"repository": [],
"versions": [
"0.8.0",
"0.9.0",
"0.10.1",
"0.11.1-fix",
"0.11.1"
],
"yanked_versions": {}
Expand Down

0 comments on commit 68c194e

Please sign in to comment.