Skip to content

Commit 39a0ba8

Browse files
committed
Updated ChangeLog and build script
1 parent 83733e2 commit 39a0ba8

9 files changed

Lines changed: 27 additions & 16 deletions

File tree

.github/workflows/Linux_ARM64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Linux_ARM64
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

.github/workflows/Linux_x86-64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Linux_x86-64
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

.github/workflows/Windows_x86-64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Windows_x86-64
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

.github/workflows/macOS_ARM64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: macOS_ARM64
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

.github/workflows/macOS_x86-64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: macOS_x86-64
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

.github/workflows/source.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Source
33
on:
44
push:
55
branches:
6-
- beta
6+
- fs-uae-3
77
- master
88
- stable
99
- test
1010
pull_request:
1111
branches:
12-
- beta
12+
- fs-uae-3
1313
- master
1414
- stable
1515

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Version 3.2.x:
22

3+
* Disable cpu governor warning on Linux.
34
* Allow overriding device names for hard drive directories.
45
* Upgrade libslirp to version 4.6.1.
56
* Backported builtin slirp from FS-UAE 4 (fixes A2065 instability).

fs-uae.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Name: %{name}
2727
Version: %{version}
2828
Release: %{release}
2929
URL: http://fs-uae.net/
30-
Source0: %{name}-%{unmangled_version}.tar.xz
30+
Source0: %{name}_%{unmangled_version}.orig.tar.xz
3131
License: GPL-2.0+
3232
Group: System/Emulators/Other
3333
%if 0%{?suse_version}

fsbuild/obs-dist

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,20 @@ fsbuild/deb-src
88
rm -Rf fsbuild/_dist/obs
99
mkdir -p fsbuild/_dist/obs
1010

11-
cp $PACKAGE_NAME.spec fsbuild/_dist/obs
11+
OBS_PROJECT="home:FrodeSolheim"
12+
OBS_PACKAGE_DIR=~/obs/"$OBS_PROJECT"/fs-uae
13+
14+
rm -f "$OBS_PACKAGE_DIR"/*
15+
16+
cp $PACKAGE_NAME.spec "$OBS_PACKAGE_DIR"/
1217
cp \
13-
$PACKAGE_NAME-$PACKAGE_VERSION.tar.xz \
1418
${PACKAGE_NAME}_${PACKAGE_VERSION}-0.debian.tar.xz \
1519
${PACKAGE_NAME}_${PACKAGE_VERSION}-0.dsc \
1620
${PACKAGE_NAME}_${PACKAGE_VERSION}.orig.tar.xz \
17-
fsbuild/_dist/obs
21+
"$OBS_PACKAGE_DIR"/
22+
23+
echo "Now you can:"
24+
echo ""
25+
echo "cd \"$OBS_PACKAGE_DIR\""
26+
echo "osc addremove . && EDITOR=nano osc commit -m Updated"
27+
echo ""

0 commit comments

Comments
 (0)