{"id":18720480,"url":"https://github.com/stiffstream/fmtlib_mxxru","last_synced_at":"2025-09-03T09:38:59.991Z","repository":{"id":92244853,"uuid":"203968330","full_name":"Stiffstream/fmtlib_mxxru","owner":"Stiffstream","description":"A light MxxRu wrapper for fmt library.","archived":false,"fork":false,"pushed_at":"2019-08-23T09:41:22.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-19T14:52:26.774Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Stiffstream.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-23T09:32:04.000Z","updated_at":"2019-08-23T09:40:39.000Z","dependencies_parsed_at":"2023-04-25T04:48:38.281Z","dependency_job_id":null,"html_url":"https://github.com/Stiffstream/fmtlib_mxxru","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/Stiffstream/fmtlib_mxxru","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stiffstream%2Ffmtlib_mxxru","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stiffstream%2Ffmtlib_mxxru/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stiffstream%2Ffmtlib_mxxru/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stiffstream%2Ffmtlib_mxxru/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Stiffstream","download_url":"https://codeload.github.com/Stiffstream/fmtlib_mxxru/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stiffstream%2Ffmtlib_mxxru/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273423657,"owners_count":25103143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T13:31:15.952Z","updated_at":"2025-09-03T09:38:59.944Z","avatar_url":"https://github.com/Stiffstream.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What Is It?\r\n\r\nA light mxxru wrapper for fmt library.\r\n\r\n# How To Use\r\n\r\n## Prerequisites\r\n\r\nTo use *fmt_mxxru* it is necessary to have:\r\n\r\n* C++11 compiler (VC++14.0, GCC 5.1 or above, clang 3.6 or above);\r\n* [fmt](http://fmtlib.net/latest/index.html) 5.0.0 or above (see older tags for support of previous versions of fmt);\r\n* [Mxx_ru](https://sourceforge.net/projects/mxxru/) 1.6.11 or above.\r\n\r\n## Obtaining\r\n\r\n### Cloning of Git Repository\r\n\r\n```sh\r\ngit clone https://github.com/stiffstream/fmtlib_mxxru\r\n```\r\nAnd then:\r\n```sh\r\ncd fmtlib_mxxru\r\nmxxruexternals\r\n```\r\nto download and extract *fmt_mxxru*'s dependencies.\r\n\r\n### MxxRu::externals recipe\r\n\r\nFor *fmtlib_mxxru* itself:\r\n```sh\r\nMxxRu::arch_externals :fmtlib_mxxru do |e|\r\n  e.url 'https://github.com/Stiffstream/fmtlib_mxxru/archive/fmt-5.0.0-1.tar.gz'\r\n\r\n  e.map_dir 'dev/fmt_mxxru' =\u003e 'dev'\r\nend\r\n```\r\n\r\nFor *fmtlib_mxxru* dependencies:\r\n```sh\r\nMxxRu::arch_externals :fmt do |e|\r\n  e.url 'https://github.com/fmtlib/fmt/archive/5.3.0.zip'\r\n\r\n  e.map_dir 'include' =\u003e 'dev/fmt'\r\n  e.map_dir 'src' =\u003e 'dev/fmt'\r\n  e.map_dir 'support' =\u003e 'dev/fmt'\r\n  e.map_file 'CMakeLists.txt' =\u003e 'dev/fmt/*'\r\n  e.map_file 'README.rst' =\u003e 'dev/fmt/*'\r\n  e.map_file 'ChangeLog.rst' =\u003e 'dev/fmt/*'\r\nend\r\n```\r\n\r\n## Compilation\r\n\r\nCompilation must be performed via Mxx_ru:\r\n```sh\r\ngit clone https://github.com/stiffstream/fmtlib_mxxru\r\ncd fmtlib_mxxru\r\nmxxruexternals\r\ncd dev\r\nruby build.rb\r\n```\r\n*NOTE.* It may be necessary to set up `MXX_RU_CPP_TOOLSET` environment variable.\r\n\r\n# License\r\n\r\n*fmtlib_mxxru* is distributed under\r\n[BSD-3-Clause](http://spdx.org/licenses/BSD-3-Clause.html) license. See LICENSE\r\nfile for more information.\r\n\r\nFor the license of *fmt* library see LICENSE file in *fmt*\r\ndistributive.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstiffstream%2Ffmtlib_mxxru","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstiffstream%2Ffmtlib_mxxru","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstiffstream%2Ffmtlib_mxxru/lists"}