Initial commit with Symfony 2.1+Vendors
Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
102
vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build.sh
vendored
Executable file
102
vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build.sh
vendored
Executable file
@@ -0,0 +1,102 @@
|
||||
#!/bin/sh
|
||||
|
||||
# This file is part of the Symfony Standard Edition.
|
||||
#
|
||||
# (c) Fabien Potencier <fabien@symfony.com>
|
||||
#
|
||||
# For the full copyright and license information, please view the LICENSE
|
||||
# file that was distributed with this source code.
|
||||
|
||||
DIR=`php -r "echo realpath(dirname(\\$_SERVER['argv'][0]));"`
|
||||
cd $DIR
|
||||
VERSION=`grep ' VERSION ' vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php | sed -E "s/.*'(.+)'.*/\1/g"`
|
||||
|
||||
if [ ! -d "$DIR/build" ]; then
|
||||
mkdir -p $DIR/build
|
||||
fi
|
||||
|
||||
# Without vendors
|
||||
rm -rf /tmp/Symfony
|
||||
mkdir /tmp/Symfony
|
||||
cp -r app /tmp/Symfony/
|
||||
cp -r src /tmp/Symfony/
|
||||
cp -r web /tmp/Symfony/
|
||||
cp README.md /tmp/Symfony/
|
||||
cp LICENSE /tmp/Symfony/
|
||||
cp composer.json /tmp/Symfony/
|
||||
cp composer.lock /tmp/Symfony/
|
||||
cd /tmp/Symfony
|
||||
sudo rm -rf app/cache/* app/logs/* .git*
|
||||
chmod 777 app/cache app/logs
|
||||
|
||||
# DS_Store cleanup
|
||||
find . -name .DS_Store | xargs rm -rf -
|
||||
|
||||
cd ..
|
||||
# avoid the creation of ._* files
|
||||
export COPY_EXTENDED_ATTRIBUTES_DISABLE=true
|
||||
export COPYFILE_DISABLE=true
|
||||
tar zcpf $DIR/build/Symfony_Standard_$VERSION.tgz Symfony
|
||||
sudo rm -f $DIR/build/Symfony_Standard_$VERSION.zip
|
||||
zip -rq $DIR/build/Symfony_Standard_$VERSION.zip Symfony
|
||||
|
||||
# With vendors
|
||||
cd $DIR
|
||||
rm -rf /tmp/vendor
|
||||
mkdir /tmp/vendor
|
||||
TARGET=/tmp/vendor
|
||||
|
||||
if [ ! -d "$DIR/vendor" ]; then
|
||||
echo "The master vendor directory does not exist"
|
||||
exit
|
||||
fi
|
||||
|
||||
cp -r $DIR/vendor/* $TARGET/
|
||||
|
||||
# Doctrine ORM
|
||||
cd $TARGET/doctrine/orm && rm -rf UPGRADE* build* bin tests tools lib/vendor
|
||||
|
||||
# Doctrine DBAL
|
||||
cd $TARGET/doctrine/dbal && rm -rf bin build* tests lib/vendor
|
||||
|
||||
# Doctrine Common
|
||||
cd $TARGET/doctrine/common && rm -rf build* tests lib/vendor
|
||||
|
||||
# Swiftmailer
|
||||
cd $TARGET/swiftmailer/swiftmailer && rm -rf CHANGES README* build* docs notes test-suite tests create_pear_package.php package*
|
||||
|
||||
# Symfony
|
||||
cd $TARGET/symfony/symfony && rm -rf README.md phpunit.xml* tests *.sh vendor
|
||||
|
||||
# Twig
|
||||
cd $TARGET/twig/twig && rm -rf AUTHORS CHANGELOG README.markdown bin doc package.xml.tpl phpunit.xml* test
|
||||
|
||||
# Twig Extensions
|
||||
cd $TARGET/twig/extensions && rm -rf README doc phpunit.xml* test
|
||||
|
||||
# Monolog
|
||||
cd $TARGET/monolog/monolog && rm -rf README.markdown phpunit.xml* tests
|
||||
|
||||
# Sensio
|
||||
cd $TARGET/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/ && rm -rf phpunit.xml* Tests CHANGELOG*
|
||||
cd $TARGET/sensio/framework-extra-bundle/Sensio/Bundle/FrameworkExtraBundle/ && rm -rf phpunit.xml* Tests CHANGELOG*
|
||||
cd $TARGET/sensio/generator-bundle/Sensio/Bundle/GeneratorBundle/ && rm -rf phpunit.xml* Tests CHANGELOG*
|
||||
|
||||
# JMS
|
||||
cd $TARGET/jms/metadata && rm -rf README.rst phpunit.xml* tests
|
||||
cd $TARGET/jms/cg && rm -rf README.rst phpunit.xml* tests
|
||||
cd $TARGET/jms/aop-bundle/JMS/AopBundle && rm -rf phpunit.xml* Tests
|
||||
cd $TARGET/jms/di-extra-bundle/JMS/DiExtraBundle && rm -rf phpunit.xml* Tests
|
||||
cd $TARGET/jms/security-extra-bundle/JMS/SecurityExtraBundle/ && rm -rf phpunit.xml* Tests
|
||||
|
||||
# cleanup
|
||||
find $TARGET -name .git | xargs rm -rf -
|
||||
find $TARGET -name .gitignore | xargs rm -rf -
|
||||
find $TARGET -name .gitmodules | xargs rm -rf -
|
||||
find $TARGET -name .svn | xargs rm -rf -
|
||||
|
||||
cd /tmp/
|
||||
mv /tmp/vendor /tmp/Symfony/
|
||||
tar zcpf $DIR/build/Symfony_Standard_Vendors_$VERSION.tgz Symfony
|
||||
sudo rm -f $DIR/build/Symfony_Standard_Vendors_$VERSION.zip
|
||||
zip -rq $DIR/build/Symfony_Standard_Vendors_$VERSION.zip Symfony
|
26
vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php
vendored
Executable file
26
vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php
vendored
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony Standard Edition.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
$argv = $_SERVER['argv'];
|
||||
|
||||
// allow the base path to be passed as the first argument, or default
|
||||
if (isset($argv[1])) {
|
||||
$appDir = $argv[1];
|
||||
} else {
|
||||
if (!$appDir = realpath(__DIR__.'/../../../../../../../app')) {
|
||||
exit('Looks like you don\'t have a standard layout.');
|
||||
}
|
||||
}
|
||||
|
||||
require_once $appDir.'/autoload.php';
|
||||
|
||||
\Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::doBuildBootstrap($appDir);
|
Reference in New Issue
Block a user