diff options
author | V3n3RiX <venerix@koprulu.sector> | 2021-11-13 13:10:00 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2021-11-13 13:10:00 +0000 |
commit | e9d044d4b9b71200a96adfa280848858c0f468c9 (patch) | |
tree | 1bd8ef816043a8cd340f1d774e79553a1a7d31d8 /dev-ruby/httpauth | |
parent | fc2f1018fc323ef2c6572734a9b130427cba76a6 (diff) |
gentoo resync : 13.11.2021
Diffstat (limited to 'dev-ruby/httpauth')
-rw-r--r-- | dev-ruby/httpauth/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/httpauth/httpauth-0.2.1-r1.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-ruby/httpauth/Manifest b/dev-ruby/httpauth/Manifest index babc0ef89488..4b7ab7f946ab 100644 --- a/dev-ruby/httpauth/Manifest +++ b/dev-ruby/httpauth/Manifest @@ -1,3 +1,4 @@ DIST httpauth-0.2.1.tar.gz 17300 BLAKE2B 4609f35fd26b1eb8e3d17586553f5dd5555d3c676f2189f7da5ff23057438c91919cb0838fdf219f0b26682b2a08d903c7906edc9fbfa58ce9afae9e0f58a6a8 SHA512 c861089c2dc5242b86867e0a6561672361ba53ccaaf8a931c996502fc12bbce769abf3ebd7fce826cbcfbc943fc901ba1c96e8ce014333582c5d2fa2c3e56a60 +EBUILD httpauth-0.2.1-r1.ebuild 606 BLAKE2B 50599586bab0b5d1f26b0e8e13f102c34e377a11cacaa3e0f6321927b56f9ee884acfbbd4b33b4ed6acdf52e4c831071f04a84aa632567d0371c9a1cfa20b57c SHA512 4afd7cf2957170d6c219d417781c16d5ca466fb8b29e0e7ab3a133681ecb2d75ef9d85d138171f1608ba11bab8ea0b06e2fafda6c6dc527b73cefbb965e557c9 EBUILD httpauth-0.2.1.ebuild 591 BLAKE2B 6205c79325444c9960b215c2e9412f0fac9bd500a935a495d5aba6a1f4b3694c5449de2de14305e1674f171c238e6d49f54ffa97a071093c40e98c7637529b46 SHA512 7c3017050fb570839b02c34d101a15882e8b04b05d31b0b00e1e7df5f43588c57d1d9f50f28369728d407d09e9b2f015bffb7c8f2504c8d0fb7dfd4cf09e22b1 MISC metadata.xml 343 BLAKE2B 6fdaf19516858157148abd4e5d16bf3a0a55b721ea4b2719c8847ece4c6288147818f3c59dd7df05d6b0c66ee8e080438cfae62ab8aec58010465aa860512b36 SHA512 b00aa235f116654ee4fa4f9422e431d9ec4840eb27dafe5005410a25782355ff2e62ae10d1eb5a07be7a85df5b17d823592dbff3426399a30fd9d5db944b6c7e diff --git a/dev-ruby/httpauth/httpauth-0.2.1-r1.ebuild b/dev-ruby/httpauth/httpauth-0.2.1-r1.ebuild new file mode 100644 index 000000000000..9e257ddfc835 --- /dev/null +++ b/dev-ruby/httpauth/httpauth-0.2.1-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_EXTRADOC="README.md TODO" +RUBY_FAKEGEM_GEMSPEC="httpauth.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Library implementing the full HTTP Authentication protocol (RFC 2617)" +HOMEPAGE="https://github.com/Manfred/HTTPauth" +SRC_URI="https://github.com/Manfred/HTTPauth/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +RUBY_S=HTTPauth-${PV} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +all_ruby_prepare() { + sed -i -e "/[Bb]undler/d" Rakefile || die +} |