summaryrefslogtreecommitdiffstats
path: root/recipes-support/ruby-shadow/ruby-shadow_git.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2024-10-11 19:48:17 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-10-11 20:14:43 +0000
commitd32416d4d8df71f219318084f78cdb37d2926f62 (patch)
tree376d79fbab4ae57229ce2c86d7261dfc700bb13b /recipes-support/ruby-shadow/ruby-shadow_git.bb
parentdc37ea052ed74321c5244938f8d702372f663776 (diff)
downloadmeta-cloud-services-d32416d4d8df71f219318084f78cdb37d2926f62.tar.gz
ruby-shadow: update and supply extconf.rb
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-support/ruby-shadow/ruby-shadow_git.bb')
-rw-r--r--recipes-support/ruby-shadow/ruby-shadow_git.bb17
1 files changed, 13 insertions, 4 deletions
diff --git a/recipes-support/ruby-shadow/ruby-shadow_git.bb b/recipes-support/ruby-shadow/ruby-shadow_git.bb
index 0c6fc60..9a82a5b 100644
--- a/recipes-support/ruby-shadow/ruby-shadow_git.bb
+++ b/recipes-support/ruby-shadow/ruby-shadow_git.bb
@@ -1,18 +1,25 @@
1SUMMARY = "Shadow Password Module" 1SUMMARY = "Shadow Password Module"
2HOMEPAGE = "https://github.com/apalmblad/ruby-shadow" 2HOMEPAGE = "https://github.com/apalmblad/ruby-shadow"
3LICENSE = "PD" 3LICENSE = "PD"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=137882914e5269b7268f0fe8e28a3f89" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=eee512aef6667f19c00b841db708cfeb"
5 5
6PV = "2.5.0" 6PV = "2.5.1"
7 7
8SRC_URI = "git://github.com/apalmblad/ruby-shadow.git;branch=master;protocol=https" 8SRC_URI = "git://github.com/apalmblad/ruby-shadow.git;branch=master;protocol=https \
9SRCREV = "d2e822d8a8bda61f0774debbfce363a7347ed893" 9 file://0001-shadow-update-to-ruby-3.x-str-routines.patch \
10 file://extconf.rb"
11
12SRCREV = "f135b3fd52d0a638f2eb9b17a8952a7f0f317688"
10S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
11 14
12inherit ruby 15inherit ruby
13 16
17GEM_NAME = "ruby-shadow"
18GEM_SPEC_FILE = "ruby-shadow.gemspec"
19
14DEPENDS += " \ 20DEPENDS += " \
15 ruby \ 21 ruby \
22 shadow \
16" 23"
17 24
18RDEPENDS:${PN} += " \ 25RDEPENDS:${PN} += " \
@@ -21,3 +28,5 @@ RDEPENDS:${PN} += " \
21 28
22RUBY_INSTALL_GEMS = "ruby-shadow-${PV}.gem" 29RUBY_INSTALL_GEMS = "ruby-shadow-${PV}.gem"
23FILES:${PN}-dbg += "/usr/lib*/ruby/gems/*/gems/ruby-shadow-${PV}/.debug/shadow.so" 30FILES:${PN}-dbg += "/usr/lib*/ruby/gems/*/gems/ruby-shadow-${PV}/.debug/shadow.so"
31
32INSANE_SKIP:${PN} += "ldflags textrel"