1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-17 15:45:32 -05:00

Fix package URLs

This commit is contained in:
Alex Kotov 2022-01-30 07:45:47 +05:00
parent 1f8ff63784
commit 3cac0cc952
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
3 changed files with 9 additions and 7 deletions

View file

@ -6,7 +6,7 @@ author_email = kotovalexarian@gmail.com
description = Binding to libkernaux - auxiliary library for kernel development
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/tailix/libkernaux
url = https://github.com/tailix/libkernaux/tree/master/pkgs/python
project_urls =
Bug Tracker = https://github.com/tailix/libkernaux/issues
classifiers =

View file

@ -4,11 +4,13 @@ require_relative 'lib/kernaux/version'
Gem::Specification.new do |spec|
repo = 'https://github.com/tailix/libkernaux'
home = "#{repo}/tree/master/pkgs/ruby"
bugs = "#{repo}/issues"
spec.name = 'kernaux'
spec.version = KernAux::VERSION
spec.license = 'MIT'
spec.homepage = "#{repo}/tree/master/pkgs/ruby"
spec.homepage = home
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '~> 3.0'
@ -23,9 +25,9 @@ Gem::Specification.new do |spec|
Binding to libkernaux - auxiliary library for kernel development.
DESCRIPTION
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['bug_tracker_uri'] = "#{repo}/issues"
spec.metadata['homepage_uri'] = home
spec.metadata['source_code_uri'] = home
spec.metadata['bug_tracker_uri'] = bugs
spec.metadata['rubygems_mfa_required'] = 'true'
spec.bindir = 'exe'

View file

@ -5,8 +5,8 @@ authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2021"
description = "Auxiliary library for kernel development"
readme = true
homepage = "https://github.com/tailix/libkernaux"
repository = "https://github.com/tailix/libkernaux.git"
homepage = "https://github.com/tailix/libkernaux/tree/master/pkgs/rust"
repository = "https://github.com/tailix/libkernaux/tree/master/pkgs/rust"
license = "MIT"
keywords = ["ffi", "no_std", "no-std", "embedded", "bindings"]
categories = ["api-bindings", "embedded", "external-ffi-bindings", "no-std", "parsing"]