New upstream 0.22.2
This commit is contained in:
parent
ead7a68a22
commit
87c45ef7ab
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ guitarix-0.11.0.tar.bz2
|
||||
/guitarix2-0.20.2.tar.bz2
|
||||
/guitarix2-0.21.0.tar.bz2
|
||||
/guitarix-0.21.0-glib.patch
|
||||
/guitarix2-0.22.2.tar.bz2
|
||||
|
@ -1,33 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# $1 - revision number to checkout.
|
||||
: ${1?"You must either provide desired revision number \"X\" to checkout: `basename $0` X
|
||||
or fetch the latest revision by: `basename $0` HEAD"}
|
||||
|
||||
set -e
|
||||
|
||||
tmp=$(mktemp -d)
|
||||
|
||||
trap cleanup EXIT
|
||||
cleanup() {
|
||||
set +e
|
||||
[ -z "$tmp" -o ! -d "$tmp" ] || rm -rf "$tmp"
|
||||
}
|
||||
|
||||
unset CDPATH
|
||||
pwd=$(pwd)
|
||||
name=guitarix2
|
||||
version=0.20.0
|
||||
|
||||
revision=$1
|
||||
|
||||
pushd "$tmp" >/dev/null
|
||||
echo "Fetching SVN revision: $1"
|
||||
svn export -r$revision https://guitarix.svn.sourceforge.net/svnroot/guitarix/trunk $name-$version |tee $name.stdout
|
||||
revision=$(cat $name.stdout|grep "Exported revision"|sed 's|[^0-9]*||g')
|
||||
echo "Fetched SVN revision: $revision"
|
||||
rm -f $name.stdout
|
||||
|
||||
tar jcf "$pwd"/$name-$version-svn$revision.tar.bz2 $name-$version
|
||||
echo "Written: $name-$version-svn$revision.tar.bz2"
|
||||
popd >/dev/null
|
@ -4,17 +4,13 @@
|
||||
%global altname2 guitarix2
|
||||
|
||||
Name: guitarix
|
||||
Version: 0.21.0
|
||||
Version: 0.22.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Mono amplifier to JACK
|
||||
Group: Applications/Multimedia
|
||||
License: GPLv2+
|
||||
URL: http://guitarix.sourceforge.net/
|
||||
Source0: http://sourceforge.net/projects/%{name}/files/%{name}/%{altname2}-%{version}.tar.bz2
|
||||
# to grab source from svn: sh guitarix-snapshot.sh 1245
|
||||
Source1: guitarix-snapshot.sh
|
||||
# add missing glibmm headers for gcc 4.7
|
||||
Patch0: guitarix-0.21.0-glib.patch
|
||||
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: faust
|
||||
@ -71,12 +67,13 @@ and monocompressor ladspa plug-ins that come together with guitarix, but can
|
||||
also be used by any other ladspa host.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}2-%{version}
|
||||
%patch0 -p1
|
||||
%setup -q -n %{name}-%{version}
|
||||
#%patch0 -p1
|
||||
|
||||
# The build system does not use these bundled libraries by default. But
|
||||
# just to make sure:
|
||||
rm -fr src/zita-convolver src/zita-resampler
|
||||
sed -i -e 's|-O3|%{optflags}|' wscript
|
||||
|
||||
%build
|
||||
./waf -vv configure --prefix=%{_prefix} \
|
||||
@ -116,14 +113,11 @@ chmod 644 %{buildroot}/%{_datadir}/%{altname}/skins/*
|
||||
%{_datadir}/ladspa
|
||||
|
||||
%changelog
|
||||
* Thu May 03 2012 Brendan Jones <brendan.jones.it@gmail.com> - 0.22.2-1
|
||||
- Update to upstream 0.22.0
|
||||
|
||||
* Tue Jan 17 2012 Brendan Jones <brendan.jones.it@gmail.com> - 0.21.0-1
|
||||
- Update to upstream 0.21.0, correct fail to build (missing glibmm headers)
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sun Nov 20 2011 Adam Huffman <adam@vaioz.verdurin.salon> - 0.20.2-4
|
||||
- rebuild for new Boost in Rawhide
|
||||
- Update to upstream 0.21.0
|
||||
|
||||
* Sat Nov 12 2011 Brendan Jones <brendan.jones.it@gmail.com> - 0.20.2-3
|
||||
- Add boost-devel build requires
|
||||
|
Loading…
Reference in New Issue
Block a user