Skip to content

Releases: rmohr/bazeldnf

v0.5.6-rc3

26 Apr 18:52
Compare
Choose a tag to compare
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazeldnf",
    sha256 = "e2f474cdb1d44f27c4058a3f5da1a1c51e2c35387186344915aa6bb83910d3f3",
    urls = [
        "https://github.com/rmohr/bazeldnf/releases/download/v0.5.6-rc3/bazeldnf-v0.5.6-rc3.tar.gz",
    ],
)

load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies")

bazeldnf_dependencies()

v0.5.6-rc2

26 Apr 17:49
Compare
Choose a tag to compare
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazeldnf",
    sha256 = "48ac6f0da019cb27d5c83b6276eb7cd820f85a3146c5d164a97fabae3c8cee61",
    urls = [
        "https://github.com/rmohr/bazeldnf/releases/download/v0.5.6-rc2/bazeldnf-v0.5.6-rc2.tar.gz",
    ],
)

load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies")

bazeldnf_dependencies()

v0.5.6-rc1

26 Apr 16:01
Compare
Choose a tag to compare
http_archive(
    name = "bazeldnf",
    sha256 = "8dcd8908d444d230192bba6965cfa7477554cc991da86b2b68aae956645c3d5e",
    urls = [
        "https://github.com/rmohr/bazeldnf/releases/download/v0.5.6-rc1/bazeldnf-v0.5.6-rc1.tar.gz",
    ],
)

v0.5.6-rc0

26 Apr 12:11
Compare
Choose a tag to compare
http_archive(
    name = "bazeldnf",
    sha256 = "8475e39f0b3d738e3c995f32890bec26f2bcae2bc86ceaa874556677dc24e054",
    urls = [
        "https://github.com/rmohr/bazeldnf/releases/download/v0.5.6-rc0/bazeldnf-v0.5.6-rc0.tar.gz",
    ],
)

v0.5.6

26 Apr 19:10
Compare
Choose a tag to compare
  • Switch bazeldnf to prebuilt binaries, removing all golang dependencies on adopting projects which use bazeldnf through their WORKSPACE file.
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazeldnf",
    sha256 = "9dfd5ab882cae4ff9e2a7c1352c05949fa0c175af6b4103b19db48657e6da8b8",
    urls = [
        "https://github.com/rmohr/bazeldnf/releases/download/v0.5.6/bazeldnf-v0.5.6.tar.gz",
    ],
)

load("@bazeldnf//:deps.bzl", "bazeldnf_dependencies")

bazeldnf_dependencies()

v0.5.5

15 Mar 14:29
1ab2523
Compare
Choose a tag to compare
  • Write hard links in a deterministic order (#38)
  • Make it more clear that bazeldnf uses the apache2 license (#31)
  • Escape download URLs properly to avoid creating invalid WORKSPACE files (#39)
  • Bump all bazeldnf dependencies (#36)
  • Internal refactoring: don't use deprecated shorthands for binaries in the source code (#37)

Thanks a lot to all contributors!

http_archive(
    name = "bazeldnf",
    sha256 = "bb4210a87f3f2006edb90fbade6df682979dc0330565f2550373f3eb012d928b",
    strip_prefix = "bazeldnf-0.5.5",
    urls = [
        "https://github.com/rmohr/bazeldnf/archive/v0.5.5.tar.gz",
    ],
)

v0.5.4

19 Oct 07:54
f4def13
Compare
Choose a tag to compare
  • Improve package name sanitizing: #25
http_archive(
    name = "bazeldnf",
    sha256 = "404fc34e6bd3b568a7ca6fbcde70267d43830d0171d3192e3ecd83c14c320cfc",
    strip_prefix = "bazeldnf-0.5.4",
    urls = [
        "https://github.com/rmohr/bazeldnf/archive/v0.5.4.tar.gz",
    ],
)

v0.5.3

23 Sep 07:48
58fd7d2
Compare
Choose a tag to compare

User visible changes:

  • [Protect against pre bash 4.4 bug] #18
  • Fix usage of bash arrays in the ldd command #21
  • Look for libraries in /usr/lib in addition to /usr/lib64 when resolving shared library dependencies #22

To use the latest release add this to your WORKSPACE file:

http_archive(
    name = "bazeldnf",
    sha256 = "dcb8e0ffcfb7a35c077214597f4038210590e99834f783ff8eb2450f8cf9b35c",
    strip_prefix = "bazeldnf-0.5.3",
    urls = [
        "https://github.com/rmohr/bazeldnf/archive/v0.5.3.tar.gz",
    ],
)

v0.5.2

27 Jan 16:21
f8e19b8
Compare
Choose a tag to compare
  • Support two new capabilities #17

To use the latest release add this to your WORKSPACE file:

http_archive(
    name = "bazeldnf",
    sha256 = "c37709d05ad7eae4d32d7a525f098fd026483ada5e11cdf84d47028222796605",
    strip_prefix = "bazeldnf-0.5.2",
    urls = [
        "https://github.com/rmohr/bazeldnf/archive/v0.5.2.tar.gz",
    ],
)

v0.5.1

08 Sep 07:10
ff9ea1a
Compare
Choose a tag to compare
  • Report errors on hard link properly.