Mageia Bugzilla – Attachment 5313 Details for
Bug 11253
f-spot, personal photo management application for the GNOME desktop
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
mk-tar script
mk-tar (text/plain), 723 bytes, created by
Barry Jackson
on 2014-07-23 22:56:35 CEST
(
hide
)
Description:
mk-tar script
Filename:
MIME Type:
Creator:
Barry Jackson
Created:
2014-07-23 22:56:35 CEST
Size:
723 bytes
patch
obsolete
>#!/bin/bash > >name=f-spot >ver=0.9.0 >#url=git://git.gnome.org/f-spot >#url=https://github.com/mono/f-spot.git >url=https://github.com/NguyenMatthieu/f-spot.git >tartype=tar.gz > >[[ -d $name ]] && rm -rf $name > >git clone $url $name > >cd $name >rev=$(git rev-list HEAD | wc -l) >export NOCONFIGURE=1 >./autogen.sh >cd .. > ># Create tarball >case $tartype in >tar.gz) >opt=z >;; >tar.bz2) >opt=j >;; >tar.xz) >opt=J >;; >tar) >opt= >;; >*) >echo "Unsupported compression type" >exit 1 >esac > >echo "Please wait creating tarball..." >[[ -f $name.$ver.$rev.$tartype ]] && rm $name.$ver.$rev.$tartype >tar -c"$opt"f $name.$ver.$rev.$tartype $name/ --exclude-vcs >[[ $? = 0 ]] && chmod 644 $name.$ver.$rev.$tartype && \ >echo "Written $name.$ver.$rev.$tartype" > >
#!/bin/bash name=f-spot ver=0.9.0 #url=git://git.gnome.org/f-spot #url=https://github.com/mono/f-spot.git url=https://github.com/NguyenMatthieu/f-spot.git tartype=tar.gz [[ -d $name ]] && rm -rf $name git clone $url $name cd $name rev=$(git rev-list HEAD | wc -l) export NOCONFIGURE=1 ./autogen.sh cd .. # Create tarball case $tartype in tar.gz) opt=z ;; tar.bz2) opt=j ;; tar.xz) opt=J ;; tar) opt= ;; *) echo "Unsupported compression type" exit 1 esac echo "Please wait creating tarball..." [[ -f $name.$ver.$rev.$tartype ]] && rm $name.$ver.$rev.$tartype tar -c"$opt"f $name.$ver.$rev.$tartype $name/ --exclude-vcs [[ $? = 0 ]] && chmod 644 $name.$ver.$rev.$tartype && \ echo "Written $name.$ver.$rev.$tartype"
View Attachment As Raw
Actions:
View
Attachments on
bug 11253
:
5309
|
5310
|
5313
|
5314
|
5746
|
5747
|
5748
|
6826
|
6827
|
6828
|
7385
|
7394