public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2016-05-21 17:51 Pacho Ramos
  0 siblings, 0 replies; 20+ messages in thread
From: Pacho Ramos @ 2016-05-21 17:51 UTC (permalink / raw
  To: gentoo-commits

commit:     a081de3c97baf60f021a736a1fbcdd580effd2ce
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 15:57:07 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat May 21 17:51:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a081de3c

app-misc/astrolog: Cleanup due to #343769

Package-Manager: portage-2.3.0_rc1

 app-misc/astrolog/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/app-misc/astrolog/metadata.xml b/app-misc/astrolog/metadata.xml
index b38baf5..097975e 100644
--- a/app-misc/astrolog/metadata.xml
+++ b/app-misc/astrolog/metadata.xml
@@ -1,8 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>george@gentoo.org</email>
-    <name>George Shapovalov</name>
-  </maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2016-07-07 19:48 Austin English
  0 siblings, 0 replies; 20+ messages in thread
From: Austin English @ 2016-07-07 19:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e707745e42172a9d5741eb10c52fbe069e5e6ac1
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  7 19:02:23 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Jul  7 19:47:00 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e707745e

app-misc/astrolog: bump to EAPI 6, add maintainer-needed

Package-Manager: portage-2.2.28

 app-misc/astrolog/astrolog-5.40-r3.ebuild | 71 +++++++++++++++++++++++++++++++
 app-misc/astrolog/metadata.xml            |  1 +
 2 files changed, 72 insertions(+)

diff --git a/app-misc/astrolog/astrolog-5.40-r3.ebuild b/app-misc/astrolog/astrolog-5.40-r3.ebuild
new file mode 100644
index 0000000..8de1e93
--- /dev/null
+++ b/app-misc/astrolog/astrolog-5.40-r3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A many featured astrology chart calculation program"
+HOMEPAGE="http://www.astrolog.org/astrolog.htm"
+SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
+
+LICENSE="astrolog"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="X"
+
+DEPEND="X? ( x11-libs/libX11 )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"
+
+src_unpack() {
+	sh "${DISTDIR}"/ast54unx.shr || die
+}
+
+src_prepare() {
+	default
+
+	# remove stripping of created binary, dump hardcoded CFLAGS,
+	# respect CC (bug #243606), and CFLAGS (bug #240057)
+	sed \
+		-e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
+		-e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
+		-i Makefile || die
+
+	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
+	sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
+
+	# if we use X, we need to add -L/usr/X11R6/lib to compile succesful
+	#use X && sed -i -e "s:-lm -lX11:-lm -lX11 -L/usr/X11R6/lib:g" Makefile
+
+	# if we do NOT use X, we disable it by removing the -lX11 from the Makefile
+	# and remove the "#define X11" and "#define MOUSE" from astrolog.h
+	use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile || die
+		   sed -i -e "s:#define X11:/*#define X11:g" astrolog.h || die
+		   sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h || die)
+
+	# any user may have an own astrolog configfile
+	#sed -i -e "s:astrolog.dat:astrolog.dat:g" astrolog.h || die
+}
+
+src_compile() {
+	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+	dobin astrolog
+	dodoc Helpfile.540 README.1ST README.540 Update.540
+	insinto /usr/share/astrolog
+	doins astrolog.dat
+}
+
+pkg_postinst() {
+	elog "There is a sample config file /usr/share/astrolog/astrolog.dat"
+	elog "astrolog looks in current dir for a file astrolog.dat before"
+	elog "using the file in /usr/share/astrolog"
+	elog "If you want extended accuracy of astrolog's calculations you"
+	elog "can emerge the optional package \"astrolog-ephemeris\" which"
+	elog "needs ~4.7 MB additional diskspace for the ephemeris-files"
+}

diff --git a/app-misc/astrolog/metadata.xml b/app-misc/astrolog/metadata.xml
index 097975e..6f49eba 100644
--- a/app-misc/astrolog/metadata.xml
+++ b/app-misc/astrolog/metadata.xml
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
+<!-- maintainer-needed -->
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2018-02-22 22:46 Andreas Sturmlechner
  0 siblings, 0 replies; 20+ messages in thread
