# HG changeset patch # User Eric Joseph-Alexandre # Date 1299024895 -3600 # Node ID 8ef7270b3cd9a31be5dd28b8b79e31b7b6aa55f6 # Parent f61db34d5da2bf2d41d57d7e605e537c980571ea Add: actionmailer, actionpack, activerecord, activeresource, activesupport' diff -r f61db34d5da2 -r 8ef7270b3cd9 actionmailer/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/actionmailer/receipt Wed Mar 02 01:14:55 2011 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="actionmailer" +VERSION="2.3.5" +CATEGORY="system-tools" +SHORT_DESC="Simple, battle-tested conventions for building and testing MVC web applications." +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby actionpack" +BUILD_DEPENDS="rubygems" +TARBALL="$PACKAGE-$VERSION.gem" +WEB_SITE="http://rubygems.org/gems/actionmailer" +WGET_URL="http://rubygems.org/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION + cd $src + + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + gem install --no-rdoc --no-ri --ignore-dependencies \ + --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + mkdir -p $fs/usr + + cp -a $_pkg/usr/lib $fs/usr +} + diff -r f61db34d5da2 -r 8ef7270b3cd9 actionpack/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/actionpack/receipt Wed Mar 02 01:14:55 2011 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="actionpack" +VERSION="2.3.5" +CATEGORY="system-tools" +SHORT_DESC="Simple, battle-tested conventions for building and testing MVC web applications." +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby activesupport" +DEPENDS="rubygems" +TARBALL="$PACKAGE-$VERSION.gem" +WEB_SITE="http://rubygems.org/gems/actionpack" +WGET_URL="http://rubygems.org/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION + cd $src + + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + gem install --no-rdoc --no-ri --ignore-dependencies \ + --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + mkdir -p $fs/usr + + cp -a $_pkg/usr/lib $fs/usr +} diff -r f61db34d5da2 -r 8ef7270b3cd9 activerecord/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/activerecord/receipt Wed Mar 02 01:14:55 2011 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="activerecord" +VERSION="2.3.5" +CATEGORY="system-tools" +SHORT_DESC="Rich support for multibyte strings" +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby activesupport" +BUILD_DEPENDS="rubygems" +TARBALL="$PACKAGE-$VERSION.gem" +WEB_SITE="http://rubygems.org/gems/activesupport" +WGET_URL="http://rubygems.org/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION + cd $src + + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + gem install --no-rdoc --no-ri --ignore-dependencies \ + --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + mkdir -p $fs/usr + + cp -a $_pkg/usr/lib $fs/usr +} diff -r f61db34d5da2 -r 8ef7270b3cd9 activeresource/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/activeresource/receipt Wed Mar 02 01:14:55 2011 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="activeresource" +VERSION="2.3.5" +CATEGORY="ddevelopment" +SHORT_DESC="REST on Rails." +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby activesupport" +BUID_DEPENDS="rubygems" +TARBALL="$PACKAGE-$VERSION.gem" +WEB_SITE="http://rubygems.org/gems/activeresource" +WGET_URL="http://rubygems.org/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION + cd $src + + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + gem install --no-rdoc --no-ri --ignore-dependencies \ + --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $SOURCES_REPOSITORY/$TARBALL +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + mkdir -p $fs/usr + + cp -a $_pkg/usr/lib $fs/usr +} diff -r f61db34d5da2 -r 8ef7270b3cd9 activesupport/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/activesupport/receipt Wed Mar 02 01:14:55 2011 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="activesupport" +VERSION="2.3.5" +CATEGORY="system-tools" +SHORT_DESC="Database tables mapping to Ruby classes" +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby" +BUILD_DEPENDS="rubygems" +TARBALL="$PACKAGE-$VERSION.gem" +WEB_SITE="http://rubygems.org/gems/activerecord" +WGET_URL="http://rubygems.org/downloads/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + [ -d $PACKAGE-$VERSION ] || mkdir $PACKAGE-$VERSION + #mv -f *.gem $PACKAGE-$VERSION + cd $src + wget "http://rubygems.org/downloads/$TARBALL" + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + gem install --no-rdoc --no-ri --install-dir $PWD/_pkg/usr/lib/ruby/gems/${RUBY_VERSION%.*} $TARBALL +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + RUBY_VERSION="$(ruby -e 'print RUBY_VERSION')" + mkdir -p $fs/usr + + cp -a $_pkg/usr/lib $fs/usr +} +