public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/network/files/
@ 2016-08-03  7:36 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2016-08-03  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     dc36a65f6542011652e8b1930a6ed65844e40d29
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Wed Jul 27 17:03:37 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Aug  3 07:21:54 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc36a65f

dev-haskell/network: remove unused patches

Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 .../files/network-2.2.0.0-eat-configure-opts.patch | 17 ------
 .../network/files/network-2.3.0.14-ghc-7.5.patch   | 69 ----------------------
 .../network/files/network-2.4.0.1-fix-ppc64.patch  | 39 ------------
 3 files changed, 125 deletions(-)

diff --git a/dev-haskell/network/files/network-2.2.0.0-eat-configure-opts.patch b/dev-haskell/network/files/network-2.2.0.0-eat-configure-opts.patch
deleted file mode 100644
index 49c430d..0000000
--- a/dev-haskell/network/files/network-2.2.0.0-eat-configure-opts.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Make sure ./configure can eat --with-hc and --with-hc-pkg without giving QA
-warnings.
-
-diff -rN -u old-network-2.2.0.0/configure.ac new-network-2.2.0.0/configure.ac
---- old-network-2.2.0.0/configure.ac	2009-07-21 22:07:20.000000000 +0200
-+++ new-network-2.2.0.0/configure.ac	2009-07-21 22:07:20.000000000 +0200
-@@ -14,6 +14,10 @@
- 
- AC_C_CONST
- 
-+dnl * dummy options to eat --with-hc= and --with-hc-pkg= flags
-+AC_ARG_WITH([hc], [(dummy option)], [])
-+AC_ARG_WITH([hc-pkg], [(dummy option)], [])
-+
- dnl ** check for specific header (.h) files that we are interested in
- AC_CHECK_HEADERS([fcntl.h limits.h stdlib.h sys/types.h unistd.h winsock.h])
- AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h netinet/tcp.h sys/socket.h sys/uio.h sys/un.h])

diff --git a/dev-haskell/network/files/network-2.3.0.14-ghc-7.5.patch b/dev-haskell/network/files/network-2.3.0.14-ghc-7.5.patch
deleted file mode 100644
index e6a0153..0000000
--- a/dev-haskell/network/files/network-2.3.0.14-ghc-7.5.patch
+++ /dev/null
@@ -1,69 +0,0 @@
---- network-2.3.0.14-orig/network.cabal	2012-06-04 10:25:39.000000000 +1000
-+++ network-2.3.0.14/network.cabal	2012-06-27 20:21:38.271566190 +1000
-@@ -39,7 +39,7 @@
-       Network.Socket.ByteString.MsgHdr
- 
-   build-depends:
--    base >= 3 && < 4.6,
-+    base >= 3 && < 4.7,
-     bytestring < 1.0,
-     parsec >= 2.0 && < 3.2
- 
-@@ -62,11 +62,11 @@
-   type: exitcode-stdio-1.0
- 
-   build-depends:
--    base < 4.6,
--    bytestring < 0.10,
-+    base < 4.7,
-+    bytestring < 1.0,
-     HUnit < 1.3,
-     network,
--    test-framework < 0.6,
-+    test-framework < 0.7,
-     test-framework-hunit < 0.3
- 
- test-suite uri
-@@ -75,10 +75,10 @@
-   type: exitcode-stdio-1.0
- 
-   build-depends:
--    base < 4.6,
-+    base < 4.7,
-     HUnit < 1.3,
-     network,
--    test-framework < 0.6,
-+    test-framework < 0.7,
-     test-framework-hunit < 0.3
- 
- source-repository head
---- network-2.3.0.14-orig/Network/BSD.hsc	2012-06-04 10:25:39.000000000 +1000
-+++ network-2.3.0.14/Network/BSD.hsc	2012-06-28 18:07:39.287001755 +1000
-@@ -112,7 +112,9 @@
- import Foreign.Marshal.Array (allocaArray0, peekArray0)
- import Foreign.Marshal.Utils (with, fromBool)
- import Data.Typeable
-+#if !MIN_VERSION_base(4,6,0)
- import Prelude hiding (catch)
-+#endif
- import System.IO.Error (ioeSetErrorString, mkIOError)
- import System.IO.Unsafe (unsafePerformIO)
- 
---- network-2.3.0.14-orig/tests/Simple.hs	2012-06-04 10:25:39.000000000 +1000
-+++ network-2.3.0.14/tests/Simple.hs	2012-06-28 18:18:31.176027682 +1000
-@@ -1,4 +1,4 @@
--{-# LANGUAGE ScopedTypeVariables #-}
-+{-# LANGUAGE CPP, ScopedTypeVariables #-}
- {-# OPTIONS_GHC -fno-warn-unused-do-bind #-}
- 
- module Main where
-@@ -10,7 +10,9 @@
- import qualified Data.ByteString.Char8 as C
- import Network.Socket hiding (recv, recvFrom, send, sendTo)
- import Network.Socket.ByteString
-+#if !MIN_VERSION_base(4,6,0)
- import Prelude hiding (catch)
-+#endif
- import Test.Framework (Test, defaultMain, testGroup)
- import Test.Framework.Providers.HUnit (testCase)
- import Test.HUnit (Assertion, (@=?))

diff --git a/dev-haskell/network/files/network-2.4.0.1-fix-ppc64.patch b/dev-haskell/network/files/network-2.4.0.1-fix-ppc64.patch
deleted file mode 100644
index e891831..0000000
--- a/dev-haskell/network/files/network-2.4.0.1-fix-ppc64.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-commit 6bc6b666ba2a87001a825bd81088062307a51bae
-Author: Sergei Trofimovich <slyfox@gentoo.org>
-Date:   Sun Jan 13 23:50:21 2013 +0300
-
-    MsgHdr.hsc: fix field 'struct msghdr::msg_namelen' size
-    
-    msg_namelen has a 'socklen_t' type on linux (always 32 bits).
-    Using CSize there breaks 64-bit BE platforms.
-    
-      testSendManyTo: [Failed]
-           ERROR: sendmsg: invalid argument (Destination address required)
-    
-    Caught by testSendManyTo test on ppc64:
-    
-    Gentoo-bug: http://bugs.gentoo.org/436640
-    Reported-by: Anthony Basile <blueness@gentoo.org>
-    Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-
-diff --git a/Network/Socket/ByteString/MsgHdr.hsc b/Network/Socket/ByteString/MsgHdr.hsc
-index 24d7eb0..227e5ee 100644
---- a/Network/Socket/ByteString/MsgHdr.hsc
-+++ b/Network/Socket/ByteString/MsgHdr.hsc
-@@ -8,6 +8,7 @@ module Network.Socket.ByteString.MsgHdr
- #include <sys/types.h>
- #include <sys/socket.h>
- 
-+import Data.Word -- for used '#type's
- import Foreign.C.Types (CInt, CSize)
- import Foreign.Ptr (Ptr)
- import Foreign.Storable (Storable(..))
-@@ -20,7 +21,7 @@ import Network.Socket.ByteString.IOVec (IOVec)
- -- don't exist on OpenSolaris.
- data MsgHdr = MsgHdr
-     { msgName    :: Ptr SockAddr
--    , msgNameLen :: CSize
-+    , msgNameLen :: (#type socklen_t) {- 32 bits even on amd64 and ppc64 -}
-     , msgIov     :: Ptr IOVec
-     , msgIovLen  :: CSize
-     }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-haskell/network/files/
@ 2022-07-31 18:41 Jakov Smolić
  0 siblings, 0 replies; 2+ messages in thread
From: Jakov Smolić @ 2022-07-31 18:41 UTC (permalink / raw
  To: gentoo-commits

commit:     812e52cb381adc69d8c91dee278419fe79002ace
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sun Jul 31 10:22:08 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Jul 31 18:41:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812e52cb

dev-haskell/network: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Portage 3.0.34 / pkgdev 0.2.1 / pkgcheck 0.10.11
Closes: https://github.com/gentoo/gentoo/pull/26680
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-haskell/network/files/network-2.6.3.1-no-LDFLAGS.patch | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/dev-haskell/network/files/network-2.6.3.1-no-LDFLAGS.patch b/dev-haskell/network/files/network-2.6.3.1-no-LDFLAGS.patch
deleted file mode 100644
index eeb41c960c7b..000000000000
--- a/dev-haskell/network/files/network-2.6.3.1-no-LDFLAGS.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Don't persist LDFLAGS into package database.
-
-https://bugs.gentoo.org/609624
-diff --git a/network.buildinfo.in b/network.buildinfo.in
-index 69e63a6..2079179 100644
---- a/network.buildinfo.in
-+++ b/network.buildinfo.in
-@@ -2,3 +2,2 @@ ghc-options: -DCALLCONV=@CALLCONV@ @EXTRA_CPPFLAGS@
- ghc-prof-options: -DCALLCONV=@CALLCONV@ @EXTRA_CPPFLAGS@
--ld-options: @LDFLAGS@
- cc-options: -DCALLCONV=@CALLCONV@ @EXTRA_CPPFLAGS@


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

end of thread, other threads:[~2022-07-31 18:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-31 18:41 [gentoo-commits] repo/gentoo:master commit in: dev-haskell/network/files/ Jakov Smolić
  -- strict thread matches above, loose matches on Subject: below --
2016-08-03  7:36 Patrice Clement

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