Skip to content

Commit 87c3b43

Browse files
committed
[build] OBS file updates for v1.3
Also add GCC 9 and 9 tests/exports
1 parent fb53891 commit 87c3b43

File tree

8 files changed

+28
-11
lines changed

8 files changed

+28
-11
lines changed

obs/PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pkgname=cemu
2-
pkgver=1.2
2+
pkgver=1.3
33
pkgrel=0
44
pkgdesc='TI-84 Plus CE / TI-83 Premium CE emulator.'
55
arch=('i686' 'x86_64')
@@ -17,7 +17,7 @@ build() {
1717
cd gui/qt/capture/libpng-apng && ./configure --with-libpng-prefix=a --enable-static --disable-shared CFLAGS="-O2 -fPIC" && make libpng16.la && cd ../../../..
1818
mkdir -p build
1919
cd build
20-
qmake ../gui/qt/CEmu.pro CEMU_VERSION=v1.2 USE_LIBPNG=internal TARGET_NAME=cemu
20+
qmake ../gui/qt/CEmu.pro CEMU_VERSION=v1.3 USE_LIBPNG=internal TARGET_NAME=cemu
2121
make
2222
}
2323

obs/_service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<param name="url">https://github.com/CE-Programming/CEmu.git</param>
44
<param name="scm">git</param>
55
<param name="filename">CEmu</param>
6-
<param name="revision">f654cb8</param>
7-
<param name="version">1.2</param>
6+
<param name="revision">fb53891</param>
7+
<param name="version">1.3</param>
88
</service>
99
<service name="recompress" mode="disabled">
1010
<param name="file">*.tar</param>

obs/cemu.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Sat Jun 22 08:12:30 UTC 2019 - bertrand.adrien@gmail.com
3+
4+
- v1.3: Several improvements, bugfixes, minor additions (see GitHub)
5+
16
-------------------------------------------------------------------
27
Mon Dec 10 17:03:30 UTC 2018 - bertrand.adrien@gmail.com
38

obs/cemu.dsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Format: 3.0 (quilt)
22
Source: cemu
33
Binary: cemu
4-
Version: 1.2-0
4+
Version: 1.3-0
55
Architecture: any
66
Maintainer: Adrien Bertrand <bertrand.adrien@gmail.com>
77
Homepage: https://github.com/CE-Programming/CEmu

obs/cemu.spec

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
%global debug_package %{nil}
2020
Name: cemu
21-
Version: 1.2
21+
Version: 1.3
2222
Release: 0
2323
Summary: TI-84 Plus CE / TI-83 Premium CE emulator
2424
License: GPL-3.0
@@ -94,8 +94,12 @@ test -x "$(type -p gcc-6)" && export CC=gcc-6
9494
test -x "$(type -p g++-6)" && export CXX=g++-6
9595
test -x "$(type -p gcc-7)" && export CC=gcc-7
9696
test -x "$(type -p g++-7)" && export CXX=g++-7
97+
test -x "$(type -p gcc-8)" && export CC=gcc-8
98+
test -x "$(type -p g++-8)" && export CXX=g++-8
99+
test -x "$(type -p gcc-9)" && export CC=gcc-9
100+
test -x "$(type -p g++-9)" && export CXX=g++-9
97101
cd gui/qt/capture/libpng-apng && ./configure --with-libpng-prefix=a --enable-static --disable-shared CFLAGS="-O2 -fPIC" && make libpng16.la && cd ../../../..
98-
qmake-qt5 QMAKE_CC="$CC" QMAKE_CXX="$CXX" QMAKE_LINK="$CXX" gui/qt/CEmu.pro CEMU_VERSION=v1.2 USE_LIBPNG=internal TARGET_NAME=cemu
102+
qmake-qt5 QMAKE_CC="$CC" QMAKE_CXX="$CXX" QMAKE_LINK="$CXX" gui/qt/CEmu.pro CEMU_VERSION=v1.3 USE_LIBPNG=internal TARGET_NAME=cemu
99103
make %{?_smp_mflags}
100104

101105
%install

obs/debian.changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
cemu (1.3-0) unstable; urgency=low
2+
3+
* Several improvements, bugfixes, minor additions (see GitHub)
4+
5+
-- Adrien Bertrand <bertrand.adrien@gmail.com> Sat, 22 Jun 2019 15:12:30 +0800
6+
7+
18
cemu (1.2-0) unstable; urgency=low
29

310
* Several improvements, bugfixes, minor additions (see GitHub)

obs/debian.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Source: cemu
2-
Section: sectionName
2+
Section: devel
33
Priority: optional
44
Maintainer: Adrien Bertrand <bertrand.adrien@gmail.com>
55
Homepage: https://github.com/CE-Programming/CEmu

obs/debian.rules

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ else
1414
CFLAGS += -O2
1515
endif
1616

17+
CEMU_VERNUM = 1.3
18+
1719
build: build-stamp
1820
build-stamp:
1921
dh_testdir
2022

2123
# Add here commands to compile the package.
22-
echo $PWD
23-
cd gui/qt/capture/libpng-apng && ./configure --with-libpng-prefix=a --enable-static --disable-shared CFLAGS="-O2 -fPIC" && make libpng16.la && cd ../../../..
24-
qmake gui/qt/CEmu.pro CEMU_VERSION=v1.2 USE_LIBPNG=internal TARGET_NAME=cemu
24+
cd cemu-$(CEMU_VERNUM)/gui/qt/capture/libpng-apng && ./configure --with-libpng-prefix=a --enable-static --disable-shared CFLAGS="-O2 -fPIC" && make libpng16.la && cd ../../../../..
25+
qmake cemu-$(CEMU_VERNUM)/gui/qt/CEmu.pro CEMU_VERSION=v$(CEMU_VERNUM) USE_LIBPNG=internal TARGET_NAME=cemu
2526
make
2627
# --- end custom part for compiling
2728

0 commit comments

Comments
 (0)