Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Fedora Release Engineering
99fbbcf37b dist-git conversion 2010-07-29 12:36:40 +00:00
Bill Nottingham
68add95afb Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:38:45 +00:00
green
a568c90730 Rev 9. Fix buffer overflow. 2008-07-11 15:04:28 +00:00
Jesse Keating
17a6360aad Initialize branch F-8 for seq24 2007-10-20 11:16:56 +00:00
4 changed files with 19 additions and 23 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: seq24
# $Id$
NAME := seq24
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1,11 @@
--- src/seqdata.cpp~ 2006-05-17 21:40:15.000000000 -0700
+++ src/seqdata.cpp 2008-07-11 07:44:12.000000000 -0700
@@ -118,7 +118,7 @@
6,
30 );
- char val[4];
+ char val[5];
sprintf( val, "%3d\n", i );
char num[6];
memset( num, 0, 6);

View file

@ -1,14 +1,15 @@
Summary: Real-time midi sequencer
Name: seq24
Version: 0.8.7
Release: 8%{?dist}
License: GPL
Release: 9%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.filter24.org/seq24/
Source: http://filter24.org/seq24/seq24-%{version}.tar.gz
Source1: seq24.png
Source2: seq24.desktop
Patch0: seq24-stack-smash.patch
Patch3: seq24-buffer-overflow.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: lash-devel gtkmm24-devel
@ -24,6 +25,7 @@ interface for editing and playing midi 'loops'.
%prep
%setup -q
%patch0 -p0 -b .stack-smash~
%patch3 -p0 -b .buffer-overflow
%build
%configure
@ -65,6 +67,10 @@ touch --no-create %{_datadir}/icons/hicolor || :
%{_datadir}/icons/hicolor/64x64/apps/seq24.png
%changelog
* Fri Jul 11 2008 Anthony Green <green@redhat.com> 0.8.7-9
- Add buffer overflow fix.
- Fix license tag
* Tue Oct 09 2007 Anthony Green <green@redhat.com> 0.8.7-8
- Rebuilt for new lash again.