From: Andreas Sturmlechner @ 2018-02-22 22:46 UTC (permalink / raw
  To: gentoo-commits

commit:     383103d02e7e758584f5c76fce362027f579bf27
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 22 22:41:27 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 22:46:09 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=383103d0

app-misc/astrolog: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-misc/astrolog/astrolog-5.40-r1.ebuild | 68 -------------------------------
 1 file changed, 68 deletions(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r1.ebuild b/app-misc/astrolog/astrolog-5.40-r1.ebuild
deleted file mode 100644
index 6fe1978c637..00000000000
--- a/app-misc/astrolog/astrolog-5.40-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="A many featured astrology chart calculation program"
-HOMEPAGE="http://www.astrolog.org/astrolog.htm"
-SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
-
-LICENSE="astrolog"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_unpack() {
-	sh "${DISTDIR}"/ast54unx.shr || die
-}
-
-src_prepare() {
-	# remove stripping of created binary, dump hardcoded CFLAGS,
-	# respect CC (bug #243606), and CFLAGS (bug #240057)
-	sed \
-		-e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
-		-e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
-		-i Makefile || die
-
-	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
-	sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
-
-	# if we use X, we need to add -L/usr/X11R6/lib to compile succesful
-	#use X && sed -i -e "s:-lm -lX11:-lm -lX11 -L/usr/X11R6/lib:g" Makefile
-
-	# if we do NOT use X, we disable it by removing the -lX11 from the Makefile
-	# and remove the "#define X11" and "#define MOUSE" from astrolog.h
-	use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile
-		   sed -i -e "s:#define X11:/*#define X11:g" astrolog.h
-		   sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h )
-
-	# any user may have an own astrolog configfile
-	#sed -i -e "s:astrolog.dat:astrolog.dat:g" astrolog.h
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-	dobin astrolog
-	dodoc Helpfile.540 README.1ST README.540 Update.540
-	insinto /usr/share/astrolog
-	doins astrolog.dat
-}
-
-pkg_postinst() {
-	ewarn "There is a sample config file /usr/share/astrolog/astrolog.dat"
-	ewarn "astrolog looks in current dir for a file astrolog.dat before"
-	ewarn "using the file in /usr/share/astrolog"
-	ewarn "If you want extended accuracy of astrolog's calculations you"
-	ewarn "can emerge the optional package \"astrolog-ephemeris\" which"
-	ewarn "needs ~4.7 MB additional diskspace for the ephemeris-files"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2018-02-24  8:07 Jason Zaman
  0 siblings, 0 replies; 20+ messages in thread
From: Jason Zaman @ 2018-02-24  8:07 UTC (permalink / raw
  To: gentoo-commits

commit:     e75487dbf2de8b97ce01b6efc727def8ad0cd1c7
Author:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 24 07:57:26 2018 +0000
Commit:     Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 08:06:34 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e75487db

app-misc/astrolog: amd64 stable

Gentoo-bug: 648482
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-misc/astrolog/astrolog-5.40-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r3.ebuild b/app-misc/astrolog/astrolog-5.40-r3.ebuild
index d75e3644501..0f14039203e 100644
--- a/app-misc/astrolog/astrolog-5.40-r3.ebuild
+++ b/app-misc/astrolog/astrolog-5.40-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2018-04-07 20:22 Sergei Trofimovich
  0 siblings, 0 replies; 20+ messages in thread
From: Sergei Trofimovich @ 2018-04-07 20:22 UTC (permalink / raw
  To: gentoo-commits

commit:     2af183aaa29cedd722cd70802381b34fb6e5b6a5
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  7 20:22:10 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Sat Apr  7 20:22:10 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af183aa

app-misc/astrolog: stable 5.40-r3 for ppc64, bug #648482

Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc64"

 app-misc/astrolog/astrolog-5.40-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r3.ebuild b/app-misc/astrolog/astrolog-5.40-r3.ebuild
index f32d6379968..d742e39d831 100644
--- a/app-misc/astrolog/astrolog-5.40-r3.ebuild
+++ b/app-misc/astrolog/astrolog-5.40-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2018-05-17 21:18 Sergei Trofimovich
  0 siblings, 0 replies; 20+ messages in thread
From: Sergei Trofimovich @ 2018-05-17 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     eb958ceeeeda909888083273125e1098d9085fd8
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Thu May 17 21:11:41 2018 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Thu May 17 21:18:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb958cee

app-misc/astrolog: stable 5.40-r3 for ppc, bug #648482

Tested-by: ernsteiswuerfel
Bug: https://bugs.gentoo.org/648482
Package-Manager: Portage-2.3.37, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc"

 app-misc/astrolog/astrolog-5.40-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r3.ebuild b/app-misc/astrolog/astrolog-5.40-r3.ebuild
index d742e39d831..04fdcd95eae 100644
--- a/app-misc/astrolog/astrolog-5.40-r3.ebuild
+++ b/app-misc/astrolog/astrolog-5.40-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2018-05-20  0:33 Aaron Bauman
  0 siblings, 0 replies; 20+ messages in thread
From: Aaron Bauman @ 2018-05-20  0:33 UTC (permalink / raw
  To: gentoo-commits

commit:     708471029574348294733f713aca3ccae4781b1a
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat May 19 06:55:50 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 20 00:31:17 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70847102

app-misc/astrolog: remove old

 app-misc/astrolog/astrolog-5.40-r2.ebuild | 68 -------------------------------
 1 file changed, 68 deletions(-)

diff --git a/app-misc/astrolog/astrolog-5.40-r2.ebuild b/app-misc/astrolog/astrolog-5.40-r2.ebuild
deleted file mode 100644
index 99247e390a4..00000000000
--- a/app-misc/astrolog/astrolog-5.40-r2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="A many featured astrology chart calculation program"
-HOMEPAGE="http://www.astrolog.org/astrolog.htm"
-SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
-
-LICENSE="astrolog"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_unpack() {
-	sh "${DISTDIR}"/ast54unx.shr || die
-}
-
-src_prepare() {
-	# remove stripping of created binary, dump hardcoded CFLAGS,
-	# respect CC (bug #243606), and CFLAGS (bug #240057)
-	sed \
-		-e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
-		-e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
-		-i Makefile || die
-
-	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
-	sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
-
-	# if we use X, we need to add -L/usr/X11R6/lib to compile succesful
-	#use X && sed -i -e "s:-lm -lX11:-lm -lX11 -L/usr/X11R6/lib:g" Makefile
-
-	# if we do NOT use X, we disable it by removing the -lX11 from the Makefile
-	# and remove the "#define X11" and "#define MOUSE" from astrolog.h
-	use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile
-		   sed -i -e "s:#define X11:/*#define X11:g" astrolog.h
-		   sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h )
-
-	# any user may have an own astrolog configfile
-	#sed -i -e "s:astrolog.dat:astrolog.dat:g" astrolog.h
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-	dobin astrolog
-	dodoc Helpfile.540 README.1ST README.540 Update.540
-	insinto /usr/share/astrolog
-	doins astrolog.dat
-}
-
-pkg_postinst() {
-	ewarn "There is a sample config file /usr/share/astrolog/astrolog.dat"
-	ewarn "astrolog looks in current dir for a file astrolog.dat before"
-	ewarn "using the file in /usr/share/astrolog"
-	ewarn "If you want extended accuracy of astrolog's calculations you"
-	ewarn "can emerge the optional package \"astrolog-ephemeris\" which"
-	ewarn "needs ~4.7 MB additional diskspace for the ephemeris-files"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-15  9:09 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-07-15  9:09 UTC (permalink / raw
  To: gentoo-commits

commit:     023ec08b66ece7bee435e62aea7d0575daabd9a0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 09:08:56 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 09:08:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023ec08b

app-misc/astrolog: add bump w/ note for app-misc/astrolog-ephemeris

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
index ede487c65b7d..f5e97c12f5b7 100644
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ b/app-misc/astrolog/astrolog-7.40.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+# Please bump with app-misc/astrolog-ephemeris
+
 inherit toolchain-funcs
 
 DESCRIPTION="A many featured astrology chart calculation program"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-15 10:13 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2022-07-15 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     1b0d2e08a02dfec5eca28a12387006e4ece2f618
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 10:12:51 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 10:12:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b0d2e08

app-misc/astrolog: Stabilize 7.40 x86, #858173

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
index f5e97c12f5b7..47167c192ac3 100644
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ b/app-misc/astrolog/astrolog-7.40.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-15 11:08 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2022-07-15 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     f39b8056443737224ce7fae8d5ba7d2373a302ea
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 11:08:35 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 11:08:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f39b8056

app-misc/astrolog: Stabilize 7.40 ppc64, #858173

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
index 47167c192ac3..8dc440743c77 100644
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ b/app-misc/astrolog/astrolog-7.40.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="~amd64 ~ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-15 12:14 Sam James
  0 siblings, 0 replies; 20+ messages in thread
From: Sam James @ 2022-07-15 12:14 UTC (permalink / raw
  To: gentoo-commits

commit:     e482cbf84afcf1c8ec6047e9156f95887ecc8e8c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 15 12:13:56 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 15 12:14:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e482cbf8

app-misc/astrolog: Stabilize 7.40 amd64, #858173

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
index 8dc440743c77..a2002c1a0e0a 100644
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ b/app-misc/astrolog/astrolog-7.40.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-16  8:57 Agostino Sarubbo
  0 siblings, 0 replies; 20+ messages in thread
From: Agostino Sarubbo @ 2022-07-16  8:57 UTC (permalink / raw
  To: gentoo-commits

commit:     06a7fc014bc38f41460103b828b3e7059bfb667f
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 08:57:21 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 08:57:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a7fc01

app-misc/astrolog: ppc stable wrt bug #858173

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
index a2002c1a0e0a..ab421e0eb9aa 100644
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ b/app-misc/astrolog/astrolog-7.40.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2022-07-31 12:32 David Seifert
  0 siblings, 0 replies; 20+ messages in thread
From: David Seifert @ 2022-07-31 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     a0a96480c0b5d6a4df99fb4638a2b3ce7ee6c29f
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 31 12:31:56 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jul 31 12:31:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a96480

app-misc/astrolog: drop 5.40-r3

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-misc/astrolog/Manifest                |  1 -
 app-misc/astrolog/astrolog-5.40-r3.ebuild | 70 -------------------------------
 2 files changed, 71 deletions(-)

diff --git a/app-misc/astrolog/Manifest b/app-misc/astrolog/Manifest
index 38a8d0dafb89..905de738fda6 100644
--- a/app-misc/astrolog/Manifest
+++ b/app-misc/astrolog/Manifest
@@ -1,2 +1 @@
-DIST ast54unx.shr 1465432 BLAKE2B 9eec58fb66110a7fd072eee8b02dda109a22c1a1d59506943011041ab595e33eac39f5372ab55f587bcdfb447e599b16b8a9f0ccd04c54257b0dd38a85acde08 SHA512 824fcea1891dafc77692e84a36cc97a8afd90ad93d772edab8437e89869cdc912002f628fd86eecc8182ba4f1ad02cb98f42a30fde425bf94cf59f852b4eda1a
 DIST ast74src.zip 4483648 BLAKE2B d15d3e5d98337c5c5884973d079cffda9144a5c9f43ab48dd38f782eeef089d9fd5fb3f5a01f1d607bd2134e6a774494d4cf7d99e117d3092c8787626436e778 SHA512 540bda7ee10cde0723f6bd4afe410e4e9c59168e31dbdbd0b3b62a9e77ae83a971543fc812876258e2b7b9636f880c74b9be5497c54e7dd0e9b444bad2edbf6b

diff --git a/app-misc/astrolog/astrolog-5.40-r3.ebuild b/app-misc/astrolog/astrolog-5.40-r3.ebuild
deleted file mode 100644
index 04fdcd95eae3..000000000000
--- a/app-misc/astrolog/astrolog-5.40-r3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A many featured astrology chart calculation program"
-HOMEPAGE="http://www.astrolog.org/astrolog.htm"
-SRC_URI="http://www.astrolog.org/ftp/ast54unx.shr"
-
-LICENSE="astrolog"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_unpack() {
-	sh "${DISTDIR}"/ast54unx.shr || die
-}
-
-src_prepare() {
-	default
-
-	# remove stripping of created binary, dump hardcoded CFLAGS,
-	# respect CC (bug #243606), and CFLAGS (bug #240057)
-	sed \
-		-e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
-		-e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
-		-i Makefile || die
-
-	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
-	sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
-
-	# if we use X, we need to add -L/usr/X11R6/lib to compile succesful
-	#use X && sed -i -e "s:-lm -lX11:-lm -lX11 -L/usr/X11R6/lib:g" Makefile
-
-	# if we do NOT use X, we disable it by removing the -lX11 from the Makefile
-	# and remove the "#define X11" and "#define MOUSE" from astrolog.h
-	use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile || die
-		   sed -i -e "s:#define X11:/*#define X11:g" astrolog.h || die
-		   sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h || die)
-
-	# any user may have an own astrolog configfile
-	#sed -i -e "s:astrolog.dat:astrolog.dat:g" astrolog.h || die
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-	dobin astrolog
-	dodoc Helpfile.540 README.1ST README.540 Update.540
-	insinto /usr/share/astrolog
-	doins astrolog.dat
-}
-
-pkg_postinst() {
-	elog "There is a sample config file /usr/share/astrolog/astrolog.dat"
-	elog "astrolog looks in current dir for a file astrolog.dat before"
-	elog "using the file in /usr/share/astrolog"
-	elog "If you want extended accuracy of astrolog's calculations you"
-	elog "can emerge the optional package \"astrolog-ephemeris\" which"
-	elog "needs ~4.7 MB additional diskspace for the ephemeris-files"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2023-09-22  9:15 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-09-22  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     ff3c3c929640ea5ab5f9c5045d8ac0335c1a48ea
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 09:14:46 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 09:14:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3c3c92

app-misc/astrolog: Stabilize 7.60 ppc64, #914519

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.60.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.60.ebuild b/app-misc/astrolog/astrolog-7.60.ebuild
index 18d1dc655924..1332cc1835fe 100644
--- a/app-misc/astrolog/astrolog-7.60.ebuild
+++ b/app-misc/astrolog/astrolog-7.60.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ppc64 ~x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2023-09-22  9:15 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-09-22  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     3ac47bcf976653ddee3106236a1ed99b364e39d9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 09:14:46 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 09:14:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac47bcf

app-misc/astrolog: Stabilize 7.60 amd64, #914519

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.60.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.60.ebuild b/app-misc/astrolog/astrolog-7.60.ebuild
index 1332cc1835fe..37d51b7e4d87 100644
--- a/app-misc/astrolog/astrolog-7.60.ebuild
+++ b/app-misc/astrolog/astrolog-7.60.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ppc64 ~x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2023-09-22  9:47 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-09-22  9:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e47ec15cb697c7c0e65ca6eea91365a53af6e3d2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 22 09:47:32 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 22 09:47:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e47ec15c

app-misc/astrolog: Stabilize 7.60 x86, #914519

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.60.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.60.ebuild b/app-misc/astrolog/astrolog-7.60.ebuild
index 37d51b7e4d87..3c6c1f588ede 100644
--- a/app-misc/astrolog/astrolog-7.60.ebuild
+++ b/app-misc/astrolog/astrolog-7.60.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2023-11-29 14:09 Arthur Zamarin
  0 siblings, 0 replies; 20+ messages in thread
From: Arthur Zamarin @ 2023-11-29 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     023d5d260ec17dafbdb7a8d6a6d1b99bf99f0446
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 14:08:59 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 14:08:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023d5d26

app-misc/astrolog: Stabilize 7.60 ppc, #914519

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.60.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/astrolog/astrolog-7.60.ebuild b/app-misc/astrolog/astrolog-7.60.ebuild
index 3c6c1f588ede..4390bd12d028 100644
--- a/app-misc/astrolog/astrolog-7.60.ebuild
+++ b/app-misc/astrolog/astrolog-7.60.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
 
 LICENSE="astrolog"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="X"
 
 DEPEND="X? ( x11-libs/libX11 )"


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2024-09-03 16:56 Petr Vaněk
  0 siblings, 0 replies; 20+ messages in thread
From: Petr Vaněk @ 2024-09-03 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     d0b506c69087eaef36b974888690a46a431f6c7e
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  3 11:20:28 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep  3 16:43:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0b506c6

app-misc/astrolog: add github upstream metadata

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 app-misc/astrolog/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-misc/astrolog/metadata.xml b/app-misc/astrolog/metadata.xml
index 85e4ed814fa2..41cdaf139913 100644
--- a/app-misc/astrolog/metadata.xml
+++ b/app-misc/astrolog/metadata.xml
@@ -1,5 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
+	<!-- maintainer-needed -->
+	<upstream>
+		<remote-id type="github">CruiserOne/Astrolog</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2024-09-03 16:56 Petr Vaněk
  0 siblings, 0 replies; 20+ messages in thread
From: Petr Vaněk @ 2024-09-03 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     dfd403340b7cb80b17e13d9167aded61e491859e
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  3 11:20:48 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep  3 16:43:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd40334

app-misc/astrolog: drop 7.40

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 app-misc/astrolog/astrolog-7.40.ebuild | 63 ----------------------------------
 1 file changed, 63 deletions(-)

diff --git a/app-misc/astrolog/astrolog-7.40.ebuild b/app-misc/astrolog/astrolog-7.40.ebuild
deleted file mode 100644
index ab421e0eb9aa..000000000000
--- a/app-misc/astrolog/astrolog-7.40.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Please bump with app-misc/astrolog-ephemeris
-
-inherit toolchain-funcs
-
-DESCRIPTION="A many featured astrology chart calculation program"
-HOMEPAGE="https://www.astrolog.org/astrolog.htm"
-SRC_URI="https://www.astrolog.org/ftp/ast74src.zip"
-
-LICENSE="astrolog"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-BDEPEND="app-arch/unzip"
-
-S="${WORKDIR}"
-
-src_prepare() {
-	default
-
-	# remove stripping of created binary, dump hardcoded CFLAGS,
-	# respect CC (bug #243606), and CFLAGS (bug #240057)
-	sed \
-		-e 's:strip:#strip:' -e 's:^CFLAGS = :#CFLAGS = :' \
-		-e 's:\tcc :\t$(CC) $(CFLAGS) $(LDFLAGS) :' \
-		-i Makefile || die
-
-	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
-	sed -i -e "s:~/astrolog:/usr/share/astrolog:g" astrolog.h || die
-
-	# if we do NOT use X, we disable it by removing the -lX11 from the Makefile
-	# and remove the "#define X11" and "#define MOUSE" from astrolog.h
-	use X || ( sed -i -e "s:-lm -lX11:-lm:g" Makefile || die
-		   sed -i -e "s:#define X11:/*#define X11:g" astrolog.h || die
-		   sed -i -e "s:#define MOUSE:/*#define MOUSE:g" astrolog.h || die)
-}
-
-src_compile() {
-	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-	dobin astrolog
-	dodoc astrolog.doc changes.doc
-	insinto /usr/share/astrolog
-	doins astrolog.as
-}
-
-pkg_postinst() {
-	elog "There is a sample config file /usr/share/astrolog/astrolog.as"
-	elog "astrolog looks in current dir for a file astrolog.as before"
-	elog "using the file in /usr/share/astrolog"
-	elog "If you want extended accuracy of astrolog's calculations you"
-	elog "can emerge the optional package \"astrolog-ephemeris\" which"
-	elog "needs ~32.9 MB additional diskspace for the ephemeris-files"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/
@ 2024-09-03 16:56 Petr Vaněk
  0 siblings, 0 replies; 20+ messages in thread
From: Petr Vaněk @ 2024-09-03 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     74c54cb29778f389f8857f54685381a4ef245814
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  3 11:17:55 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Sep  3 16:43:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c54cb2

app-misc/astrolog: add 7.70

- use MY_PV in SRC_URI
- update LICENSE
- respect user optimization CFLAGS and do not pre-strip binaries;
  src_prepare and src_compile phases were reworked due to that
- print postinst message only on the first install

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 app-misc/astrolog/Manifest             |  1 +
 app-misc/astrolog/astrolog-7.70.ebuild | 75 ++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

diff --git a/app-misc/astrolog/Manifest b/app-misc/astrolog/Manifest
index 905de738fda6..b4883f98e9a9 100644
--- a/app-misc/astrolog/Manifest
+++ b/app-misc/astrolog/Manifest
@@ -1 +1,2 @@
 DIST ast74src.zip 4483648 BLAKE2B d15d3e5d98337c5c5884973d079cffda9144a5c9f43ab48dd38f782eeef089d9fd5fb3f5a01f1d607bd2134e6a774494d4cf7d99e117d3092c8787626436e778 SHA512 540bda7ee10cde0723f6bd4afe410e4e9c59168e31dbdbd0b3b62a9e77ae83a971543fc812876258e2b7b9636f880c74b9be5497c54e7dd0e9b444bad2edbf6b
+DIST ast77src.zip 4706533 BLAKE2B ea5ae3805ea43d61f5ff27f199bd36e7263800e441b1aa31044c814b08f6ae2be8969d752a16262ec944dbaae0e0bc2ab3413ee14edbe2366f332a56452bc4d1 SHA512 f5ad29cc023e4bd6a36ddc8434f422fcfe4dbd0b3ebebb85bf6e2d12de58cf60e8304c8a5cea6cb385de346dc1441752542774ee1e7319de9af2166289fd1291

diff --git a/app-misc/astrolog/astrolog-7.70.ebuild b/app-misc/astrolog/astrolog-7.70.ebuild
new file mode 100644
index 000000000000..84ef17f76a89
--- /dev/null
+++ b/app-misc/astrolog/astrolog-7.70.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Please also check if app-misc/astrolog-ephemeris archive needs update
+
+inherit toolchain-funcs
+
+MY_PV=$(ver_rs 1 '')
+
+DESCRIPTION="A many featured astrology chart calculation program"
+HOMEPAGE="
+	https://www.astrolog.org/astrolog.htm
+	https://github.com/CruiserOne/Astrolog
+"
+SRC_URI="https://www.astrolog.org/ftp/ast${MY_PV:0:2}src.zip"
+
+S="${WORKDIR}"
+
+LICENSE="AGPL-3 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="X"
+
+DEPEND="X? ( x11-libs/libX11 )"
+RDEPEND="${DEPEND}"
+BDEPEND="app-arch/unzip"
+
+src_prepare() {
+	default
+
+	# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
+	local cfgargs=( -e "s:~/astrolog:/usr/share/astrolog:g" )
+	# if we do NOT use X, we comment the "#define X11" in astrolog.h
+	use X || cfgargs+=( -e "s:#define X11://&:g" )
+
+	sed -i "${cfgargs[@]}" astrolog.h || die
+
+	local makeargs=(
+		# respect CXX (bug #243606), and LDFLAGS
+		-e 's:\tcc :\t$(CXX) $(LDFLAGS) :'
+		# respect -O flags
+		-e '/^CPPFLAGS/s:-O ::'
+	)
+	sed -i "${makeargs[@]}" Makefile || die
+}
+
+src_compile() {
+	local libs=( -lm -ldl )
+	# we need to link with -lX11 if the X use is set
+	use X && libs+=( -lX11 )
+
+	# Makefile contains stripping flag in LIBS. It is easier to overload it
+	# here because we need to control LIBS content with X use anyway.
+	emake LIBS="${libs[*]}"
+}
+
+src_install() {
+	dobin astrolog
+	dodoc astrolog.doc changes.doc
+	insinto /usr/share/astrolog
+	doins astrolog.as
+}
+
+pkg_postinst() {
+	if [[ -z "${REPLACING_VERSIONS}" ]]; then
+		elog "There is a sample config file /usr/share/astrolog/astrolog.as"
+		elog "astrolog looks in current dir for a file astrolog.as before"
+		elog "using the file in /usr/share/astrolog"
+		elog "If you want extended accuracy of astrolog's calculations you"
+		elog "can emerge the optional package \"astrolog-ephemeris\" which"
+		elog "needs ~32.9 MB additional diskspace for the ephemeris-files"
+	fi
+}


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

end of thread, other threads:[~2024-09-03 16:56 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-24  8:07 [gentoo-commits] repo/gentoo:master commit in: app-misc/astrolog/ Jason Zaman
  -- strict thread matches above, loose matches on Subject: below --
2024-09-03 16:56 Petr Vaněk
2024-09-03 16:56 Petr Vaněk
2024-09-03 16:56 Petr Vaněk
2023-11-29 14:09 Arthur Zamarin
2023-09-22  9:47 Arthur Zamarin
2023-09-22  9:15 Arthur Zamarin
2023-09-22  9:15 Arthur Zamarin
2022-07-31 12:32 David Seifert
2022-07-16  8:57 Agostino Sarubbo
2022-07-15 12:14 Sam James
2022-07-15 11:08 Arthur Zamarin
2022-07-15 10:13 Arthur Zamarin
2022-07-15  9:09 Sam James
2018-05-20  0:33 Aaron Bauman
2018-05-17 21:18 Sergei Trofimovich
2018-04-07 20:22 Sergei Trofimovich
2018-02-22 22:46 Andreas Sturmlechner
2016-07-07 19:48 Austin English
2016-05-21 17:51 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox