xasm 3.1.1 release.

This commit is contained in:
Piotr Fusik 2019-11-20 17:43:51 +01:00
parent 420a83a897
commit 301b904f60
6 changed files with 28 additions and 10 deletions

View File

@ -1,4 +1,4 @@
VERSION = 3.1.0
VERSION = 3.1.1
prefix = /usr/local
bindir = $(prefix)/bin
@ -44,13 +44,13 @@ MANIFEST:
deb:
debuild -b -us -uc
osx: ../xasm-$(VERSION)-osx.dmg
osx: ../xasm-$(VERSION)-macos.dmg
../xasm-$(VERSION)-osx.dmg: osx/xasm osx/bin
hdiutil create -volname xasm-$(VERSION)-osx -srcfolder osx -imagekey zlib-level=9 -ov $@
../xasm-$(VERSION)-macos.dmg: osx/xasm osx/bin
hdiutil create -volname xasm-$(VERSION)-macos -srcfolder osx -format UDBZ -fs HFS+ -imagekey bzip2-level=3 -ov $@
osx/xasm: source/app.d
mkdir -p osx && dmd -of$@ -O -release -m32 -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
mkdir -p osx && dmd -of$@ -O -release -L-macosx_version_min -L10.6 $< && rm -f osx/xasm.o
osx/bin:
mkdir -p osx && ln -s /usr/bin $@

View File

@ -99,7 +99,7 @@ These rights, on this notice, rely.
Download
--------
[xasm 3.1.0](https://github.com/pfusik/xasm/releases) for Windows, OS X, Ubuntu and Fedora.
[xasm 3.1.1](https://github.com/pfusik/xasm/releases) for Windows, macOS, Ubuntu and Fedora.
Links
-----

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
xasm (3.1.1-1) UNRELEASED; urgency=low
* New release.
-- Piotr Fusik <fox@scene.pl> Wed, 20 Nov 2019 13:30:11 +0100
xasm (3.1.0-1) UNRELEASED; urgency=low
* First deb packaging.

View File

@ -1,6 +1,6 @@
// xasm 3.1.0 by Piotr Fusik <fox@scene.pl>
// xasm 3.1.1 by Piotr Fusik <fox@scene.pl>
// http://xasm.atari.org
// Can be compiled with DMD v2.087.1.
// Can be compiled with DMD v2.089.0.
// Poetic License:
//
@ -35,7 +35,7 @@ int readByte(File *file) {
return c;
}
const string TITLE = "xasm 3.1.0";
const string TITLE = "xasm 3.1.1";
string sourceFilename = null;
bool[26] options;

View File

@ -686,6 +686,13 @@ and pseudo commands, except for `MWA`, `MWX` and `MWY`:
HISTORY
-------
Version 3.1.1 (2019-11-20)
~~~~~~~~~~~~~~~~~~~~~~~~~~
- remove partial object file on error (requested by Bill Kendrick)
- report label name in the unused label warning (requested by Peter Dell)
- support `a:`/`f:` modifiers for `RUN`/`INI`
- improved performance with network drives (reported by Marek Pavlik)
Version 3.1.0 (2014-07-20)
~~~~~~~~~~~~~~~~~~~~~~~~~~
- OS X, Ubuntu and Fedora distributions

View File

@ -1,5 +1,5 @@
Name: xasm
Version: 3.1.0
Version: 3.1.1
Release: 1
Summary: 6502 cross-assembler
License: Poetic
@ -12,6 +12,8 @@ BuildRoot: %{_tmppath}/%{name}-root
%description
xasm is a 6502 cross-assembler with original syntax extensions.
%global debug_package %{nil}
%prep
%setup -q
@ -31,6 +33,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man1/xasm.1.gz
%changelog
* Wed Nov 20 2019 Piotr Fusik <fox@scene.pl>
- 3.1.1-1
* Sun Jul 20 2014 Piotr Fusik <fox@scene.pl>
- 3.1.0-1
- Initial packaging