[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 555b97a76dfa6c2732cd2aeef867a42cce83ae7a Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Oct 30 17:50:08 2024 + Commit: Conrad Kostecki gentoo org> CommitDate: Sat Nov 2 12:05:38 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=555b97a7 games-roguelike/adom: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> games-roguelike/adom/adom-3.3.3-r2.ebuild | 33 +++ 1 file changed, 33 insertions(+) diff --git a/games-roguelike/adom/adom-3.3.3-r2.ebuild b/games-roguelike/adom/adom-3.3.3-r2.ebuild new file mode 100644 index ..76a508735df5 --- /dev/null +++ b/games-roguelike/adom/adom-3.3.3-r2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P="${PN}_linux_debian" + +DESCRIPTION="Ancient Domains Of Mystery rogue-like game" +HOMEPAGE="https://www.adom.de/"; +SRC_URI="x86? ( https://www.adom.de/home/download/current/${MY_P}_32_${PV}.tar.gz -> ${P}_x86.tar.gz ) + amd64? ( https://www.adom.de/home/download/current/${MY_P}_64_${PV}.tar.gz -> ${P}_amd64.tar.gz )" +S="${WORKDIR}/adom" + +LICENSE="adom" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" # The executable is pre-stripped + +QA_FLAGS_IGNORED="/opt/bin/adom" +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" + +DOCS=( + "docs/adomfaq.txt" + "docs/credits.txt" + "docs/manual.txt" + "docs/readme1st.txt" +) + +src_install() { + exeinto /opt/bin + doexe adom + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 0a8a159e11de662ce7025960f715d3718eb6bbe7 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Oct 30 17:50:42 2024 + Commit: Conrad Kostecki gentoo org> CommitDate: Sat Nov 2 12:05:39 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8a159e games-roguelike/adom: drop old Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> games-roguelike/adom/Manifest | 1 - games-roguelike/adom/adom-1.1.1-r2.ebuild | 36 --- 2 files changed, 37 deletions(-) diff --git a/games-roguelike/adom/Manifest b/games-roguelike/adom/Manifest index b5902b28014d..3ca74f9ba2d7 100644 --- a/games-roguelike/adom/Manifest +++ b/games-roguelike/adom/Manifest @@ -1,3 +1,2 @@ -DIST adom-111-elf.tar.gz 1001683 BLAKE2B e8f263c88c910cd3df40f1bec34a32853438090d17c7f48dc3d7d2f321b3f0d24adb40bd5ec74479eb23c7b6782967d2f3e7c5e4ee445c5fb75fdbb175d8889d SHA512 7b1d8916f66273b4ab06edd2d77c30e2edce827d346451d83c677af32492c40e5c578a8450ab3cc9be7888a0052a0960306e97db408e8581700c71c1b480b128 DIST adom-3.3.3_amd64.tar.gz 1821896 BLAKE2B 612372db457653530d69f2b5711df451a929c0d4a9289132631ea955eb2ba8aa637be651689638c547d2cb99e5cc854923321aead400896af3acec2d35eb4ede SHA512 7ee52b445417d8050de00cb760f9071dd212b8761beaeab2e95b3d6b711e2c5c1cece43ef03587fce7edacc400121c4d1c690a5b63266d4dbbc27a6abeb3a234 DIST adom-3.3.3_x86.tar.gz 1894237 BLAKE2B 7dc73c162e31fc29cbab11065c8153caf42794d10a41ffb2591397dd295b4d022bcfe70c1452decea926d7f860d07c741d35a0804804c242ccb3057890958c00 SHA512 25e0af09b9585b6e9f68228ba8ef9548ea7d6bfd96f75c9cdfd5faeab8dd4042b4b6e2864de81c23ea5474c49c72feaa64ecd205c850394192b2ef0bd6b906e9 diff --git a/games-roguelike/adom/adom-1.1.1-r2.ebuild b/games-roguelike/adom/adom-1.1.1-r2.ebuild deleted file mode 100644 index b67288efa3fb.. --- a/games-roguelike/adom/adom-1.1.1-r2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edos2unix - -DESCRIPTION="Ancient Domains Of Mystery rogue-like game" -HOMEPAGE="https://www.adom.de/"; -SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; -S="${WORKDIR}"/${PN} - -LICENSE="adom" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -# bug #137340 -RESTRICT="strip" -QA_FLAGS_IGNORED="/opt/bin/adom" - -RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" - -src_install() { - exeinto /opt/bin - doexe adom - - insinto /etc - echo "${EPREFIX}"/var/lib/${PN} > adom_ds.cfg || die - doins adom_ds.cfg - - edos2unix adomfaq.txt - dodoc adomfaq.txt manual.doc readme.1st - - keepdir /var/lib/${PN} - fperms g+w /var/lib/${PN} -}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 83390f66fda29e61069779e4102c3c1c5d4bca79 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Oct 30 17:50:58 2024 + Commit: Conrad Kostecki gentoo org> CommitDate: Sat Nov 2 12:05:39 2024 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83390f66 games-roguelike/adom: drop old Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/39161 Signed-off-by: Conrad Kostecki gentoo.org> games-roguelike/adom/adom-3.3.3-r1.ebuild | 29 - 1 file changed, 29 deletions(-) diff --git a/games-roguelike/adom/adom-3.3.3-r1.ebuild b/games-roguelike/adom/adom-3.3.3-r1.ebuild deleted file mode 100644 index 3104784a259b.. --- a/games-roguelike/adom/adom-3.3.3-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_P="${PN}_linux_debian" - -DESCRIPTION="Ancient Domains Of Mystery rogue-like game" -HOMEPAGE="https://www.adom.de/"; -SRC_URI="x86? ( https://www.adom.de/home/download/current/${MY_P}_32_${PV}.tar.gz -> ${P}_x86.tar.gz ) - amd64? ( https://www.adom.de/home/download/current/${MY_P}_64_${PV}.tar.gz -> ${P}_amd64.tar.gz )" -S="${WORKDIR}"/adom - -LICENSE="adom" -SLOT="0" -KEYWORDS="~amd64 ~x86" -RESTRICT="strip" # The executable is pre-stripped - -QA_FLAGS_IGNORED="/opt/bin/adom" -RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" - -DOCS=( "docs/adomfaq.txt" "docs/credits.txt" "docs/manual.txt" "docs/readme1st.txt" ) - -src_install() { - exeinto /opt/bin - doexe adom - - einstalldocs -}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 809319b821624fbf2638073e1c2efab5738d1dba Author: Sam James gentoo org> AuthorDate: Mon Apr 19 20:18:15 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 19 20:53:57 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=809319b8 games-roguelike/adom: drop 1.1.1-r1 Signed-off-by: Sam James gentoo.org> games-roguelike/adom/adom-1.1.1-r1.ebuild | 32 --- 1 file changed, 32 deletions(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild deleted file mode 100644 index 970d7dfc438..000 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edos2unix - -DESCRIPTION="Ancient Domains Of Mystery rogue-like game" -HOMEPAGE="https://www.adom.de/"; -SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; -S="${WORKDIR}"/${PN} - -LICENSE="adom" -SLOT="0" -KEYWORDS="~amd64 ~x86" -RESTRICT="strip" # bug #137340 - -RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" - -src_install() { - exeinto /opt/bin - doexe adom - - keepdir /var/lib/${PN} - echo /var/lib/${PN} > adom_ds.cfg || die - - insinto /etc - doins adom_ds.cfg - - edos2unix adomfaq.txt - dodoc adomfaq.txt manual.doc readme.1st -}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 59535bfc3463d6b4024b7f7b5fb130becd0963f6 Author: Sam James gentoo org> AuthorDate: Sat Apr 10 12:37:53 2021 + Commit: Sam James gentoo org> CommitDate: Sat Apr 10 12:40:27 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59535bfc games-roguelike/adom: restore ncurses-compat dep, add QA_FLAGS_IGNORED Closes: https://bugs.gentoo.org/780549 Closes: https://bugs.gentoo.org/780546 Signed-off-by: Sam James gentoo.org> games-roguelike/adom/{adom-3.3.3.ebuild => adom-3.3.3-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/games-roguelike/adom/adom-3.3.3.ebuild b/games-roguelike/adom/adom-3.3.3-r1.ebuild similarity index 89% rename from games-roguelike/adom/adom-3.3.3.ebuild rename to games-roguelike/adom/adom-3.3.3-r1.ebuild index 7b977d239f3..3104784a259 100644 --- a/games-roguelike/adom/adom-3.3.3.ebuild +++ b/games-roguelike/adom/adom-3.3.3-r1.ebuild @@ -16,6 +16,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" RESTRICT="strip" # The executable is pre-stripped +QA_FLAGS_IGNORED="/opt/bin/adom" +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" + DOCS=( "docs/adomfaq.txt" "docs/credits.txt" "docs/manual.txt" "docs/readme1st.txt" ) src_install() {
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: d6395f0fdfaa83e86d6765c6879cdc94637d7735 Author: Sam James gentoo org> AuthorDate: Mon Apr 5 17:24:46 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 5 17:45:45 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6395f0f games-roguelike/adom: add missing inherit, fix games.eclass porting Signed-off-by: Sam James gentoo.org> games-roguelike/adom/adom-1.1.1-r1.ebuild | 16 +--- games-roguelike/adom/adom-3.3.3.ebuild| 11 --- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild index 46b385a623a..970d7dfc438 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -1,27 +1,29 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit edos2unix + DESCRIPTION="Ancient Domains Of Mystery rogue-like game" HOMEPAGE="https://www.adom.de/"; SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; +S="${WORKDIR}"/${PN} LICENSE="adom" SLOT="0" KEYWORDS="~amd64 ~x86" -RESTRICT="strip" #bug #137340 +RESTRICT="strip" # bug #137340 RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" -S=${WORKDIR}/${PN} - src_install() { - exeinto "/opt/bin" + exeinto /opt/bin doexe adom - keepdir "/var/games/${PN}" - echo "/var/games/${PN}" > adom_ds.cfg + keepdir /var/lib/${PN} + echo /var/lib/${PN} > adom_ds.cfg || die + insinto /etc doins adom_ds.cfg diff --git a/games-roguelike/adom/adom-3.3.3.ebuild b/games-roguelike/adom/adom-3.3.3.ebuild index b798715acff..7b977d239f3 100644 --- a/games-roguelike/adom/adom-3.3.3.ebuild +++ b/games-roguelike/adom/adom-3.3.3.ebuild @@ -1,28 +1,25 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 MY_P="${PN}_linux_debian" -S="${WORKDIR}/adom" DESCRIPTION="Ancient Domains Of Mystery rogue-like game" HOMEPAGE="https://www.adom.de/"; SRC_URI="x86? ( https://www.adom.de/home/download/current/${MY_P}_32_${PV}.tar.gz -> ${P}_x86.tar.gz ) amd64? ( https://www.adom.de/home/download/current/${MY_P}_64_${PV}.tar.gz -> ${P}_amd64.tar.gz )" +S="${WORKDIR}"/adom LICENSE="adom" SLOT="0" KEYWORDS="~amd64 ~x86" RESTRICT="strip" # The executable is pre-stripped -DOCS=( "docs/adomfaq.txt" - "docs/credits.txt" - "docs/manual.txt" - "docs/readme1st.txt" ) +DOCS=( "docs/adomfaq.txt" "docs/credits.txt" "docs/manual.txt" "docs/readme1st.txt" ) src_install() { - exeinto "/opt/bin" + exeinto /opt/bin doexe adom einstalldocs
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: b5aad980704f969e7012c29115b35853d1476e70 Author: Wolfgang E. Sanyer gmail com> AuthorDate: Mon Mar 8 20:48:26 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 5 17:45:41 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5aad980 games-roguelike/adom: bump to 3.3.3 Signed-off-by: Wolfgang E. Sanyer gmail.com> Signed-off-by: Sam James gentoo.org> games-roguelike/adom/Manifest | 2 ++ games-roguelike/adom/adom-3.3.3.ebuild | 29 + 2 files changed, 31 insertions(+) diff --git a/games-roguelike/adom/Manifest b/games-roguelike/adom/Manifest index 9c426bde6da..b5902b28014 100644 --- a/games-roguelike/adom/Manifest +++ b/games-roguelike/adom/Manifest @@ -1 +1,3 @@ DIST adom-111-elf.tar.gz 1001683 BLAKE2B e8f263c88c910cd3df40f1bec34a32853438090d17c7f48dc3d7d2f321b3f0d24adb40bd5ec74479eb23c7b6782967d2f3e7c5e4ee445c5fb75fdbb175d8889d SHA512 7b1d8916f66273b4ab06edd2d77c30e2edce827d346451d83c677af32492c40e5c578a8450ab3cc9be7888a0052a0960306e97db408e8581700c71c1b480b128 +DIST adom-3.3.3_amd64.tar.gz 1821896 BLAKE2B 612372db457653530d69f2b5711df451a929c0d4a9289132631ea955eb2ba8aa637be651689638c547d2cb99e5cc854923321aead400896af3acec2d35eb4ede SHA512 7ee52b445417d8050de00cb760f9071dd212b8761beaeab2e95b3d6b711e2c5c1cece43ef03587fce7edacc400121c4d1c690a5b63266d4dbbc27a6abeb3a234 +DIST adom-3.3.3_x86.tar.gz 1894237 BLAKE2B 7dc73c162e31fc29cbab11065c8153caf42794d10a41ffb2591397dd295b4d022bcfe70c1452decea926d7f860d07c741d35a0804804c242ccb3057890958c00 SHA512 25e0af09b9585b6e9f68228ba8ef9548ea7d6bfd96f75c9cdfd5faeab8dd4042b4b6e2864de81c23ea5474c49c72feaa64ecd205c850394192b2ef0bd6b906e9 diff --git a/games-roguelike/adom/adom-3.3.3.ebuild b/games-roguelike/adom/adom-3.3.3.ebuild new file mode 100644 index 000..b798715acff --- /dev/null +++ b/games-roguelike/adom/adom-3.3.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="${PN}_linux_debian" +S="${WORKDIR}/adom" + +DESCRIPTION="Ancient Domains Of Mystery rogue-like game" +HOMEPAGE="https://www.adom.de/"; +SRC_URI="x86? ( https://www.adom.de/home/download/current/${MY_P}_32_${PV}.tar.gz -> ${P}_x86.tar.gz ) + amd64? ( https://www.adom.de/home/download/current/${MY_P}_64_${PV}.tar.gz -> ${P}_amd64.tar.gz )" + +LICENSE="adom" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" # The executable is pre-stripped + +DOCS=( "docs/adomfaq.txt" + "docs/credits.txt" + "docs/manual.txt" + "docs/readme1st.txt" ) + +src_install() { + exeinto "/opt/bin" + doexe adom + + einstalldocs +}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 7f46094833b2f839c99bae1c3cbc35940fabbd9c Author: Wolfgang E. Sanyer gmail com> AuthorDate: Mon Mar 8 20:16:52 2021 + Commit: Sam James gentoo org> CommitDate: Mon Apr 5 17:45:43 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f460948 games-roguelike/adom: remove games.eclass, update to EAPI 7 Signed-off-by: Wolfgang E. Sanyer gmail.com> Signed-off-by: Sam James gentoo.org> games-roguelike/adom/adom-1.1.1-r1.ebuild | 30 ++ 1 file changed, 30 insertions(+) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild new file mode 100644 index 000..46b385a623a --- /dev/null +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Ancient Domains Of Mystery rogue-like game" +HOMEPAGE="https://www.adom.de/"; +SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; + +LICENSE="adom" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" #bug #137340 + +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" + +S=${WORKDIR}/${PN} + +src_install() { + exeinto "/opt/bin" + doexe adom + + keepdir "/var/games/${PN}" + echo "/var/games/${PN}" > adom_ds.cfg + insinto /etc + doins adom_ds.cfg + + edos2unix adomfaq.txt + dodoc adomfaq.txt manual.doc readme.1st +}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 9347810a17ebd9f27fe225c9414ce382587e1589 Author: Sam James gentoo org> AuthorDate: Sun Apr 4 05:33:32 2021 + Commit: Sam James gentoo org> CommitDate: Sun Apr 4 06:32:48 2021 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9347810a games-roguelike/adom: port to EAPI 7, games.eclass-- Signed-off-by: Sam James gentoo.org> .../{adom-1.1.1-r1.ebuild => adom-1.1.1-r2.ebuild} | 26 +++--- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r2.ebuild similarity index 57% rename from games-roguelike/adom/adom-1.1.1-r1.ebuild rename to games-roguelike/adom/adom-1.1.1-r2.ebuild index 02e9d5aacfe..b67288efa3f 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r2.ebuild @@ -1,36 +1,36 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils games +EAPI=7 + +inherit edos2unix DESCRIPTION="Ancient Domains Of Mystery rogue-like game" HOMEPAGE="https://www.adom.de/"; SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; +S="${WORKDIR}"/${PN} LICENSE="adom" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RESTRICT="strip" #bug #137340 -QA_FLAGS_IGNORED="${GAMES_PREFIX_OPT:1}/bin/adom" -RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" +# bug #137340 +RESTRICT="strip" +QA_FLAGS_IGNORED="/opt/bin/adom" -S=${WORKDIR}/${PN} +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" src_install() { - exeinto "${GAMES_PREFIX_OPT}/bin" + exeinto /opt/bin doexe adom - keepdir "${GAMES_STATEDIR}/${PN}" - echo "${GAMES_STATEDIR}/${PN}" > adom_ds.cfg insinto /etc + echo "${EPREFIX}"/var/lib/${PN} > adom_ds.cfg || die doins adom_ds.cfg edos2unix adomfaq.txt dodoc adomfaq.txt manual.doc readme.1st - prepgamesdirs - fperms g+w "${GAMES_STATEDIR}/${PN}" + keepdir /var/lib/${PN} + fperms g+w /var/lib/${PN} }
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 07f660b6e5d34e56de219a7147aa40b534dd2e60 Author: Michał Górny gentoo org> AuthorDate: Mon Sep 23 06:10:47 2019 + Commit: Michał Górny gentoo org> CommitDate: Tue Oct 1 19:13:51 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07f660b6 games-roguelike/adom: Update for sys-libs/ncurses-compat Signed-off-by: Michał Górny gentoo.org> games-roguelike/adom/adom-1.1.1-r1.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild index e1d53a9adfc..02e9d5aacfe 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -15,9 +15,7 @@ IUSE="" RESTRICT="strip" #bug #137340 QA_FLAGS_IGNORED="${GAMES_PREFIX_OPT:1}/bin/adom" -RDEPEND="|| ( - >=sys-libs/ncurses-5.9-r3:0/5[abi_x86_32(-)] - >=sys-libs/ncurses-5.9-r3:5/5[abi_x86_32(-)] )" +RDEPEND="sys-libs/ncurses-compat:5[abi_x86_32(-)]" S=${WORKDIR}/${PN}
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 14a60d4f077fa2af5cbff204fb3aebf4d20c1779 Author: Daniel Schmidt tutanota com> AuthorDate: Tue Mar 19 21:29:39 2019 + Commit: James Le Cuirot gentoo org> CommitDate: Tue Mar 19 22:04:02 2019 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14a60d4f games-roguelike/adom: use HTTPS Closes: https://bugs.gentoo.org/680384 Signed-off-by: Daniel Schmidt tutanota.com> Package-Manager: Portage-2.3.62, Repoman-2.3.11 Signed-off-by: James Le Cuirot gentoo.org> games-roguelike/adom/adom-1.1.1-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild index 594a56c07eb..e1d53a9adfc 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 inherit eutils games DESCRIPTION="Ancient Domains Of Mystery rogue-like game" -HOMEPAGE="http://www.adom.de/"; -SRC_URI="http://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; +HOMEPAGE="https://www.adom.de/"; +SRC_URI="https://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz"; LICENSE="adom" SLOT="0"
[gentoo-commits] repo/gentoo:master commit in: games-roguelike/adom/
commit: 794fbbe7ad3a6846abc73e69c25bc0484aac958c Author: Michael Sterrett gentoo org> AuthorDate: Thu Sep 3 18:59:51 2015 + Commit: Michael Sterrett gentoo org> CommitDate: Thu Sep 3 19:00:04 2015 + URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=794fbbe7 make sure we get ncurses5 api (bug #559072) with inline patch from Sergei Trofimovich Package-Manager: portage-2.2.20.1 games-roguelike/adom/adom-1.1.1-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild index af8ecd1..83d5f81 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -16,7 +16,9 @@ IUSE="" RESTRICT="strip" #bug #137340 QA_FLAGS_IGNORED="${GAMES_PREFIX_OPT:1}/bin/adom" -RDEPEND=">=sys-libs/ncurses-5.9-r3[abi_x86_32(-)]" +RDEPEND="|| ( + >=sys-libs/ncurses-5.9-r3:0/5[abi_x86_32(-)] + >=sys-libs/ncurses-5.9-r3:5/5[abi_x86_32(-)] )" S=${WORKDIR}/${PN}