Browse Source

ruby: remove refs from dropped syck

syck was replaced by psych in yaml. (ref:
https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/36786)

Also add ruby-psych to ruby-yaml deps

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Luiz Angelo Daros de Luca 10 years ago
parent
commit
8d46e8a453
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      lang/ruby/Makefile

+ 2
- 4
lang/ruby/Makefile View File

16
 
16
 
17
 PKG_NAME:=ruby
17
 PKG_NAME:=ruby
18
 PKG_VERSION:=2.1.2
18
 PKG_VERSION:=2.1.2
19
-PKG_RELEASE:=8
19
+PKG_RELEASE:=9
20
 
20
 
21
 PKG_LIBVER:=2.1
21
 PKG_LIBVER:=2.1
22
 
22
 
214
 define Package/ruby-yaml
214
 define Package/ruby-yaml
215
 $(call Package/ruby/Default)
215
 $(call Package/ruby/Default)
216
   TITLE:=Ruby YAML toolkit
216
   TITLE:=Ruby YAML toolkit
217
-  DEPENDS:=ruby
217
+  DEPENDS:=ruby +ruby-psych
218
 endef
218
 endef
219
 
219
 
220
 define Package/ruby-zlib
220
 define Package/ruby-zlib
342
 		\
342
 		\
343
 		$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml \
343
 		$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml \
344
 		$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
344
 		$(1)/usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
345
-		$(1)/usr/lib/ruby/$(PKG_LIBVER)/*/syck.so \
346
 
345
 
347
 	find $(1) -name '*.h' | xargs rm -f
346
 	find $(1) -name '*.h' | xargs rm -f
348
 endef
347
 endef
537
 	( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
536
 	( cd $(PKG_INSTALL_DIR); $(TAR) -cf - \
538
 		usr/lib/ruby/$(PKG_LIBVER)/yaml \
537
 		usr/lib/ruby/$(PKG_LIBVER)/yaml \
539
 		usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
538
 		usr/lib/ruby/$(PKG_LIBVER)/yaml.rb \
540
-		usr/lib/ruby/$(PKG_LIBVER)/*/syck.so \
541
 	) | ( cd $(1); $(TAR) -xf - )
539
 	) | ( cd $(1); $(TAR) -xf - )
542
 endef
540
 endef
543
 
541