>From 0aebfd7dd33d429a7a5bb68cff1eeee9e95f3d0d Mon Sep 17 00:00:00 2001 From: ng0
Date: Fri, 20 Jan 2017 13:16:10 +0000 Subject: [PATCH] gnu: Add ponyc. * gnu/packages/pony.scm: New file. * gnu/packages/patches/ponyc-disable-tests.patch: New file. * gnu/local.mk --- gnu/local.mk | 2 + gnu/packages/patches/ponyc-disable-tests.patch | 19 ++++ gnu/packages/pony.scm | 117 +++++++++++++++++++++++++ 3 files changed, 138 insertions(+) create mode 100644 gnu/packages/patches/ponyc-disable-tests.patch create mode 100644 gnu/packages/pony.scm diff --git a/gnu/local.mk b/gnu/local.mk index 060de2535..7713fd2e6 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -303,6 +303,7 @@ GNU_SYSTEM_MODULES = \ %D%/packages/pkg-config.scm \ %D%/packages/plotutils.scm \ %D%/packages/polkit.scm \ + %D%/packages/pony.scm \ %D%/packages/popt.scm \ %D%/packages/pth.scm \ %D%/packages/pulseaudio.scm \ @@ -837,6 +838,7 @@ dist_patch_DATA = \ %D%/packages/patches/plotutils-libpng-jmpbuf.patch \ %D%/packages/patches/polkit-drop-test.patch \ %D%/packages/patches/portaudio-audacity-compat.patch \ + %D%/packages/patches/ponyc-disable-tests.patch \ %D%/packages/patches/portmidi-modular-build.patch \ %D%/packages/patches/procmail-ambiguous-getline-debian.patch \ %D%/packages/patches/procmail-CVE-2014-3618.patch \ diff --git a/gnu/packages/patches/ponyc-disable-tests.patch b/gnu/packages/patches/ponyc-disable-tests.patch new file mode 100644 index 000000000..38740cf96 --- /dev/null +++ b/gnu/packages/patches/ponyc-disable-tests.patch @@ -0,0 +1,19 @@ +diff -Naur a/packages/net/_test.pony b/packages/net/_test.pony +--- a/packages/net/_test.pony 1970-01-01 01:00:01.000000000 +0100 ++++ b/packages/net/_test.pony 2016-12-01 22:25:59.102433053 +0100 +@@ -5,14 +5,7 @@ + new make() => None + + fun tag tests(test: PonyTest) => +- test(_TestBroadcast) +- test(_TestTCPWritev) +- test(_TestTCPExpect) +- test(_TestTCPMute) +- test(_TestTCPUnmute) +- ifdef not windows then +- test(_TestTCPThrottle) +- end ++ None + + class _TestPing is UDPNotify + let _h: TestHelper diff --git a/gnu/packages/pony.scm b/gnu/packages/pony.scm new file mode 100644 index 000000000..025cd6a7a --- /dev/null +++ b/gnu/packages/pony.scm @@ -0,0 +1,117 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2017 ng0 +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see