~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to packaging/rpm-uln/generate-tarball.sh

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
VERSION=$1
4
 
 
5
 
rm -rf mysql-$VERSION
6
 
 
7
 
tar xfz mysql-$VERSION.tar.gz || exit 1
8
 
 
9
 
rm mysql-$VERSION/Docs/mysql.info
10
 
 
11
 
tar cfz mysql-$VERSION-nodocs.tar.gz mysql-$VERSION || exit 1
12
 
 
13
 
rm -rf mysql-$VERSION
14
 
 
15
 
exit 0