Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: fasm-1.73.16
@ 2019-09-29  4:46 voidlinux-github
  2019-09-29  5:31 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  4:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 311 bytes --]

There is a new pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1244 bytes --]

From 56dd9f8f573e9925a0115c0f51d7f60b78fd600b Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..9a997415e50
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,33 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+short_desc="fasm assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+archs="i686 i686-musl x86_64 x86_64-musl"
+nostrip=yes
+wrksrc=fasm
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm
+)
+
+do_install() {
+	vbin fasm
+	vdoc fasm.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
@ 2019-09-29  5:31 ` voidlinux-github
  2019-09-29  5:31 ` voidlinux-github
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  5:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1268 bytes --]

From 63df569b3a0bc209316e6e6e57d4aee852900a65 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..bc683464a79
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm
+)
+
+do_install() {
+	vbin fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
  2019-09-29  5:31 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-29  5:31 ` voidlinux-github
  2019-09-29  5:56 ` voidlinux-github
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  5:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1268 bytes --]

From 63df569b3a0bc209316e6e6e57d4aee852900a65 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..bc683464a79
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm
+)
+
+do_install() {
+	vbin fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-09-29  5:56 ` voidlinux-github
@ 2019-09-29  5:56 ` voidlinux-github
  2019-09-29  6:03 ` voidlinux-github
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  5:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1268 bytes --]

From 275384edd0cc9c65ec008e5b8762422c1c779970 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..662235d7718
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm
+)
+
+do_install() {
+	vbin fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
  2019-09-29  5:31 ` [PR PATCH] [Updated] " voidlinux-github
  2019-09-29  5:31 ` voidlinux-github
@ 2019-09-29  5:56 ` voidlinux-github
  2019-09-29  5:56 ` voidlinux-github
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  5:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1268 bytes --]

From 275384edd0cc9c65ec008e5b8762422c1c779970 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..662235d7718
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm
+)
+
+do_install() {
+	vbin fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-09-29  5:56 ` voidlinux-github
@ 2019-09-29  6:03 ` voidlinux-github
  2019-09-29  6:03 ` voidlinux-github
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  6:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1281 bytes --]

From 4b28ca2d9dc317fcb8510a0a8502614be0301d6b Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..4636cc15008
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm.out
+)
+
+do_install() {
+	vbin fasm.out fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-09-29  6:03 ` voidlinux-github
@ 2019-09-29  6:03 ` voidlinux-github
  2019-10-10 19:59 ` voidlinux-github
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-09-29  6:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1281 bytes --]

From 4b28ca2d9dc317fcb8510a0a8502614be0301d6b Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..4636cc15008
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686 i686-musl x86_64 x86_64-musl"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="http://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_MACHINE} in
+(i686|i686-musl)
+	_fasm=./fasm
+	_source='source/Linux/fasm.asm'
+	;;
+(x86_64|x86_64-musl)
+	_fasm=./fasm.x64
+	_source='source/Linux/x64/fasm.asm'
+	;;
+esac
+
+do_build() (
+	${_fasm} ${_source} fasm.out
+)
+
+do_install() {
+	vbin fasm.out fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-10-10 19:59 ` voidlinux-github
@ 2019-10-10 19:59 ` voidlinux-github
  2019-10-20 21:01 ` voidlinux-github
  2019-11-09 21:17 ` [PR PATCH] [Merged]: " voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-10-10 19:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1255 bytes --]

From cfcd56a32476ad3d2ccf1c03461864ea9abbf404 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..70dd0336f32
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686* x86_64*"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_TARGET_MACHINE} in
+	i686*)
+		_fasm=./fasm
+		_source='source/Linux/fasm.asm'
+		;;
+	x86_64*)
+		_fasm=./fasm.x64
+		_source='source/Linux/x64/fasm.asm'
+		;;
+esac
+
+do_build() {
+	${_fasm} ${_source} fasm.out
+}
+
+do_install() {
+	vbin fasm.out fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Updated] New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-09-29  6:03 ` voidlinux-github
@ 2019-10-10 19:59 ` voidlinux-github
  2019-10-10 19:59 ` voidlinux-github
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-10-10 19:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 316 bytes --]

There is an updated pull request by KAction against master on the void-packages repository

https://github.com/KAction/void-packages fasm
https://github.com/void-linux/void-packages/pull/14807

New package: fasm-1.73.16
None

A patch file from https://github.com/void-linux/void-packages/pull/14807.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-fasm-14807.patch --]
[-- Type: text/x-diff, Size: 1255 bytes --]

From cfcd56a32476ad3d2ccf1c03461864ea9abbf404 Mon Sep 17 00:00:00 2001
From: Dmitry Bogatov <KAction@debian.org>
Date: Sun, 29 Sep 2019 00:33:47 +0000
Subject: [PATCH] New package: fasm-1.73.16

---
 srcpkgs/fasm/template | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/fasm/template

diff --git a/srcpkgs/fasm/template b/srcpkgs/fasm/template
new file mode 100644
index 00000000000..70dd0336f32
--- /dev/null
+++ b/srcpkgs/fasm/template
@@ -0,0 +1,34 @@
+# Template file for 'fasm'
+pkgname=fasm
+version=1.73.16
+revision=1
+archs="i686* x86_64*"
+wrksrc=fasm
+short_desc="Fast assembler for the x86 and x86-64 architectures"
+maintainer="Dmitry Bogatov <KAction@disroot.org>"
+license="BSD-2-Clause"
+homepage="https://flatassembler.net"
+distfiles="https://flatassembler.net/fasm-${version}.tgz"
+checksum=f3d87ab5347c315c48644df989a666390c3e4fb0d40daedd19dea242f8a958c9
+nostrip=yes
+
+case ${XBPS_TARGET_MACHINE} in
+	i686*)
+		_fasm=./fasm
+		_source='source/Linux/fasm.asm'
+		;;
+	x86_64*)
+		_fasm=./fasm.x64
+		_source='source/Linux/x64/fasm.asm'
+		;;
+esac
+
+do_build() {
+	${_fasm} ${_source} fasm.out
+}
+
+do_install() {
+	vbin fasm.out fasm
+	vdoc fasm.txt
+	vlicense license.txt
+}

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-10-10 19:59 ` voidlinux-github
@ 2019-10-20 21:01 ` voidlinux-github
  2019-11-09 21:17 ` [PR PATCH] [Merged]: " voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-10-20 21:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

New comment by KAction on void-packages repository

https://github.com/void-linux/void-packages/pull/14807#issuecomment-544292226

Comment:
What now?

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PR PATCH] [Merged]: New package: fasm-1.73.16
  2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-10-20 21:01 ` voidlinux-github
@ 2019-11-09 21:17 ` voidlinux-github
  9 siblings, 0 replies; 11+ messages in thread
From: voidlinux-github @ 2019-11-09 21:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 163 bytes --]

There's a merged pull request on the void-packages repository

New package: fasm-1.73.16
https://github.com/void-linux/void-packages/pull/14807

Description:
None

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-11-09 21:17 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-29  4:46 [PR PATCH] New package: fasm-1.73.16 voidlinux-github
2019-09-29  5:31 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-29  5:31 ` voidlinux-github
2019-09-29  5:56 ` voidlinux-github
2019-09-29  5:56 ` voidlinux-github
2019-09-29  6:03 ` voidlinux-github
2019-09-29  6:03 ` voidlinux-github
2019-10-10 19:59 ` voidlinux-github
2019-10-10 19:59 ` voidlinux-github
2019-10-20 21:01 ` voidlinux-github
2019-11-09 21:17 ` [PR PATCH] [Merged]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).