Compare commits

...
This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.

4 commits

Author SHA1 Message Date
Fedora Release Engineering
ad276c9b62 dist-git conversion 2010-07-28 09:41:05 +00:00
Orcan Ogetbil
b08df0eada - Change device order in autodetect. Prevents a possible crash.
- Fix segfault in waveedit when deleting end of waveform.
- Comply with new python guidelines
2010-05-30 15:50:24 +00:00
Bill Nottingham
99b732d322 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:25:59 +00:00
Jesse Keating
2afdf6c499 Initialize branch F-12 for aldrin 2009-09-29 08:11:42 +00:00
5 changed files with 80 additions and 24 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: aldrin
# $Id$
NAME := aldrin
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)

20
aldrin-65a8db7be79e.diff Normal file
View file

@ -0,0 +1,20 @@
# HG changeset patch -- Bitbucket.org
# Project Aldrin
# URL http://bitbucket.org/paniq/aldrin/overview
# User jmmcd
# Date 1238628185 -3600
# Node ID 65a8db7be79e5a55343fff33e0234702a2c04416
# Parent 66f9f971fdf278d83f620cea4a7de3585d1d1c31
Fix segfault in waveedit when deleting end of waveform. Fixes #16 on bitbucket. Thanks to bucket_brigade for the fix.
--- a/src/aldrin/waveedit.py
+++ b/src/aldrin/waveedit.py
@@ -115,7 +115,7 @@ class WaveEditView(gtk.DrawingArea):
player = com.get('aldrin.core.player')
if self.selection:
begin,end = self.selection
- self.level.remove_sample_range(begin,end)
+ self.level.remove_sample_range(begin,end-1)
self.selection = None
player.history_commit("remove sample range")
self.sample_changed()

42
aldrin-firstdev.patch Normal file
View file

@ -0,0 +1,42 @@
diff -rupN aldrin.old/src/components/driver.py aldrin/src/components/driver.py
--- aldrin.old/src/components/driver.py 2009-01-09 16:25:22.000000000 -0500
+++ aldrin/src/components/driver.py 2010-03-06 04:32:27.000000000 -0500
@@ -155,22 +155,33 @@ class AudioDriver:
# second round: if we didnt find them from the config,
# pick good alternatives.
+
+ # regardless of what was chosen as input, if output
+ # has an input as well, prefer that one first.
+ # We also prefer the first device since it is usually the
+ # default system device. Unfortunately, the armstrong api
+ # does not provide us a default value.
+ if (output == -1 and input == -1):
+ for i in range(self.driver.get_count()):
+ if (self.driver.is_output(i) and self.driver.is_input(i)):
+ output = i
+ input = i
+ break
if output == -1:
for i in range(self.driver.get_count()):
if self.driver.is_output(i):
output = i
-
- # regardless of what was chosen as input, if output
- # has an input as well, prefer that one first.
- if self.driver.is_input(output):
- input = output
+ break
# take output channel if it supports input
if input == -1:
for i in range(self.driver.get_count()):
if self.driver.is_input(i):
input = i
+ break
+ if self.driver.is_input(output):
+ input = output
if output == -1:
raise self.AudioInitException

View file

@ -1,14 +1,23 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif
Name: aldrin Name: aldrin
Version: 0.13 Version: 0.13
Release: 3%{?dist} Release: 4%{?dist}
Summary: Modular music sequencer/tracker Summary: Modular music sequencer/tracker
Group: Applications/Multimedia Group: Applications/Multimedia
License: GPLv2+ License: GPLv2+
URL: http://code.google.com/p/aldrin-sequencer/ URL: http://code.google.com/p/aldrin-sequencer/
Source0: http://aldrin-sequencer.googlecode.com/files/%{name}-%{version}.tar.gz Source0: http://aldrin-sequencer.googlecode.com/files/%{name}-%{version}.tar.gz
Patch0: aldrin-docfix.patch Patch0: aldrin-docfix.patch
# Choose the first detected device instead of last one. Prevents crashes on
# some systems I tried that supply multiple output devices per sound card.
# http://bitbucket.org/paniq/aldrin/issue/32/device-order-patch
Patch1: aldrin-firstdev.patch
# Fix segfault in waveedit when deleting end of waveform.
# http://bitbucket.org/paniq/aldrin/issue/16/segfault-when-deleting-the-end-of-a-wav
Patch2: aldrin-65a8db7be79e.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch BuildArch: noarch
BuildRequires: scons BuildRequires: scons
@ -26,7 +35,8 @@ samples.
%prep %prep
%setup -q -n %{name} %setup -q -n %{name}
%patch0 -p1 -b .docfix %patch0 -p1 -b .docfix
%patch1 -p1 -b .firstdev
%patch2 -p1 -b .delete.waveform
%build %build
# Fix encoding # Fix encoding
@ -80,6 +90,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{_datadir}/icons/hicolor/*/apps/* %{_datadir}/icons/hicolor/*/apps/*
%changelog %changelog
* Sat Mar 06 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.13-4
- Change device order in autodetect. Prevents a possible crash.
- Fix segfault in waveedit when deleting end of waveform.
- Comply with new python guidelines
* Wed Aug 05 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.13-3 * Wed Aug 05 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 0.13-3
- Update the .desktop file - Update the .desktop file