git: c2f23915a9ed - main - cleanup: Remove expired ports:

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Sat, 31 Dec 2022 01:16:15 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c2f23915a9ed01b2ed36ef6ff385a1b6ad6bc111

commit c2f23915a9ed01b2ed36ef6ff385a1b6ad6bc111
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2022-12-31 01:13:49 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2022-12-31 01:16:10 +0000

    cleanup: Remove expired ports:
    
    2022-12-31 lang/ponyc: Very outdated and unsupported upstream, depends on end of life devel/llvm70
---
 MOVED                                 |   1 +
 lang/Makefile                         |   1 -
 lang/ponyc/Makefile                   |  98 --------------
 lang/ponyc/distinfo                   |   3 -
 lang/ponyc/files/patch-Makefile-ponyc |  20 ---
 lang/ponyc/pkg-descr                  |   5 -
 lang/ponyc/pkg-plist                  | 245 ----------------------------------
 7 files changed, 1 insertion(+), 372 deletions(-)

diff --git a/MOVED b/MOVED
index dbbdcbe94767..c9c505dc2536 100644
--- a/MOVED
+++ b/MOVED
@@ -17717,3 +17717,4 @@ shells/ksh2020||2022-12-30|Has expired: Upstream ksh2020 branch archived, develo
 games/scorched3d/||2022-12-31|Has expired: Abandoned project and use deprecated wxgtk28
 comms/hylafax||2022-12-31|Has expired: dead upstream, someone port hylafax+ from sourceforge.net instead
 comms/tkhylafax||2022-12-31|Has expired: Depends on expired comms/hylafax
+lang/ponyc||2022-12-31|Has expired: Very outdated and unsupported upstream, depends on end of life devel/llvm70
diff --git a/lang/Makefile b/lang/Makefile
index cc6581d41d2e..8c51458ebac2 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -269,7 +269,6 @@
     SUBDIR += plexil
     SUBDIR += pocl
     SUBDIR += polyml
-    SUBDIR += ponyc
     SUBDIR += ptoc
     SUBDIR += purescript
     SUBDIR += py-hy
