* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2016-10-28 21:03 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2016-10-28 21:03 UTC (permalink / raw
To: gentoo-commits
commit: a1a5953bc856185f940d2c05c69e20269d8408bd
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 21:03:04 2016 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 21:03:04 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a5953b
dev-lang/c-intercal: Version bump.
Package-Manager: portage-2.3.2
dev-lang/c-intercal/Manifest | 1 +
dev-lang/c-intercal/c-intercal-30.0.ebuild | 71 ++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/dev-lang/c-intercal/Manifest b/dev-lang/c-intercal/Manifest
index dbf4bee..f8b7ba0 100644
--- a/dev-lang/c-intercal/Manifest
+++ b/dev-lang/c-intercal/Manifest
@@ -1 +1,2 @@
DIST intercal-0.29.pax.gz 1003800 SHA256 fba1678bdd058350742fad2f3f0673bcea9f4c8add761855a67d8ada6650950b SHA512 0789278b334f65b6e2034493cf08b26a9885e7aec09072c9d9d3d2796b2c6b09f13a856afea1f77f6c6aac0f386b0a76e35ddd9c87584386f3b8a0ad30bddd31 WHIRLPOOL 9039db79d0ecfd17abdd2ba4788d5e812d4fc5db1fab3ba554567ec3d08cd7091408d054903e8a59dbf77fc78f5408dfc1608eaac0b10e1bf76c32b3a92e300d
+DIST intercal-0.30.tar.gz 930759 SHA256 b38b62a61a3cb5b0d3ce9f2d09c97bd74796979d532615073025a7fff6be1715 SHA512 e82f52082a73e0eb6116026f78fdcc38369f54af828b9ed0d3ca6ed6c40550bfa81db4ca7c4d09015b5db5104a1c06229cfed52e1d202c3a7443f933fbcc0498 WHIRLPOOL b76542b81d8322c5791a30573e0b7efdd7793a298970b29f074e49fa061e3a28f38fdbf7732f74a77d940e8167650182d3366f657ed525d079feb0c3d47d7dc2
diff --git a/dev-lang/c-intercal/c-intercal-30.0.ebuild b/dev-lang/c-intercal/c-intercal-30.0.ebuild
new file mode 100644
index 00000000..87a8bea
--- /dev/null
+++ b/dev-lang/c-intercal/c-intercal-30.0.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 elisp-common
+
+# C-INTERCAL uses minor-major ordering of version components and
+# negative version numbers. We map version components -1, -2, ...
+# to 65535, 65534, ..., and subtract one from the next component.
+# For example, upstream version 0.28 is mapped to Gentoo version 28.0
+# and 0.-2.0.29 is mapped to 28.65535.65534.0.
+get_intercal_version() {
+ local i=.${1:-${PV}} j k c=0
+ while [[ ${i} ]]; do
+ (( k = ${i##*.} + c ))
+ (( (c = (k >= 32768)) && (k -= 65536) ))
+ i=${i%.*}
+ j=${j}.${k}
+ done
+ echo ${j#.}
+}
+
+MY_PN="${PN#c-}"
+MY_PV="$(get_intercal_version)"
+DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler"
+HOMEPAGE="http://www.catb.org/~esr/intercal/"
+SRC_URI="http://www.catb.org/~esr/intercal/${MY_PN}-${MY_PV}.tar.gz"
+
+LICENSE="GPL-2+ FDL-1.2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs examples"
+
+DEPEND="emacs? ( virtual/emacs )"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+ emake
+
+ if use emacs; then
+ elisp-compile etc/intercal.el
+ fi
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ dodoc BUGS NEWS HISTORY README doc/THEORY.txt
+
+ if use emacs; then
+ elisp-install ${PN} etc/intercal.{el,elc}
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+ fi
+
+ if use examples; then
+ insinto /usr/share/doc/${PF}
+ doins -r pit
+ fi
+}
+
+pkg_postinst() {
+ use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+ use emacs && elisp-site-regen
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2016-10-28 21:03 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2016-10-28 21:03 UTC (permalink / raw
To: gentoo-commits
commit: c10be05ce34dec82131e28e3b6b6e35bedbcbbf0
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 28 20:30:57 2016 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Oct 28 21:01:29 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10be05c
dev-lang/c-intercal: Specify license more precisely.
Package-Manager: portage-2.3.2
dev-lang/c-intercal/c-intercal-29.0.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-lang/c-intercal/c-intercal-29.0.ebuild b/dev-lang/c-intercal/c-intercal-29.0.ebuild
index f1dbfc2..dfc1909 100644
--- a/dev-lang/c-intercal/c-intercal-29.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-29.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -25,10 +25,10 @@ get_intercal_version() {
MY_PN="${PN#c-}"
MY_PV="$(get_intercal_version)"
DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler"
-HOMEPAGE="http://c.intercal.org.uk"
+HOMEPAGE="http://c.intercal.org.uk/"
SRC_URI="http://overload.intercal.org.uk/c/${MY_PN}-${MY_PV}.pax.gz"
-LICENSE="GPL-2 FDL-1.2"
+LICENSE="GPL-2+ FDL-1.2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="emacs examples"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2017-01-08 17:46 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2017-01-08 17:46 UTC (permalink / raw
To: gentoo-commits
commit: fdb8b9febcdc380c074318bf5b4ce2e41c957b9c
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 8 17:29:52 2017 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 8 17:29:52 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb8b9fe
dev-lang/c-intercal: Remove old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-lang/c-intercal/Manifest | 1 -
dev-lang/c-intercal/c-intercal-29.0.ebuild | 76 ------------------------------
2 files changed, 77 deletions(-)
diff --git a/dev-lang/c-intercal/Manifest b/dev-lang/c-intercal/Manifest
index f8b7ba0..1a3f2ad 100644
--- a/dev-lang/c-intercal/Manifest
+++ b/dev-lang/c-intercal/Manifest
@@ -1,2 +1 @@
-DIST intercal-0.29.pax.gz 1003800 SHA256 fba1678bdd058350742fad2f3f0673bcea9f4c8add761855a67d8ada6650950b SHA512 0789278b334f65b6e2034493cf08b26a9885e7aec09072c9d9d3d2796b2c6b09f13a856afea1f77f6c6aac0f386b0a76e35ddd9c87584386f3b8a0ad30bddd31 WHIRLPOOL 9039db79d0ecfd17abdd2ba4788d5e812d4fc5db1fab3ba554567ec3d08cd7091408d054903e8a59dbf77fc78f5408dfc1608eaac0b10e1bf76c32b3a92e300d
DIST intercal-0.30.tar.gz 930759 SHA256 b38b62a61a3cb5b0d3ce9f2d09c97bd74796979d532615073025a7fff6be1715 SHA512 e82f52082a73e0eb6116026f78fdcc38369f54af828b9ed0d3ca6ed6c40550bfa81db4ca7c4d09015b5db5104a1c06229cfed52e1d202c3a7443f933fbcc0498 WHIRLPOOL b76542b81d8322c5791a30573e0b7efdd7793a298970b29f074e49fa061e3a28f38fdbf7732f74a77d940e8167650182d3366f657ed525d079feb0c3d47d7dc2
diff --git a/dev-lang/c-intercal/c-intercal-29.0.ebuild b/dev-lang/c-intercal/c-intercal-29.0.ebuild
deleted file mode 100644
index dfc1909..00000000
--- a/dev-lang/c-intercal/c-intercal-29.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit elisp-common eutils multilib
-
-# C-INTERCAL uses minor-major ordering of version components and
-# negative version numbers. We map version components -1, -2, ...
-# to 65535, 65534, ..., and subtract one from the next component.
-# For example, upstream version 0.28 is mapped to Gentoo version 28.0
-# and 0.-2.0.29 is mapped to 28.65535.65534.0.
-get_intercal_version() {
- local i=.${1:-${PV}} j k c=0
- while [[ ${i} ]]; do
- (( k = ${i##*.} + c ))
- (( (c = (k >= 32768)) && (k -= 65536) ))
- i=${i%.*}
- j=${j}.${k}
- done
- echo ${j#.}
-}
-
-MY_PN="${PN#c-}"
-MY_PV="$(get_intercal_version)"
-DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler"
-HOMEPAGE="http://c.intercal.org.uk/"
-SRC_URI="http://overload.intercal.org.uk/c/${MY_PN}-${MY_PV}.pax.gz"
-
-LICENSE="GPL-2+ FDL-1.2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs examples"
-
-DEPEND="emacs? ( virtual/emacs )"
-RDEPEND="${DEPEND}"
-
-MY_PV2=${MY_PV%.${MY_PV##*.}}
-S="${WORKDIR}/${MY_PN}-${MY_PV2##*.}.${MY_PV##*.}"
-SITEFILE="50${PN}-gentoo.el"
-
-src_unpack() {
- tar xzf "${DISTDIR}/${A}" || die "tar failed"
-}
-
-src_compile() {
- emake
-
- if use emacs; then
- elisp-compile etc/intercal.el || die
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc BUGS NEWS HISTORY README doc/THEORY.txt
-
- if use emacs; then
- elisp-install ${PN} etc/intercal.{el,elc} || die
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
- fi
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r pit
- fi
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2018-03-10 12:23 Pacho Ramos
0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos @ 2018-03-10 12:23 UTC (permalink / raw
To: gentoo-commits
commit: f24d46a8cd5c21fc72ec4a527fd83278cf2bbbe9
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 10 12:14:36 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Mar 10 12:21:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24d46a8
dev-lang/c-intercal: Update maintainer due to bug #220130
Package-Manager: Portage-2.3.24, Repoman-2.3.6
dev-lang/c-intercal/metadata.xml | 3 ---
1 file changed, 3 deletions(-)
diff --git a/dev-lang/c-intercal/metadata.xml b/dev-lang/c-intercal/metadata.xml
index ca95d6d2a97..3789335be51 100644
--- a/dev-lang/c-intercal/metadata.xml
+++ b/dev-lang/c-intercal/metadata.xml
@@ -4,9 +4,6 @@
<maintainer type="person">
<email>ulm@gentoo.org</email>
</maintainer>
-<maintainer type="person">
- <email>pchrist@gentoo.org</email>
-</maintainer>
<longdescription>
An implementation of the language INTERCAL, legendary for its perversity
and horribleness (this version adds COME FROM for extra flavor). Comes with
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2019-12-07 7:58 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2019-12-07 7:58 UTC (permalink / raw
To: gentoo-commits
commit: aa919d64bc0fcf7f4d71ad243adfaf184bdd73be
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 07:56:32 2019 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 07:56:48 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa919d64
dev-lang/c-intercal: Replace doins by dodoc.
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lang/c-intercal/c-intercal-30.0.ebuild | 7 ++-----
dev-lang/c-intercal/c-intercal-31.0.ebuild | 5 +----
2 files changed, 3 insertions(+), 9 deletions(-)
diff --git a/dev-lang/c-intercal/c-intercal-30.0.ebuild b/dev-lang/c-intercal/c-intercal-30.0.ebuild
index 52876eed005..26692e4f570 100644
--- a/dev-lang/c-intercal/c-intercal-30.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-30.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -64,10 +64,7 @@ src_install() {
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r pit
- fi
+ use examples && dodoc -r pit
}
pkg_postinst() {
diff --git a/dev-lang/c-intercal/c-intercal-31.0.ebuild b/dev-lang/c-intercal/c-intercal-31.0.ebuild
index 53c680992b5..d8304c53a3d 100644
--- a/dev-lang/c-intercal/c-intercal-31.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-31.0.ebuild
@@ -63,10 +63,7 @@ src_install() {
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r pit
- fi
+ use examples && dodoc -r pit
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2020-05-13 17:11 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2020-05-13 17:11 UTC (permalink / raw
To: gentoo-commits
commit: 8246f9809943bf639e34c201273994be63680480
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed May 13 17:09:11 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed May 13 17:11:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8246f980
dev-lang/c-intercal: Work around test failure with gcc 10.
Bug: https://bugs.gentoo.org/722862
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lang/c-intercal/c-intercal-31.0.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/dev-lang/c-intercal/c-intercal-31.0.ebuild b/dev-lang/c-intercal/c-intercal-31.0.ebuild
index 5f04f53c129..bbcc4938fdb 100644
--- a/dev-lang/c-intercal/c-intercal-31.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-31.0.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit autotools elisp-common
+inherit autotools elisp-common flag-o-matic
# C-INTERCAL uses minor-major ordering of version components and
# negative version numbers. We map version components -1, -2, ...
@@ -47,6 +47,11 @@ src_prepare() {
eautoreconf
}
+src_configure() {
+ append-flags -fno-toplevel-reorder #722862
+ econf
+}
+
src_compile() {
emake
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2020-08-14 8:26 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2020-08-14 8:26 UTC (permalink / raw
To: gentoo-commits
commit: fac3f5f9a4b75e6e0b08c24530392bb5c70bab9a
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 08:25:20 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 08:26:30 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac3f5f9
dev-lang/c-intercal: Append the flag safely.
Fixes: 8246f9809943bf639e34c201273994be63680480
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lang/c-intercal/c-intercal-31.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lang/c-intercal/c-intercal-31.0.ebuild b/dev-lang/c-intercal/c-intercal-31.0.ebuild
index bbcc4938fdb..1639cfbf56f 100644
--- a/dev-lang/c-intercal/c-intercal-31.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-31.0.ebuild
@@ -48,7 +48,7 @@ src_prepare() {
}
src_configure() {
- append-flags -fno-toplevel-reorder #722862
+ append-cflags $(test-flags-CC -fno-toplevel-reorder) #722862
econf
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2024-07-12 5:55 Eli Schwartz
0 siblings, 0 replies; 11+ messages in thread
From: Eli Schwartz @ 2024-07-12 5:55 UTC (permalink / raw
To: gentoo-commits
commit: 51e36f9017aaa359ec9bd3367241ab7e9b64f702
Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 12 03:46:37 2024 +0000
Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Fri Jul 12 05:54:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e36f90
dev-lang/c-intercal: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/855590
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>
dev-lang/c-intercal/c-intercal-31.0.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-lang/c-intercal/c-intercal-31.0.ebuild b/dev-lang/c-intercal/c-intercal-31.0.ebuild
index 8657f746d707..77d289ef928e 100644
--- a/dev-lang/c-intercal/c-intercal-31.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-31.0.ebuild
@@ -48,6 +48,11 @@ src_prepare() {
}
src_configure() {
+ # -Werror=lto-type-mismatch
+ # https://bugs.gentoo.org/855590
+ # https://gitlab.com/esr/intercal/-/issues/7
+ filter-lto
+
append-cflags $(test-flags-CC -fno-toplevel-reorder) #722862
econf
}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2025-01-26 19:02 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2025-01-26 19:02 UTC (permalink / raw
To: gentoo-commits
commit: 6f924ddc7f364b46b22cf46a6b9b6b05891e89ad
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 19:01:03 2025 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 19:01:49 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f924ddc
dev-lang/c-intercal: add 33.0
Closes: https://bugs.gentoo.org/722862
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lang/c-intercal/Manifest | 1 +
dev-lang/c-intercal/c-intercal-33.0.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/dev-lang/c-intercal/Manifest b/dev-lang/c-intercal/Manifest
index 0ac55ab591e2..49f925f55357 100644
--- a/dev-lang/c-intercal/Manifest
+++ b/dev-lang/c-intercal/Manifest
@@ -1 +1,2 @@
DIST intercal-0.31.tar.gz 940950 BLAKE2B 9a23229b1d7f0524b164a4b66bcab4fdf67a04ba1e411365a46a90d646867fe92d6e328935b406673809535a895becde934fb6cf2e8380943eb8f19473fcedab SHA512 ca5c10be880ce2470d7dd3404fa5a314bd7bcab45cf4908f7108eb1baa50339b876e135251d991527881b564027c63dc38d74a154cbd00d606261013d2b01262
+DIST intercal-0.33.tar.gz 960355 BLAKE2B c9d4f0a497865980fe2b8d26f43bf33a6c0ee2fb197c278cbd5b019fb2929310f4f776eeb5538e47de5d10b9410176f9cab403607108f7f0186bd004ce39184a SHA512 8dcd5eceb0b356a130b6a839536129438b17e417c33563ad851e29793755756c81cf3a2a61a90793d0fb59ade8a6928912cfa0471fbae9c61cd9cba0ed849379
diff --git a/dev-lang/c-intercal/c-intercal-33.0.ebuild b/dev-lang/c-intercal/c-intercal-33.0.ebuild
new file mode 100644
index 000000000000..3888f0660505
--- /dev/null
+++ b/dev-lang/c-intercal/c-intercal-33.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp-common flag-o-matic
+
+# C-INTERCAL uses minor-major ordering of version components and
+# negative version numbers. We map version components -1, -2, ...
+# to 65535, 65534, ..., and subtract one from the next component.
+# For example, upstream version 0.28 is mapped to Gentoo version 28.0
+# and 0.-2.0.29 is mapped to 28.65535.65534.0.
+#get_intercal_version() {
+# local i=.${1:-${PV}} j k c=0
+# while [[ ${i} ]]; do
+# (( k = ${i##*.} + c ))
+# (( (c = (k >= 32768)) && (k -= 65536) ))
+# i=${i%.*}
+# j=${j}.${k}
+# done
+# echo ${j#.}
+#}
+
+MY_P="${PN#c-}-$(ver_cut 2).$(ver_cut 1)"
+DESCRIPTION="C-INTERCAL - INTERCAL to binary (via C) compiler"
+HOMEPAGE="http://www.catb.org/~esr/intercal/
+ https://gitlab.com/esr/intercal"
+SRC_URI="http://www.catb.org/~esr/intercal/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2+ FDL-1.2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs examples"
+
+RDEPEND="emacs? ( >=app-editors/emacs-23.1:* )"
+BDEPEND="${RDEPEND}
+ app-alternatives/lex
+ app-alternatives/yacc"
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_configure() {
+ # -Werror=lto-type-mismatch
+ # https://bugs.gentoo.org/855590
+ # https://gitlab.com/esr/intercal/-/issues/7
+ filter-lto
+
+ append-cflags $(test-flags-CC -fno-toplevel-reorder) #722862
+ econf
+}
+
+src_compile() {
+ emake
+
+ if use emacs; then
+ elisp-compile etc/intercal.el
+ fi
+}
+
+src_install() {
+ emake DESTDIR="${D}" install
+ dodoc BUGS NEWS HISTORY README doc/THEORY.txt
+
+ if use emacs; then
+ elisp-install ${PN} etc/intercal.{el,elc}
+ elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+ fi
+
+ use examples && dodoc -r pit
+}
+
+pkg_postinst() {
+ use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+ use emacs && elisp-site-regen
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2025-01-26 19:02 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2025-01-26 19:02 UTC (permalink / raw
To: gentoo-commits
commit: a4bbc5e946c6feee09b832d739768ffdb6e49658
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 26 19:01:21 2025 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 26 19:01:50 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4bbc5e9
dev-lang/c-intercal: add gitlab upstream metadata
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
dev-lang/c-intercal/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dev-lang/c-intercal/metadata.xml b/dev-lang/c-intercal/metadata.xml
index 50974db5fc6f..0becb89b82a6 100644
--- a/dev-lang/c-intercal/metadata.xml
+++ b/dev-lang/c-intercal/metadata.xml
@@ -11,4 +11,7 @@
INTERCAL code. Now supports i18n and l14n (to Ancient Roman locale only).
Now with fix patch by Donald Knuth.
</longdescription>
+<upstream>
+ <remote-id type="gitlab">esr/intercal</remote-id>
+</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/
@ 2025-01-28 9:33 Ulrich Müller
0 siblings, 0 replies; 11+ messages in thread
From: Ulrich Müller @ 2025-01-28 9:33 UTC (permalink / raw
To: gentoo-commits
commit: 9f4ac7722393c754a2caca2ccfbc852ce25952e2
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 28 09:31:46 2025 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 09:31:46 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4ac772
dev-lang/c-intercal: Fix gcc-15 build failure
Closes: https://bugs.gentoo.org/948911
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
.../{c-intercal-33.0.ebuild => c-intercal-33.0-r1.ebuild} | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/dev-lang/c-intercal/c-intercal-33.0.ebuild b/dev-lang/c-intercal/c-intercal-33.0-r1.ebuild
similarity index 86%
rename from dev-lang/c-intercal/c-intercal-33.0.ebuild
rename to dev-lang/c-intercal/c-intercal-33.0-r1.ebuild
index 3888f0660505..8667d86a48d5 100644
--- a/dev-lang/c-intercal/c-intercal-33.0.ebuild
+++ b/dev-lang/c-intercal/c-intercal-33.0-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit elisp-common flag-o-matic
+inherit autotools elisp-common
# C-INTERCAL uses minor-major ordering of version components and
# negative version numbers. We map version components -1, -2, ...
@@ -40,14 +40,9 @@ BDEPEND="${RDEPEND}
SITEFILE="50${PN}-gentoo.el"
-src_configure() {
- # -Werror=lto-type-mismatch
- # https://bugs.gentoo.org/855590
- # https://gitlab.com/esr/intercal/-/issues/7
- filter-lto
-
- append-cflags $(test-flags-CC -fno-toplevel-reorder) #722862
- econf
+src_prepare() {
+ default
+ eautoreconf #948911
}
src_compile() {
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-01-28 9:33 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-28 9:33 [gentoo-commits] repo/gentoo:master commit in: dev-lang/c-intercal/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2025-01-26 19:02 Ulrich Müller
2025-01-26 19:02 Ulrich Müller
2024-07-12 5:55 Eli Schwartz
2020-08-14 8:26 Ulrich Müller
2020-05-13 17:11 Ulrich Müller
2019-12-07 7:58 Ulrich Müller
2018-03-10 12:23 Pacho Ramos
2017-01-08 17:46 Ulrich Müller
2016-10-28 21:03 Ulrich Müller
2016-10-28 21:03 Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox