mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Roland Hieber <rhi@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Roland Hieber <rhi@pengutronix.de>
Subject: [ptxdist] [PATCH 3/5] mono: remove after one year in staging
Date: Mon, 22 Jun 2020 00:29:51 +0200	[thread overview]
Message-ID: <20200621222953.12596-3-rhi@pengutronix.de> (raw)
In-Reply-To: <20200621222953.12596-1-rhi@pengutronix.de>

Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
 ...om-Kyle-Edwards-kyleedwardsny-gmail..patch |  22 ---
 patches/mono-3.2.8/autogen.sh                 |   1 -
 patches/mono-3.2.8/series                     |   4 -
 rules/mono.in                                 |  14 --
 rules/mono.make                               | 153 ------------------
 5 files changed, 194 deletions(-)
 delete mode 100644 patches/mono-3.2.8/0001-Applied-patch-from-Kyle-Edwards-kyleedwardsny-gmail..patch
 delete mode 120000 patches/mono-3.2.8/autogen.sh
 delete mode 100644 patches/mono-3.2.8/series
 delete mode 100644 rules/mono.in
 delete mode 100644 rules/mono.make

diff --git a/patches/mono-3.2.8/0001-Applied-patch-from-Kyle-Edwards-kyleedwardsny-gmail..patch b/patches/mono-3.2.8/0001-Applied-patch-from-Kyle-Edwards-kyleedwardsny-gmail..patch
deleted file mode 100644
index c6652bcde744..000000000000
--- a/patches/mono-3.2.8/0001-Applied-patch-from-Kyle-Edwards-kyleedwardsny-gmail..patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Zoltan Varga <vargaz@gmail.com>
-Date: Tue, 3 Jun 2014 16:07:40 +0200
-Subject: [PATCH] Applied patch from Kyle Edwards <kyleedwardsny@gmail.com>.
- Fix isinf () check with clang. Fixes #20244.
-
----
- configure.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.in b/configure.in
-index 493f671c2a7d..0a390788d125 100644
---- a/configure.in
-+++ b/configure.in
-@@ -475,7 +475,7 @@ AC_CHECK_HEADERS(wchar.h)
- AC_CHECK_HEADERS(ieeefp.h)
- AC_MSG_CHECKING(for isinf)
- AC_TRY_LINK([#include <math.h>], [
--	int f = isinf (1);
-+	int f = isinf (1.0);
- ], [
- 	AC_MSG_RESULT(yes)
- 	AC_DEFINE(HAVE_ISINF, 1, [isinf available])
diff --git a/patches/mono-3.2.8/autogen.sh b/patches/mono-3.2.8/autogen.sh
deleted file mode 120000
index 9f8a4cb7ddcb..000000000000
--- a/patches/mono-3.2.8/autogen.sh
+++ /dev/null
@@ -1 +0,0 @@
-../autogen.sh
\ No newline at end of file
diff --git a/patches/mono-3.2.8/series b/patches/mono-3.2.8/series
deleted file mode 100644
index 4c270b930294..000000000000
--- a/patches/mono-3.2.8/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-Applied-patch-from-Kyle-Edwards-kyleedwardsny-gmail..patch
-# d06d73e43cdc6dae035f536c6595128b  - git-ptx-patches magic
diff --git a/rules/mono.in b/rules/mono.in
deleted file mode 100644
index 386616b648e0..000000000000
--- a/rules/mono.in
+++ /dev/null
@@ -1,14 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=bytecode_engines
-
-config MONO
-	tristate
-	select GLIB
-	prompt "mono"
-	help
-	  mono is a runtime implementation of the ECMA Common Language
-	  Infrastructure. It can be used to run ECMA and .NET applications.
-
-	  STAGING: remove in ptxdist-2020.06.0
-	  Old version that need to be updated. Fails to build with glibc-2.28.
diff --git a/rules/mono.make b/rules/mono.make
deleted file mode 100644
index 4c014ff05ae5..000000000000
--- a/rules/mono.make
+++ /dev/null
@@ -1,153 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2010 by Robert Schwebel <r.schwebel@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-ifndef PTXCONF_ARCH_ARM64
-PACKAGES-$(PTXCONF_MONO) += mono
-endif
-
-#
-# Paths and names
-#
-MONO_VERSION	:= 3.2.8
-MONO_MD5	:= 1075f99bd8a69890af9e30309728e684
-MONO		:= mono-$(MONO_VERSION)
-MONO_SUFFIX	:= tar.bz2
-MONO_URL	:= http://download.mono-project.com/sources/mono/$(MONO).$(MONO_SUFFIX)
-MONO_SOURCE	:= $(SRCDIR)/$(MONO).$(MONO_SUFFIX)
-MONO_DIR	:= $(BUILDDIR)/$(MONO)
-MONO_LICENSE	:= unknown
-MONO_DEVPKG	:= NO
-
-# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/mono.extract:
-	@$(call targetinfo)
-	@$(call clean, $(MONO_DIR))
-	@$(call extract, MONO)
-#	# The mono archive has some stray .git files in it's externals-subdirs
-	@find $(MONO_DIR) -name .git -print0 | xargs -0 rm -v
-	@$(call patchin, MONO)
-	@$(call touch)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-MONO_CONF_ENV	:= \
-	$(CROSS_ENV) \
-	CPPFLAGS="$(CROSS_CPPFLAGS) $(call ptx/ifdef, PTXCONF_HAS_HARDFLOAT,,-DARM_FPU_NONE)" \
-	mono_cv_uscore=yes
-#
-# autoconf
-#
-MONO_CONF_TOOL	:= autoconf
-MONO_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR) \
-	--disable-solaris-tar-check \
-	--disable-nls \
-	--disable-mcs-build \
-	--enable-silent-rules \
-	--disable-parallel-mark \
-	--disable-dev-random \
-	--enable-shared-handles \
-	--disable-nunit-tests \
-	--disable-big-arrays \
-	--disable-dtrace \
-	--disable-llvm \
-	--disable-loadedllvm \
-	--disable-llvm-version-check \
-	--with-libgdiplus=installed \
-	--with-gc=included \
-	--with-tls=pthread \
-	--with-sigaltstack=no \
-	--with-static_mono=no \
-	--with-shared_mono=yes \
-	--with-xen_opt=no \
-	--with-large-heap=no \
-	--with-ikvm-native=yes \
-	--with-profile2=no \
-	--with-profile4=no \
-	--with-profile4_5=no \
-	--with-monodroid=no \
-	--with-monotouch=no \
-	--with-mobile=no \
-	--with-oprofile=no \
-	--with-malloc-mempools=no \
-	--with-mcs-docs=no \
-	--with-lazy-gc-thread-creation=no \
-	--enable-libraries \
-	--enable-executables \
-	--disable-extension-module \
-	--disable-small-config \
-	--enable-system-aot \
-	--enable-boehm \
-	--disable-nacl-codegen \
-	--disable-nacl-gc \
-	--disable-icall-symbol-map \
-	--enable-icall-export \
-	--disable-icall-tables \
-	--with-jumptables=no \
-	--with-sgen=yes
-
-# --enable-minimal=LIST      drop support for LIST subsystems.
-# --with-crosspkgdir=/path/to/pkg-config/dir      Change pkg-config dir to custom dir
-#
-# LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug,
-# appdomains, verifier, reflection_emit, reflection_emit_save, large_code,
-# logging, com, ssa, generics, attach, jit, simd, soft_debug, perfcounters,
-# normalization, assembly_remapping, shared_perfcounters, remoting, security,
-# sgen_remset, sgen_marksweep_par, sgen_marksweep_fixed,
-# sgen_marksweep_fixed_par, sgen_copying.],
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/mono.targetinstall:
-	@$(call targetinfo)
-
-	@$(call install_init,  mono)
-	@$(call install_fixup, mono,PACKAGE,mono)
-	@$(call install_fixup, mono,PRIORITY,optional)
-	@$(call install_fixup, mono,VERSION,$(MONO_VERSION))
-	@$(call install_fixup, mono,SECTION,base)
-	@$(call install_fixup, mono,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
-	@$(call install_fixup, mono,DEPENDS,)
-	@$(call install_fixup, mono,DESCRIPTION,missing)
-
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/machine.config)
-
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/DefaultWsdlHelpGenerator.aspx)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/Browsers/Compat.browser)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/DefaultWsdlHelpGenerator.aspx)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/machine.config)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/settings.map)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/2.0/web.config)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/browscap.ini)
-	@$(call install_copy, mono, 0, 0, 0644, -, /etc/mono/config)
-
-	@$(call install_tree, mono, -, -, $(MONO_PKGDIR)/usr/bin, /usr/bin)
-	@$(call install_tree, mono, -, -, $(MONO_PKGDIR)/usr/lib, /usr/lib)
-
-	@$(call install_copy, mono, 0, 0, 0644, -, /usr/share/mono-2.0/mono/cil/cil-opcodes.xml)
-
-	# looks like we have to install this, otherwhise not even helloworld.cs does work
-	@$(call install_copy, mono, 0, 0, 0755, \
-		$(MONO_DIR)/mcs/class/lib/monolite/mscorlib.dll, \
-		/usr/lib/mono/1.0/mscorlib.dll)
-
-	@$(call install_finish, mono)
-
-	@$(call touch)
-
-# vim: syntax=make
-- 
2.27.0


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

  parent reply	other threads:[~2020-06-21 22:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-21 22:29 [ptxdist] [PATCH 1/5] ustr: move to staging Roland Hieber
2020-06-21 22:29 ` [ptxdist] [PATCH 2/5] dc3dd: remove after one year in staging Roland Hieber
2020-06-26 11:00   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-06-21 22:29 ` Roland Hieber [this message]
2020-06-26 11:00   ` [ptxdist] [APPLIED] mono: " Michael Olbrich
2020-06-21 22:29 ` [ptxdist] [PATCH 4/5] sepolgen: " Roland Hieber
2020-06-22 12:26   ` Michael Olbrich
2020-06-22 12:56     ` Ladislav Michl
2020-06-28 21:20     ` [ptxdist] [PATCH v2] " Roland Hieber
2020-06-28 21:24     ` [ptxdist] [PATCH v3] " Roland Hieber
2020-07-06  6:38       ` Michael Olbrich
2020-07-06 12:49         ` [ptxdist] [PATCH v2] " Roland Hieber
2020-07-07  5:45           ` [ptxdist] [APPLIED] " Michael Olbrich
2020-06-21 22:29 ` [ptxdist] [PATCH 5/5] udisks: " Roland Hieber
2020-06-26 11:00   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-06-26 11:00 ` [ptxdist] [APPLIED] ustr: move to staging Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200621222953.12596-3-rhi@pengutronix.de \
    --to=rhi@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox