From 2512faa12f58e69a2f3e27e13e10fd0aef3ab384 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 29 Aug 2022 04:45:37 +0100 Subject: gentoo auto-resync : 29:08:2022 - 04:45:37 --- net-mail/Manifest.gz | Bin 14583 -> 14575 bytes net-mail/list-remote-forwards/Manifest | 5 +-- .../files/list-remote-forwards-0.0.1-ghc84.patch | 26 ------------ .../list-remote-forwards-0.0.1-r2.ebuild | 47 --------------------- .../list-remote-forwards-0.0.3.ebuild | 41 ++++++++++++++++++ net-mail/mailbox-count/Manifest | 4 +- net-mail/mailbox-count/mailbox-count-0.0.5.ebuild | 38 ----------------- net-mail/mailbox-count/mailbox-count-0.0.6.ebuild | 38 +++++++++++++++++ 8 files changed, 83 insertions(+), 116 deletions(-) delete mode 100644 net-mail/list-remote-forwards/files/list-remote-forwards-0.0.1-ghc84.patch delete mode 100644 net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r2.ebuild create mode 100644 net-mail/list-remote-forwards/list-remote-forwards-0.0.3.ebuild delete mode 100644 net-mail/mailbox-count/mailbox-count-0.0.5.ebuild create mode 100644 net-mail/mailbox-count/mailbox-count-0.0.6.ebuild (limited to 'net-mail') diff --git a/net-mail/Manifest.gz b/net-mail/Manifest.gz index d9a4c4a2c842..277c2c6382ad 100644 Binary files a/net-mail/Manifest.gz and b/net-mail/Manifest.gz differ diff --git a/net-mail/list-remote-forwards/Manifest b/net-mail/list-remote-forwards/Manifest index 47f8daf228a5..1ddff1d18bde 100644 --- a/net-mail/list-remote-forwards/Manifest +++ b/net-mail/list-remote-forwards/Manifest @@ -1,4 +1,3 @@ -AUX list-remote-forwards-0.0.1-ghc84.patch 978 BLAKE2B 295f2ca369794739da3ff45bf6a5ca57b102942c93b8dd8c4e99d9a70906a469c761aa0fdbe50311d6e56d5bb0725610dd473c49152f4cdd3462cd2da2a8418d SHA512 4f9addb938b14590d98e4e17e6764987ebe4192d7492de1ce2c917881ec20ecd15898988c223dac695ed8f71d7b2fe74f8b798a52960f215fd4c9c9a02c9a72e -DIST list-remote-forwards-0.0.1.tar.gz 25869 BLAKE2B decfd8b5d4fcbd5e278f9c58f79687aa33cc91d4d4907ff7a29fe6b745ff49c073e3beaf2876ec071f4ed1099b4575cacb8194049add04c0aa8ebeff3338293e SHA512 b6d8c0e8a72e3dcbc62c00b291da99da6c37c853997c367eb60db128db327c1f862e9dc6d9ad4028aad2e0cec9acc96add28d85d4b22508e1fd00a65bb9b0317 -EBUILD list-remote-forwards-0.0.1-r2.ebuild 1098 BLAKE2B e378f6538393fcd77aa3789734f8ce4eb8d8545cdd246f06b6a7ebad4a9d928616d0cafff2b7fb8abe790d42773218397be7293bcf331fce2d1dbebec0a273fe SHA512 4f580e297e26d3f0f4e984e822d0447d53e5c4c071961165f53b4d47a6f4bc730670c808961329aaaa129c2eb8fd7a4256c9b12777604729998fa7f622793f48 +DIST list-remote-forwards-0.0.3.tar.gz 26495 BLAKE2B 7bc0a02133dfabe0f27c7ed861bbb994757eadb4d55d369fdd143da7ef03fcadf7d1f11bb034fc8ade7dc879d4b615a3ae5ed44a1ed5af3e10f1aaffcd79210a SHA512 833bb0a3fda76b43d0004d7906c54aa21920f1db8ff50fc2c0d1da6f98dd49310041fa7101050108cb6cb803084fff0673316a1ce86224d35ba09e8060864a9d +EBUILD list-remote-forwards-0.0.3.ebuild 998 BLAKE2B f096347ce8d137ac047147a1b3f80b00af29001a83181082f937d24a2d05a66ed3ad752b0e8ac285a80124708149185ddc6aed17f33831dfdb6afa0441145f25 SHA512 40497b089aa21b2129c320d27ead8aa26429fdb51b4f8b06c619c65739e95abfe82c2c28430fc543cb46b7af8b2bc2c89f64357c044d0798a1322f8da34172ee MISC metadata.xml 4176 BLAKE2B ebc5feaa3fbc0cf1551aa2e80bb4e971918181f16e8b365c99297789d41b6dec7f138d2ccfb7ee69972e026299ad5b2e554ce3e136232af0f5eb4c46790bfb2e SHA512 277cc5c1b55a8890e26adf5762d4cd522dbbe81c9eaa0eb6a8126e2ddbbf3919bbac703e22fab0f924c08fd656d23dda4a74c48db26323552b1cc1595b6062af diff --git a/net-mail/list-remote-forwards/files/list-remote-forwards-0.0.1-ghc84.patch b/net-mail/list-remote-forwards/files/list-remote-forwards-0.0.1-ghc84.patch deleted file mode 100644 index bf21a42d5973..000000000000 --- a/net-mail/list-remote-forwards/files/list-remote-forwards-0.0.1-ghc84.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/src/OptionalConfiguration.hs -+++ b/src/OptionalConfiguration.hs -@@ -31,2 +31,3 @@ import System.IO.Error ( catchIOError ) - import MxList ( MxList(..) ) -+import qualified Data.Semigroup as S - -@@ -59,2 +60,19 @@ merge_maybes (Just _) (Just y) = Just y - -+instance S.Semigroup OptionalConfiguration where -+ cfg1 <> cfg2 = -+ OptionalConfiguration -+ (merge_maybes (database cfg1) (database cfg2)) -+ (merge_maybes (domain_query cfg1) (domain_query cfg2)) -+ all_excluded_mx -+ (merge_maybes (forward_query cfg1) (forward_query cfg2)) -+ (merge_maybes (host cfg1) (host cfg2)) -+ (merge_maybes (password cfg1) (password cfg2)) -+ (merge_maybes (port cfg1) (port cfg2)) -+ (merge_maybes (username cfg1) (username cfg2)) -+ where -+ -- Use only the latter exclude_mx if there are any. -+ all_excluded_mx = -+ exclude_mx $ if (null (get_mxs $ exclude_mx cfg2)) -+ then cfg1 -+ else cfg2 - diff --git a/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r2.ebuild b/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r2.ebuild deleted file mode 100644 index 9eaad075cb50..000000000000 --- a/net-mail/list-remote-forwards/list-remote-forwards-0.0.1-r2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -# ebuild generated by hackport 0.4.4 - -CABAL_FEATURES="test-suite" -inherit haskell-cabal - -DESCRIPTION="List all remote forwards for mail accounts stored in a database" -HOMEPAGE="https://hackage.haskell.org/package/list-remote-forwards" -SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RESTRICT=test # Ambiguous packages: dns-3.0.2 resolv-0.1.1.1 - -RDEPEND="" -DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.16.0 - >=dev-haskell/cmdargs-0.10 - >=dev-haskell/configurator-0.2 - >=dev-haskell/dns-1.4 - >=dev-haskell/hdbc-2.4 - >=dev-haskell/hdbc-postgresql-2.3 - >=dev-haskell/hdbc-sqlite3-2.3 - >=dev-haskell/missingh-1.2 - >=dev-haskell/tasty-0.8 - >=dev-haskell/tasty-hunit-0.8 - >=dev-haskell/tasty-quickcheck-0.8 - >=dev-lang/ghc-7.6.1 - test? ( >=dev-haskell/doctest-0.9 - >=dev-haskell/filemanip-0.3.6 ) -" - -PATCHES=( - "${FILESDIR}"/${P}-ghc84.patch -) - -src_install() { - haskell-cabal_src_install - doman "${S}/doc/man1/${PN}.1" -} diff --git a/net-mail/list-remote-forwards/list-remote-forwards-0.0.3.ebuild b/net-mail/list-remote-forwards/list-remote-forwards-0.0.3.ebuild new file mode 100644 index 000000000000..3f6ac736d824 --- /dev/null +++ b/net-mail/list-remote-forwards/list-remote-forwards-0.0.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# ebuild generated by hackport 0.4.4 + +CABAL_FEATURES="test-suite" +inherit haskell-cabal + +DESCRIPTION="List all remote forwards for mail accounts stored in a database" +HOMEPAGE="https://hackage.haskell.org/package/list-remote-forwards" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-3.0.0 + >=dev-haskell/cmdargs-0.10 + >=dev-haskell/configurator-0.2 + >=dev-haskell/dns-1.4 + >=dev-haskell/hdbc-2.4 + >=dev-haskell/hdbc-postgresql-2.3 + >=dev-haskell/hdbc-sqlite3-2.3 + >=dev-haskell/missingh-1.2 + >=dev-haskell/tasty-0.8 + >=dev-haskell/tasty-hunit-0.8 + >=dev-haskell/tasty-quickcheck-0.8 + >=dev-lang/ghc-9.0.0 + test? ( >=dev-haskell/doctest-0.9 + >=dev-haskell/filemanip-0.3.6 ) +" + +src_install() { + haskell-cabal_src_install + doman "${S}/doc/man1/${PN}.1" +} diff --git a/net-mail/mailbox-count/Manifest b/net-mail/mailbox-count/Manifest index 6666a58cc4bd..9f60b2e45870 100644 --- a/net-mail/mailbox-count/Manifest +++ b/net-mail/mailbox-count/Manifest @@ -1,3 +1,3 @@ -DIST mailbox-count-0.0.5.tar.gz 21476 BLAKE2B 3ad79233ae1dbb202bc46c60e8a7d13d5d6820f74e090056f37eacb7b37c2f18498f599603d1ee32a7ac43b5f9931f26aba1780ff5160333c66129889ac6812b SHA512 3c63bd9021f64ba745572907eae8bc25e9ddc7d443d5ab84626dd90f95af71267cbffb9d371f0e308988fbdf14f3a126d93a727d55bf9ee3e02037e687267d26 -EBUILD mailbox-count-0.0.5.ebuild 890 BLAKE2B 37b6d4023299f9ae3dd2e23851dab6b4949a6c412709e729f726ecca622a09c2d547eb833e5a5a6b117f9aed674397b827ec5451d5e95d4bf8550c25e417eaeb SHA512 b5f5012af1f1008feafa4daa5a658822387a32f86e3835dc138dea6f7e0f6525acf729573e25809cf5618d5914a4448364205303aa53fe616bb1efb8d10928eb +DIST mailbox-count-0.0.6.tar.gz 21176 BLAKE2B 655815d463e14ee8c32cc955819d6b95d5359a644fb09433cb8ab303f07a98ce33b4c048be724253f30d8855a921abb5a7a29e62391ef8a1a9288e2f430710fc SHA512 285aeeaa8cfaade6c91a850154772e47aa212f73d1206c3c8262d08a15b95f15ce812152ca5acf79f5390f476ed6af52a73e03af4ab297e1268044a4a9ece6b5 +EBUILD mailbox-count-0.0.6.ebuild 896 BLAKE2B fdc716e5ccff3fe8f2304e476245b0e32786c465de18539a120dd80e82a690b83b79639192722ab307d82e2e6cfc5200d4e5f32f8d9febddf4300967d4499c3e SHA512 888a3f93dcd799a5b0df5870c90c9f6b4403ce0bf81a72ecc95a7b5fb871a9ba5044264dab8effd0f10644431422c43b2828712c42ff03c11a480291ecb9496e MISC metadata.xml 3289 BLAKE2B 5d1dec2ad9a593e25c496b66ae3c611c66aea004c0a1b235d6ef8cf16f91f2f8c55b5d7e901e8fe3f06b6e2b0b26fe91b51b3abfb5bdfff4766b620e3cd05fcb SHA512 fbd3e2e45ca48318b17b26acd9564d9e562a6c007413d9740226b7ca27152377c54a943f4d2be02fb757744e684f7798a1c6ba04cc00244dafa18aa0f6e09593 diff --git a/net-mail/mailbox-count/mailbox-count-0.0.5.ebuild b/net-mail/mailbox-count/mailbox-count-0.0.5.ebuild deleted file mode 100644 index bcdc6ed7c3f7..000000000000 --- a/net-mail/mailbox-count/mailbox-count-0.0.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CABAL_FEATURES="test-suite" -inherit haskell-cabal - -DESCRIPTION="Count mailboxes in a SQL database" -HOMEPAGE="https://hackage.haskell.org/package/mailbox-count" -SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" - -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - >=dev-haskell/cmdargs-0.10 - >=dev-haskell/configurator-0.2 - >=dev-haskell/hdbc-2.4 - >=dev-haskell/hdbc-postgresql-2.3 - >=dev-haskell/hdbc-sqlite3-2.3 - >=dev-haskell/missingh-1.2 - >=dev-haskell/tasty-0.8 - >=dev-haskell/tasty-hunit-0.8 - >=dev-lang/ghc-8.0 -" -DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.16.0 - test? ( >=dev-haskell/doctest-0.9 - >=dev-haskell/filemanip-0.3.6 )" - -src_install() { - haskell-cabal_src_install - dodoc "${S}/doc/${PN}rc.example" - doman "${S}/doc/man1/${PN}.1" -} diff --git a/net-mail/mailbox-count/mailbox-count-0.0.6.ebuild b/net-mail/mailbox-count/mailbox-count-0.0.6.ebuild new file mode 100644 index 000000000000..77d6b2bd5bdf --- /dev/null +++ b/net-mail/mailbox-count/mailbox-count-0.0.6.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CABAL_FEATURES="test-suite" +inherit haskell-cabal + +DESCRIPTION="Count mailboxes in a SQL database" +HOMEPAGE="https://hackage.haskell.org/package/mailbox-count" +SRC_URI="https://hackage.haskell.org/package/${P}/${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-haskell/cmdargs-0.10 + >=dev-haskell/configurator-0.2 + >=dev-haskell/hdbc-2.4 + >=dev-haskell/hdbc-postgresql-2.3 + >=dev-haskell/hdbc-sqlite3-2.3 + >=dev-haskell/missingh-1.2 + >=dev-haskell/tasty-0.8 + >=dev-haskell/tasty-hunit-0.8 + >=dev-lang/ghc-9.0 +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-3.0.0 + test? ( >=dev-haskell/doctest-0.9 + >=dev-haskell/filemanip-0.3.6 )" + +src_install() { + haskell-cabal_src_install + dodoc "${S}/doc/${PN}rc.example" + doman "${S}/doc/man1/${PN}.1" +} -- cgit v1.2.3