wok-next rev 20912
Remove ruby-enterprise
https://old.blog.phusion.nl/2012/02/21/ruby-enterprise-edition-1-8-7-2012-02-released-end-of-life-imminent/
https://old.blog.phusion.nl/2012/02/21/ruby-enterprise-edition-1-8-7-2012-02-released-end-of-life-imminent/
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Mon Aug 20 08:19:43 2018 +0300 (2018-08-20) |
parents | 19ed8fb05839 |
children | 90755b4facb0 |
files | ovz-web-panel/receipt ruby-enterprise/receipt |
line diff
1.1 --- a/ovz-web-panel/receipt Sat Aug 18 16:39:38 2018 +0300 1.2 +++ b/ovz-web-panel/receipt Mon Aug 20 08:19:43 2018 +0300 1.3 @@ -10,7 +10,7 @@ 1.4 WEB_SITE="https://code.google.com/archive/p/ovz-web-panel/" 1.5 WGET_URL="http://ovz-web-panel.googlecode.com/files/$TARBALL" # FIXME 1.6 1.7 -DEPENDS="ruby-enterprise ruby-sqlite3" 1.8 +DEPENDS="ruby ruby-sqlite3" 1.9 1.10 # Rules to configure and make the package. 1.11 compile_rules()
2.1 --- a/ruby-enterprise/receipt Sat Aug 18 16:39:38 2018 +0300 2.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 2.3 @@ -1,49 +0,0 @@ 2.4 -# SliTaz package receipt v2. 2.5 - 2.6 -PACKAGE="ruby-enterprise" 2.7 -VERSION="1.8.7-2012.02" 2.8 -CATEGORY="development" 2.9 -SHORT_DESC="Ruby Enterprise Edition" 2.10 -MAINTAINER="erjo@slitaz.org" 2.11 -LICENSE="GPL2" 2.12 -WEB_SITE="http://www.rubyenterpriseedition.com/" 2.13 - 2.14 -TARBALL="$PACKAGE-$VERSION.tar.gz" 2.15 -WGET_URL="http://rubyenterpriseedition.googlecode.com/files/$TARBALL" 2.16 - 2.17 -BUILD_DEPENDS="zlib-dev" 2.18 -SPLIT="ruby-enterprise-doc" 2.19 - 2.20 -compile_rules() { 2.21 - cd $src/source 2.22 - for i in ext/dl/mk*rb ; do 2.23 - grep -q STDOUT.flush $i || echo "STDOUT.flush" >> $i 2.24 - done 2.25 - ./configure $CONFIGURE_ARGS && make && make install 2.26 -} 2.27 - 2.28 -genpkg_rules() { 2.29 - case $PACKAGE in 2.30 - ruby-enterprise) 2.31 - mkdir -p $fs/usr/lib 2.32 - cp -a $install/usr/lib/ruby $fs/usr/lib 2.33 - cp -a $install/usr/bin $fs/usr 2.34 - 2.35 - # Remove devel files --> ruby-enterprise-dev 2.36 - rm $fs/usr/lib/ruby/1.8/i?86-linux/*.h 2.37 - 2.38 - # Remove doc --> ruby-enterprise-doc 2.39 - rm -rf $fs/usr/lib/ruby/1.8/rdoc 2.40 - DEPENDS="libdb ncurses openssl readline zlib" 2.41 - PROVIDE="ruby" 2.42 - SUGGESTED="tk xorg-libXScrnSaver gdbm" 2.43 - TAGS="ruby language programming" 2.44 - ;; 2.45 - ruby-enterprise-doc) 2.46 - mkdir -p $fs/usr/lib/ruby/1.8 2.47 - cp -a $install/usr/lib/ruby/1.8/rdoc $fs/usr/lib/ruby/1.8/rdoc 2.48 - CAT="development|documentation" 2.49 - DEPENDS="ruby-enterprise" 2.50 - ;; 2.51 - esac 2.52 -}