* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2018-06-22 18:49 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2018-06-22 18:49 UTC (permalink / raw
To: gentoo-commits
commit: 826d2f88b40c5c912ea3022cfc3a959a30cd0415
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Fri Jun 22 18:38:31 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 22 18:48:30 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=826d2f88
dev-libs/spsdeclib: updated metadata.xml
Closes: https://github.com/gentoo/gentoo/pull/7613
dev-libs/spsdeclib/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/spsdeclib/metadata.xml b/dev-libs/spsdeclib/metadata.xml
index 7159d99914d..29b8f4c73b6 100644
--- a/dev-libs/spsdeclib/metadata.xml
+++ b/dev-libs/spsdeclib/metadata.xml
@@ -11,6 +11,6 @@
</maintainer>
<longdescription>
The SPS decoder library will load IPF and CT Raw files in the emulator of your choice.
- Kryofluxes <pkg>app-misc/dtc</pkg> also will need this.
+ Kryofluxes <pkg>app-misc/kryoflux-dtc</pkg> also will need this.
</longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2018-08-12 17:18 Michał Górny
0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2018-08-12 17:18 UTC (permalink / raw
To: gentoo-commits
commit: dd1c415b0e07de1c6fd2c2c2fdb89b0f24f95178
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Jul 28 17:46:19 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 12 17:18:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1c415b
dev-libs/spsdeclib: install headers
Install headers for other projects.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild | 53 ++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
new file mode 100644
index 00000000000..db6e46f2659
--- /dev/null
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools eutils
+
+DESCRIPTION="Kryoflux SPS Decoder Library"
+HOMEPAGE="https://www.kryoflux.com/"
+SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="Kryoflux-MAME"
+SLOT="0"
+
+DEPEND="app-arch/unzip"
+
+S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
+
+DOCS=( "${WORKDIR}/DONATIONS.txt" "${WORKDIR}/HISTORY.txt" "${WORKDIR}/RELEASE.txt" )
+
+PATCHES=( "${FILESDIR}"/add_symlink.patch )
+
+src_unpack() {
+ unpack ${A}
+
+ # Unpacked ZIP-file contains two ZIP files, use the one for Linux
+ unpack "${WORKDIR}"/capsimg_source_linux_macosx.zip
+}
+
+src_prepare() {
+ default
+
+ # Respect users CFLAGS and CXXFLAGS
+ sed -i -e 's/-g//' configure.in || die
+ sed -i -e 's/CXXFLAGS="${CFLAGS}/CXXFLAGS="${CXXFLAGS}/' configure.in || die
+
+ # Remove MSVC compiler-specific attribute
+ sed -i -e 's/__cdecl //' ../LibIPF/Caps{Lib,FDC}.h || die
+
+ mv configure.in configure.ac || die
+ eautoconf
+
+ # Fix permissions, as configure is not marked executable
+ chmod +x configure || die
+}
+
+src_install() {
+ default
+
+ insinto /usr/include/caps5
+ doins ../Core/CommonTypes.h ../LibIPF/*.h
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2018-10-29 23:15 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2018-10-29 23:15 UTC (permalink / raw
To: gentoo-commits
commit: 752d2af6035c059198157f7a73fb3fd492227ad5
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sun Oct 28 17:48:11 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 23:14:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=752d2af6
dev-libs/spsdeclib: droped eutils from inherit.
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10278
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
index db6e46f2659..da942dd943d 100644
--- a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI="7"
-inherit autotools eutils
+inherit autotools
DESCRIPTION="Kryoflux SPS Decoder Library"
HOMEPAGE="https://www.kryoflux.com/"
@@ -17,7 +17,7 @@ DEPEND="app-arch/unzip"
S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
-DOCS=( "${WORKDIR}/DONATIONS.txt" "${WORKDIR}/HISTORY.txt" "${WORKDIR}/RELEASE.txt" )
+DOCS=( "${WORKDIR}/{DONATIONS,HISTORY,RELEASE}.txt" )
PATCHES=( "${FILESDIR}"/add_symlink.patch )
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2018-10-29 23:15 Patrice Clement
0 siblings, 0 replies; 8+ messages in thread
From: Patrice Clement @ 2018-10-29 23:15 UTC (permalink / raw
To: gentoo-commits
commit: 56f30c85fd6a18d1762b5b4ca124ac7bbe0c43a2
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sun Oct 28 18:18:36 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Oct 29 23:14:57 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f30c85
dev-libs/spsdeclib: drop old version.
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
dev-libs/spsdeclib/spsdeclib-5.1.ebuild | 43 ---------------------------------
1 file changed, 43 deletions(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1.ebuild
deleted file mode 100644
index 22f948e9148..00000000000
--- a/dev-libs/spsdeclib/spsdeclib-5.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils
-
-DESCRIPTION="Kryoflux SPS Decoder Library"
-HOMEPAGE="https://www.kryoflux.com/"
-SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip"
-
-KEYWORDS="-* ~amd64 ~x86"
-LICENSE="Kryoflux-MAME"
-SLOT="0"
-
-DEPEND="app-arch/unzip"
-
-S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
-
-DOCS=( "${WORKDIR}/DONATIONS.txt" "${WORKDIR}/HISTORY.txt" "${WORKDIR}/RELEASE.txt" )
-
-PATCHES=( "${FILESDIR}"/add_symlink.patch )
-
-src_unpack() {
- unpack ${A}
-
- # Unpacked ZIP-file contains two ZIP files, use the one for Linux
- unpack "${WORKDIR}"/capsimg_source_linux_macosx.zip
-}
-
-src_prepare() {
- default
-
- # Respect users CFLAGS and CXXFLAGS
- sed -i -e 's/-g//' configure.in || die
- sed -i -e 's/CXXFLAGS="${CFLAGS}/CXXFLAGS="${CXXFLAGS}/' configure.in || die
-
- mv configure.in configure.ac || die
- eautoconf
-
- # Fix permissions, as configure is not marked executable
- chmod +x configure || die
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2018-10-31 19:00 Andreas Sturmlechner
0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2018-10-31 19:00 UTC (permalink / raw
To: gentoo-commits
commit: c8ce474d4606ca31ccf84b1d7f51c3e49eddb475
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Wed Oct 31 13:43:48 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 31 19:00:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8ce474d
dev-libs/spsdeclib: fix dodoc failed
Closes: https://bugs.gentoo.org/669988
Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10311
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
index da942dd943d..013853297f0 100644
--- a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
@@ -17,7 +17,7 @@ DEPEND="app-arch/unzip"
S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
-DOCS=( "${WORKDIR}/{DONATIONS,HISTORY,RELEASE}.txt" )
+DOCS=( "${WORKDIR}"/{DONATIONS,HISTORY,RELEASE}.txt )
PATCHES=( "${FILESDIR}"/add_symlink.patch )
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2019-04-13 19:10 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2019-04-13 19:10 UTC (permalink / raw
To: gentoo-commits
commit: 9bb303e5c90a6c0e4c65812e51645ba8c1799cce
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 19:08:09 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 19:08:09 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bb303e5
dev-libs/spsdeclib: amd64 stable wrt bug #682728
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
index 013853297f0..344c3f15737 100644
--- a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
@@ -9,7 +9,7 @@ DESCRIPTION="Kryoflux SPS Decoder Library"
HOMEPAGE="https://www.kryoflux.com/"
SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
LICENSE="Kryoflux-MAME"
SLOT="0"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2020-08-09 15:53 Conrad Kostecki
0 siblings, 0 replies; 8+ messages in thread
From: Conrad Kostecki @ 2020-08-09 15:53 UTC (permalink / raw
To: gentoo-commits
commit: e0f2f8247bf3a1e833c60519bc38c195af862396
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 13:26:50 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 15:52:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f2f824
dev-libs/spsdeclib: don't quote EAPI
In order to make all my packages consistent,
don't quote EAPI version number.
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
index 3aab0f92fab..2829d62b2f3 100644
--- a/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
+EAPI=7
inherit autotools
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/
@ 2022-04-24 17:59 Arthur Zamarin
0 siblings, 0 replies; 8+ messages in thread
From: Arthur Zamarin @ 2022-04-24 17:59 UTC (permalink / raw
To: gentoo-commits
commit: ba0a70c28980281ab9b0b80ebb2dc8c184074f29
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 24 17:59:44 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 24 17:59:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba0a70c2
dev-libs/spsdeclib: Keyword 5.1-r2 arm64, #840401
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/spsdeclib/spsdeclib-5.1-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/spsdeclib/spsdeclib-5.1-r2.ebuild b/dev-libs/spsdeclib/spsdeclib-5.1-r2.ebuild
index 866010b95ab7..20ce2239befb 100644
--- a/dev-libs/spsdeclib/spsdeclib-5.1-r2.ebuild
+++ b/dev-libs/spsdeclib/spsdeclib-5.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.kryoflux.com/"
SRC_URI="https://www.kryoflux.com/download/${PN}_${PV}_source.zip"
S="${WORKDIR}/capsimg_source_linux_macosx/CAPSImg"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
LICENSE="Kryoflux-MAME"
SLOT="0"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-04-24 18:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-31 19:00 [gentoo-commits] repo/gentoo:master commit in: dev-libs/spsdeclib/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2022-04-24 17:59 Arthur Zamarin
2020-08-09 15:53 Conrad Kostecki
2019-04-13 19:10 Agostino Sarubbo
2018-10-29 23:15 Patrice Clement
2018-10-29 23:15 Patrice Clement
2018-08-12 17:18 Michał Górny
2018-06-22 18:49 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox