7852275c4f
- -xmlpatterns (and drop -no-exceptions) - -reduce-relocations, -dbus-linked, -openssl-linked - -no-nas - -no-phonon (-no-gstreamer), -no-webkit (for now, at least until conflicts with WebKit-qt and kdelibs4 are sorted out) - %_qt4_bindir -> %_bindir, avoid qt4-wrapper hackage (#277581, #422291) - qtconfig.desktop: NoDisplay=true (#244879)
22 lines
461 B
Bash
Executable File
22 lines
461 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DATE=$(date +%Y%m%d)
|
|
EXPORT_DIR=qt-copy
|
|
|
|
set -x
|
|
rm -rf $EXPORT_DIR
|
|
|
|
# app
|
|
svn export --non-recursive svn://anonsvn.kde.org/home/kde/trunk/qt-copy $EXPORT_DIR/
|
|
svn export svn://anonsvn.kde.org/home/kde/trunk/qt-copy/patches $EXPORT_DIR/patches
|
|
|
|
pushd $EXPORT_DIR
|
|
rm -f ../qt-copy-patches-${DATE}svn.tar.bz2
|
|
tar cjf ../qt-copy-patches-${DATE}svn.tar.bz2 \
|
|
.applied_patches apply_patches README.qt-copy patches/
|
|
popd
|
|
|
|
# cleanup
|
|
rm -rf $EXPORT_DIR
|
|
|