diff --git a/lang/ponyc/Makefile b/lang/ponyc/Makefile
deleted file mode 100644
index 54f20a64eb5d..000000000000
--- a/lang/ponyc/Makefile
+++ /dev/null
@@ -1,98 +0,0 @@
-PORTNAME=	ponyc
-DISTVERSION=	0.33.2
-CATEGORIES=	lang
-
-MAINTAINER=	ports@FreeBSD.org
-COMMENT=	Pony language compiler
-WWW=		https://www.ponylang.org/
-
-LICENSE=	BSD2CLAUSE
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=	Very outdated and unsupported upstream, depends on end of life devel/llvm70
-EXPIRATION_DATE=2022-12-31
-
-ONLY_FOR_ARCHS=		aarch64 amd64
-ONLY_FOR_ARCHS_REASON=	undefined reference to __atomic_compare_exchange_8
-
-BUILD_DEPENDS=	llvm-link${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
-
-FLAVORS=	llvm_dynamic llvm_static
-FLAVOR?=	${FLAVORS:[1]}
-
-llvm_dynamic_RUN_DEPENDS=	llvm-link${LLVM_VERSION}:devel/llvm${LLVM_VERSION}
-llvm_dynamic_CONFLICTS_INSTALL=	ponyc-static
-llvm_static_PKGNAMESUFFIX=	-static
-llvm_static_CONFLICTS_INSTALL=	ponyc
-.if ${FLAVOR} == llvm_static
-COMMENT+=			(statically linked with LLVM)
-.endif
-
-USES=		gmake ncurses compiler:c++11-lang
-
-LLVM_VERSION?=	70
-
-PLIST_SUB=	VERSION="${DISTVERSION}" PONYARCH="${PONYARCH}"
-OPTIONS_SUB=	yes
-
-USE_GITHUB=	yes
-GH_ACCOUNT=	ponylang
-
-PORTDOCS=	*.md
-
-MAKE_ENV=	config=release verbose=true default_pic=true \
-		prefix=${PREFIX} arch=${PONYARCH} \
-		LLVM_CONFIG=llvm-config${LLVM_VERSION}
-.if ${FLAVOR} == llvm_dynamic
-MAKE_ENV+=	link=llvm-dynamic
-.else
-MAKE_ENV+=	link=llvm-static
-.endif
-
-OPTIONS_DEFINE=			DOCS DTRACE EXAMPLES
-OPTIONS_EXCLUDE_aarch64=	DTRACE
-# Not enabling DTrace by default yet because it breaks --runtimebc ("super LTO"):
-# https://github.com/ponylang/ponyc/issues/2915
-
-DTRACE_MAKE_ENV=		use=dtrace
-
-.include <bsd.port.pre.mk>
-
-# Pony defaults to 'native', which
-# a) doesn't work on aarch64
-# b) is not appropriate for official OS packages
-.if "${ARCH}" == aarch64
-PONYARCH?=	armv8-a
-.elif "${ARCH}" == amd64
-# Can't use 'x86-64' because atomics are required
-PONYARCH?=	core2
-.endif
-
-# keep in sync with all platforms where libunwind is available
-.if (${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == aarch64)
-LIB_DEPENDS+=	libunwind.so:devel/libunwind
-.endif
-
-.if ${CHOSEN_COMPILER_TYPE} == clang
-# Building the bitcode with clangX and linking with llvmY often fails,
-# so let's use the clang from the LLVM version that will be used by ponyc
-CC=		${LOCALBASE}/bin/clang${LLVM_VERSION}
-CXX=		${LOCALBASE}/bin/clang++${LLVM_VERSION}
-MAKE_ENV+=	runtime-bitcode=yes
-PLIST_SUB+=	BITCODE=""
-.else
-PLIST_SUB+=	BITCODE="@comment "
-.endif
-
-post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pony/${DISTVERSION}/bin/ponyc
-
-post-install-DOCS-on:
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR}
-
-post-install-EXAMPLES-on:
-	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
-	@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
-
-.include <bsd.port.post.mk>
diff --git a/lang/ponyc/distinfo b/lang/ponyc/distinfo
deleted file mode 100644
index 25e29de74d0c..000000000000
--- a/lang/ponyc/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1581289632
-SHA256 (ponylang-ponyc-0.33.2_GH0.tar.gz) = 41ba573f16b4aecbcc39ec6d5b794185bf50e570b4a8f2cceef0a276e7fb50a3
-SIZE (ponylang-ponyc-0.33.2_GH0.tar.gz) = 1414291
diff --git a/lang/ponyc/files/patch-Makefile-ponyc b/lang/ponyc/files/patch-Makefile-ponyc
deleted file mode 100644
index e5485dae6654..000000000000
--- a/lang/ponyc/files/patch-Makefile-ponyc
+++ /dev/null
@@ -1,20 +0,0 @@
-Avoid hardcoding /usr/local/bin/clang70 as fallback linker
-
---- Makefile-ponyc.orig	2020-02-03 03:34:35 UTC
-+++ Makefile-ponyc
-@@ -146,13 +146,13 @@ else
- endif
- 
- LIB_EXT ?= a
--BUILD_FLAGS = -march=$(arch) -mtune=$(tune) -Werror -Wconversion \
-+BUILD_FLAGS = -march=$(arch) -mtune=$(tune) -Wconversion \
-   -Wno-sign-conversion -Wextra -Wall
- LINKER_FLAGS = -march=$(arch) -mtune=$(tune) $(LDFLAGS)
- AR_FLAGS ?= rcs
- ALL_CFLAGS = -std=gnu11 -fexceptions \
-   -DPONY_VERSION=\"$(tag)\" -DLLVM_VERSION=\"$(llvm_version)\" \
--  -DPONY_COMPILER=\"$(CC)\" -DPONY_ARCH=\"$(arch)\" \
-+  -DPONY_COMPILER=\"/usr/bin/cc\" -DPONY_ARCH=\"$(arch)\" \
-   -DBUILD_COMPILER=\"$(compiler_version)\" \
-   -DPONY_BUILD_CONFIG=\"$(config)\" \
-   -DPONY_VERSION_STR=\"$(version_str)\" \
diff --git a/lang/ponyc/pkg-descr b/lang/ponyc/pkg-descr
deleted file mode 100644
index dd37fa1eed88..000000000000
--- a/lang/ponyc/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Pony is an object-oriented, actor-model, capabilities-secure programming
-language. It's object-oriented because it has classes and objects, like
-Python, Java, C++, and many other languages. It's actor-model because it has
-actors (similar to Erlang or Akka). These behave like objects, but they can
-also execute code asynchronously.
diff --git a/lang/ponyc/pkg-plist b/lang/ponyc/pkg-plist
deleted file mode 100644
index 17032ceae674..000000000000
--- a/lang/ponyc/pkg-plist
+++ /dev/null
@@ -1,245 +0,0 @@
-bin/ponyc
-include/pony.h
-include/pony/detail/atomics.h
-lib/libponyc.a
-lib/libponyrt.a
-lib/pony/%%VERSION%%/bin/ponyc
-lib/pony/%%VERSION%%/include/pony.h
-lib/pony/%%VERSION%%/include/pony/detail/atomics.h
-%%DTRACE%%lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libdtrace_probes.a
-lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyc.a
-lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyrt.a
-%%BITCODE%%lib/pony/%%VERSION%%/lib/%%PONYARCH%%/libponyrt.bc
-lib/pony/%%VERSION%%/packages/assert/assert.pony
-lib/pony/%%VERSION%%/packages/backpressure/auth.pony
-lib/pony/%%VERSION%%/packages/backpressure/backpressure.pony
-lib/pony/%%VERSION%%/packages/buffered/_test.pony
-lib/pony/%%VERSION%%/packages/buffered/benchmarks/main.pony
-lib/pony/%%VERSION%%/packages/buffered/buffered.pony
-lib/pony/%%VERSION%%/packages/buffered/reader.pony
-lib/pony/%%VERSION%%/packages/buffered/writer.pony
-lib/pony/%%VERSION%%/packages/builtin/_arithmetic.pony
-lib/pony/%%VERSION%%/packages/builtin/_to_string.pony
-lib/pony/%%VERSION%%/packages/builtin/ambient_auth.pony
-lib/pony/%%VERSION%%/packages/builtin/any.pony
-lib/pony/%%VERSION%%/packages/builtin/array.pony
-lib/pony/%%VERSION%%/packages/builtin/asio_event.pony
-lib/pony/%%VERSION%%/packages/builtin/bool.pony
-lib/pony/%%VERSION%%/packages/builtin/builtin.pony
-lib/pony/%%VERSION%%/packages/builtin/compare.pony
-lib/pony/%%VERSION%%/packages/builtin/disposable_actor.pony
-lib/pony/%%VERSION%%/packages/builtin/do_not_optimise.pony
-lib/pony/%%VERSION%%/packages/builtin/env.pony
-lib/pony/%%VERSION%%/packages/builtin/float.pony
-lib/pony/%%VERSION%%/packages/builtin/iterator.pony
-lib/pony/%%VERSION%%/packages/builtin/none.pony
-lib/pony/%%VERSION%%/packages/builtin/nullable_pointer.pony
-lib/pony/%%VERSION%%/packages/builtin/platform.pony
-lib/pony/%%VERSION%%/packages/builtin/pointer.pony
-lib/pony/%%VERSION%%/packages/builtin/read_seq.pony
-lib/pony/%%VERSION%%/packages/builtin/real.pony
-lib/pony/%%VERSION%%/packages/builtin/runtime_options.pony
-lib/pony/%%VERSION%%/packages/builtin/seq.pony
-lib/pony/%%VERSION%%/packages/builtin/signed.pony
-lib/pony/%%VERSION%%/packages/builtin/source_loc.pony
-lib/pony/%%VERSION%%/packages/builtin/std_stream.pony
-lib/pony/%%VERSION%%/packages/builtin/stdin.pony
-lib/pony/%%VERSION%%/packages/builtin/string.pony
-lib/pony/%%VERSION%%/packages/builtin/stringable.pony
-lib/pony/%%VERSION%%/packages/builtin/unsigned.pony
-lib/pony/%%VERSION%%/packages/builtin_test/_test.pony
-lib/pony/%%VERSION%%/packages/builtin_test/_test_valtrace.pony
-lib/pony/%%VERSION%%/packages/bureaucracy/_test.pony
-lib/pony/%%VERSION%%/packages/bureaucracy/custodian.pony
-lib/pony/%%VERSION%%/packages/bureaucracy/registrar.pony
-lib/pony/%%VERSION%%/packages/capsicum/cap.pony
-lib/pony/%%VERSION%%/packages/capsicum/cap_rights.pony
-lib/pony/%%VERSION%%/packages/cli/_test.pony
-lib/pony/%%VERSION%%/packages/cli/cli.pony
-lib/pony/%%VERSION%%/packages/cli/command.pony
-lib/pony/%%VERSION%%/packages/cli/command_help.pony
-lib/pony/%%VERSION%%/packages/cli/command_parser.pony
-lib/pony/%%VERSION%%/packages/cli/command_spec.pony
-lib/pony/%%VERSION%%/packages/cli/env_vars.pony
-lib/pony/%%VERSION%%/packages/collections/_test.pony
-lib/pony/%%VERSION%%/packages/collections/flag.pony
-lib/pony/%%VERSION%%/packages/collections/hashable.pony
-lib/pony/%%VERSION%%/packages/collections/heap.pony
-lib/pony/%%VERSION%%/packages/collections/list.pony
-lib/pony/%%VERSION%%/packages/collections/list_node.pony
-lib/pony/%%VERSION%%/packages/collections/map.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/_bits.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/_map_node.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/_test.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/_vec_node.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/benchmarks/main.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/list.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/map.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/persistent.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/set.pony
-lib/pony/%%VERSION%%/packages/collections/persistent/vec.pony
-lib/pony/%%VERSION%%/packages/collections/range.pony
-lib/pony/%%VERSION%%/packages/collections/reverse.pony
-lib/pony/%%VERSION%%/packages/collections/ring_buffer.pony
-lib/pony/%%VERSION%%/packages/collections/set.pony
-lib/pony/%%VERSION%%/packages/collections/sort.pony
-lib/pony/%%VERSION%%/packages/debug/debug.pony
-lib/pony/%%VERSION%%/packages/encode/base64/_test.pony
-lib/pony/%%VERSION%%/packages/encode/base64/base64.pony
-lib/pony/%%VERSION%%/packages/files/_file_des.pony
-lib/pony/%%VERSION%%/packages/files/_test.pony
-lib/pony/%%VERSION%%/packages/files/directory.pony
-lib/pony/%%VERSION%%/packages/files/file.pony
-lib/pony/%%VERSION%%/packages/files/file_caps.pony
-lib/pony/%%VERSION%%/packages/files/file_info.pony
-lib/pony/%%VERSION%%/packages/files/file_lines.pony
-lib/pony/%%VERSION%%/packages/files/file_mode.pony
-lib/pony/%%VERSION%%/packages/files/file_path.pony
-lib/pony/%%VERSION%%/packages/files/file_stream.pony
-lib/pony/%%VERSION%%/packages/files/files.pony
-lib/pony/%%VERSION%%/packages/files/path.pony
-lib/pony/%%VERSION%%/packages/format/_format_float.pony
-lib/pony/%%VERSION%%/packages/format/_format_int.pony
-lib/pony/%%VERSION%%/packages/format/_test.pony
-lib/pony/%%VERSION%%/packages/format/align.pony
-lib/pony/%%VERSION%%/packages/format/format.pony
-lib/pony/%%VERSION%%/packages/format/format_spec.pony
-lib/pony/%%VERSION%%/packages/format/prefix_spec.pony
-lib/pony/%%VERSION%%/packages/ini/_test.pony
-lib/pony/%%VERSION%%/packages/ini/ini.pony
-lib/pony/%%VERSION%%/packages/ini/ini_map.pony
-lib/pony/%%VERSION%%/packages/itertools/_test.pony
-lib/pony/%%VERSION%%/packages/itertools/iter.pony
-lib/pony/%%VERSION%%/packages/itertools/itertools.pony
-lib/pony/%%VERSION%%/packages/json/_json_print.pony
-lib/pony/%%VERSION%%/packages/json/_test.pony
-lib/pony/%%VERSION%%/packages/json/json.pony
-lib/pony/%%VERSION%%/packages/json/json_doc.pony
-lib/pony/%%VERSION%%/packages/json/json_type.pony
-lib/pony/%%VERSION%%/packages/logger/_test.pony
-lib/pony/%%VERSION%%/packages/logger/logger.pony
-lib/pony/%%VERSION%%/packages/math/fibonacci.pony
-lib/pony/%%VERSION%%/packages/net/_test.pony
-lib/pony/%%VERSION%%/packages/net/auth.pony
-lib/pony/%%VERSION%%/packages/net/dns.pony
-lib/pony/%%VERSION%%/packages/net/net.pony
-lib/pony/%%VERSION%%/packages/net/net_address.pony
-lib/pony/%%VERSION%%/packages/net/ossocket.pony
-lib/pony/%%VERSION%%/packages/net/ossockopt.pony
-lib/pony/%%VERSION%%/packages/net/proxy.pony
-lib/pony/%%VERSION%%/packages/net/tcp_connection.pony
-lib/pony/%%VERSION%%/packages/net/tcp_connection_notify.pony
-lib/pony/%%VERSION%%/packages/net/tcp_listen_notify.pony
-lib/pony/%%VERSION%%/packages/net/tcp_listener.pony
-lib/pony/%%VERSION%%/packages/net/udp_notify.pony
-lib/pony/%%VERSION%%/packages/net/udp_socket.pony
-lib/pony/%%VERSION%%/packages/options/_test.pony
-lib/pony/%%VERSION%%/packages/options/env_vars.pony
-lib/pony/%%VERSION%%/packages/options/options.pony
-lib/pony/%%VERSION%%/packages/ponybench/_aggregator.pony
-lib/pony/%%VERSION%%/packages/ponybench/_output_manager.pony
-lib/pony/%%VERSION%%/packages/ponybench/_results.pony
-lib/pony/%%VERSION%%/packages/ponybench/_runner.pony
-lib/pony/%%VERSION%%/packages/ponybench/benchmark.pony
-lib/pony/%%VERSION%%/packages/ponybench/pony_bench.pony
-lib/pony/%%VERSION%%/packages/ponytest/_color.pony
-lib/pony/%%VERSION%%/packages/ponytest/_group.pony
-lib/pony/%%VERSION%%/packages/ponytest/_test_record.pony
-lib/pony/%%VERSION%%/packages/ponytest/_test_runner.pony
-lib/pony/%%VERSION%%/packages/ponytest/pony_test.pony
-lib/pony/%%VERSION%%/packages/ponytest/test_helper.pony
-lib/pony/%%VERSION%%/packages/ponytest/test_list.pony
-lib/pony/%%VERSION%%/packages/ponytest/unit_test.pony
-lib/pony/%%VERSION%%/packages/process/_pipe.pony
-lib/pony/%%VERSION%%/packages/process/_process.pony
-lib/pony/%%VERSION%%/packages/process/_test.pony
-lib/pony/%%VERSION%%/packages/process/auth.pony
-lib/pony/%%VERSION%%/packages/process/process_monitor.pony
-lib/pony/%%VERSION%%/packages/process/process_notify.pony
-lib/pony/%%VERSION%%/packages/promises/_test.pony
-lib/pony/%%VERSION%%/packages/promises/_then.pony
-lib/pony/%%VERSION%%/packages/promises/fulfill.pony
-lib/pony/%%VERSION%%/packages/promises/promise.pony
-lib/pony/%%VERSION%%/packages/random/_test.pony
-lib/pony/%%VERSION%%/packages/random/benchmarks/main.pony
-lib/pony/%%VERSION%%/packages/random/dice.pony
-lib/pony/%%VERSION%%/packages/random/mt.pony
-lib/pony/%%VERSION%%/packages/random/random.pony
-lib/pony/%%VERSION%%/packages/random/splitmix64.pony
-lib/pony/%%VERSION%%/packages/random/xoroshiro.pony
-lib/pony/%%VERSION%%/packages/random/xorshift.pony
-lib/pony/%%VERSION%%/packages/serialise/_test.pony
-lib/pony/%%VERSION%%/packages/serialise/serialise.pony
-lib/pony/%%VERSION%%/packages/signals/_test.pony
-lib/pony/%%VERSION%%/packages/signals/sig.pony
-lib/pony/%%VERSION%%/packages/signals/signal_handler.pony
-lib/pony/%%VERSION%%/packages/signals/signal_notify.pony
-lib/pony/%%VERSION%%/packages/stdlib/_test.pony
-lib/pony/%%VERSION%%/packages/strings/_test.pony
-lib/pony/%%VERSION%%/packages/strings/common_prefix.pony
-lib/pony/%%VERSION%%/packages/term/ansi.pony
-lib/pony/%%VERSION%%/packages/term/ansi_notify.pony
-lib/pony/%%VERSION%%/packages/term/ansi_term.pony
-lib/pony/%%VERSION%%/packages/term/readline.pony
-lib/pony/%%VERSION%%/packages/term/readline_notify.pony
-lib/pony/%%VERSION%%/packages/time/_test.pony
-lib/pony/%%VERSION%%/packages/time/_timing_wheel.pony
-lib/pony/%%VERSION%%/packages/time/nanos.pony
-lib/pony/%%VERSION%%/packages/time/posix_date.pony
-lib/pony/%%VERSION%%/packages/time/time.pony
-lib/pony/%%VERSION%%/packages/time/timer.pony
-lib/pony/%%VERSION%%/packages/time/timer_notify.pony
-lib/pony/%%VERSION%%/packages/time/timers.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/circle/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/commandline/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/counter/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/README.md
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/gc.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/mbox-size-all-actor-messages.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/mbox-size-all-thread-messages.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/mbox-size.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/message-types.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/nanosleep.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/scheduling.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dtrace/telemetry.d
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fan-in/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi-callbacks/callbacks.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi-callbacks/callbacks.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi-struct/struct.c
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ffi-struct/struct.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/files/files.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gups_basic/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gups_opt/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/helloworld/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ifdef/ifdef.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lambda/lambda.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mailbox/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mandelbrot/mandelbrot.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/message-ubench/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mixed/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-body/n-body.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/client.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/listener.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/net.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/ping.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/pong.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/net/server.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/overload/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ponybench/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/printargs/printargs.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/producer-consumer/buffer.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/producer-consumer/consumer.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/producer-consumer/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/producer-consumer/producer.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/producer-consumer/product.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/readline/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ring/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spreader/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/systemtap/README.md
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/systemtap/gc.stp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/systemtap/scheduling.stp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/systemtap/telemetry.stp
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timers/timers.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/under_pressure/main.pony
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yield/main.pony