From jonathan.plona at ipfabrics.com Fri Aug 22 15:28:30 2014 From: jonathan.plona at ipfabrics.com (Jonathan Plona) Date: Fri, 22 Aug 2014 08:28:30 -0700 Subject: [arch-haskell] Pandoc 1.13.0.1 In-Reply-To: <53F6507B.7030109@ipfabrics.com> References: <53F6507B.7030109@ipfabrics.com> Message-ID: <53F7619E.7000408@ipfabrics.com> My apologies if this is a duplicate, I'm not sure if it went through before: It looks like a new version of pandoc has been released. Any chance to get a new build in the arch-haskell repo? Thanks. From magnus at therning.org Fri Aug 22 18:20:55 2014 From: magnus at therning.org (Magnus Therning) Date: Fri, 22 Aug 2014 20:20:55 +0200 Subject: [arch-haskell] Pandoc 1.13.0.1 In-Reply-To: <53F7619E.7000408@ipfabrics.com> References: <53F6507B.7030109@ipfabrics.com> <53F7619E.7000408@ipfabrics.com> Message-ID: <20140822182055.GB26953@tatooine.lan> On Fri, Aug 22, 2014 at 08:28:30AM -0700, Jonathan Plona wrote: > My apologies if this is a duplicate, I'm not sure if it went through > before: > > It looks like a new version of pandoc has been released. Any chance > to get a new build in the arch-haskell repo? Thanks. That version was built and uploaded today. /M -- Magnus Therning OpenPGP: 0xAB4DFBA4 email: magnus at therning.org jabber: magnus at therning.org twitter: magthe http://therning.org/magnus Code as if whoever maintains your program is a violent psychopath who knows where you live. -- Anonymous -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 181 bytes Desc: not available URL: From martindemello at gmail.com Sat Aug 30 21:06:58 2014 From: martindemello at gmail.com (Martin DeMello) Date: Sat, 30 Aug 2014 14:06:58 -0700 Subject: [arch-haskell] is there some easy way to ignore all haskell- packages? Message-ID: I regularly get into version pinning conflicts with my haskell- packages. The current one has been going on for some days now: $ sudo pacman -Syu :: Synchronizing package databases... core is up to date haskell-core is up to date haskell-happstack is up to date infinality-bundle is up to date infinality-bundle-fonts is up to date extra is up to date community is up to date :: Starting full system upgrade... resolving dependencies... looking for inter-conflicts... error: failed to prepare transaction (could not satisfy dependencies) :: haskell-lens: requires haskell-aeson=0.7.0.6-9 :: haskell-lens: requires haskell-attoparsec=0.11.3.4-5 :: haskell-lens: requires haskell-bifunctors=4.1.1.1-14 :: haskell-lens: requires haskell-comonad=4.2.2-1 :: haskell-lens: requires haskell-contravariant=1.1-1 :: haskell-lens: requires haskell-free=4.9-7 :: haskell-lens: requires haskell-profunctors=4.2.0.1-1 :: haskell-lens: requires haskell-scientific=0.3.2.2-1 :: haskell-lens: requires haskell-semigroupoids=4.2-1 I don't so much mind that this is happening, as that it blocks my entire rest-of-system upgrade. Is there any easy way to recursively ignore everything that is unsatisfiable? martin -------------- next part -------------- An HTML attachment was scrubbed... URL: From archhaskell at with-h.at Sat Aug 30 23:00:21 2014 From: archhaskell at with-h.at (Dominik Peteler) Date: Sun, 31 Aug 2014 01:00:21 +0200 Subject: [arch-haskell] is there some easy way to ignore all haskell- packages? In-Reply-To: References: Message-ID: <20140830230012.GA3892@fuckup> Hello Martin, this is indeed an annoying behaviour of pacman. I use the following trick: pacman -Syu --ignore $(pacman -Qqu | grep "haskell-" | tr '\n' ',') There are probably other solutions with sed, awk, ... Cheers mmh On Sat 2014-08-30 14:06, Martin DeMello wrote: > I regularly get into version pinning conflicts with my haskell- packages. > The current one has been going on for some days now: > > $ sudo pacman -Syu > :: Synchronizing package databases... > core is up to date > haskell-core is up to date > haskell-happstack is up to date > infinality-bundle is up to date > infinality-bundle-fonts is up to date > extra is up to date > community is up to date > :: Starting full system upgrade... > resolving dependencies... > looking for inter-conflicts... > error: failed to prepare transaction (could not satisfy dependencies) > :: haskell-lens: requires haskell-aeson=0.7.0.6-9 > :: haskell-lens: requires haskell-attoparsec=0.11.3.4-5 > :: haskell-lens: requires haskell-bifunctors=4.1.1.1-14 > :: haskell-lens: requires haskell-comonad=4.2.2-1 > :: haskell-lens: requires haskell-contravariant=1.1-1 > :: haskell-lens: requires haskell-free=4.9-7 > :: haskell-lens: requires haskell-profunctors=4.2.0.1-1 > :: haskell-lens: requires haskell-scientific=0.3.2.2-1 > :: haskell-lens: requires haskell-semigroupoids=4.2-1 > > I don't so much mind that this is happening, as that it blocks my entire > rest-of-system upgrade. Is there any easy way to recursively ignore > everything that is unsatisfiable? > > martin > _______________________________________________ > arch-haskell mailing list > arch-haskell at haskell.org > http://www.haskell.org/mailman/listinfo/arch-haskell -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 819 bytes Desc: not available URL: From martindemello at gmail.com Sat Aug 30 23:57:34 2014 From: martindemello at gmail.com (Martin DeMello) Date: Sat, 30 Aug 2014 16:57:34 -0700 Subject: [arch-haskell] is there some easy way to ignore all haskell- packages? In-Reply-To: <20140830230012.GA3892@fuckup> References: <20140830230012.GA3892@fuckup> Message-ID: Neat idea; I didn't think of getting the list from pacman -Q :) Thanks! martin On Sat, Aug 30, 2014 at 4:00 PM, Dominik Peteler wrote: > Hello Martin, > > this is indeed an annoying behaviour of pacman. > I use the following trick: > > pacman -Syu --ignore $(pacman -Qqu | grep "haskell-" | tr '\n' ',') > > There are probably other solutions with sed, awk, ... > > Cheers > > mmh > > > > On Sat 2014-08-30 14:06, Martin DeMello wrote: > > I regularly get into version pinning conflicts with my haskell- packages. > > The current one has been going on for some days now: > > > > $ sudo pacman -Syu > > :: Synchronizing package databases... > > core is up to date > > haskell-core is up to date > > haskell-happstack is up to date > > infinality-bundle is up to date > > infinality-bundle-fonts is up to date > > extra is up to date > > community is up to date > > :: Starting full system upgrade... > > resolving dependencies... > > looking for inter-conflicts... > > error: failed to prepare transaction (could not satisfy dependencies) > > :: haskell-lens: requires haskell-aeson=0.7.0.6-9 > > :: haskell-lens: requires haskell-attoparsec=0.11.3.4-5 > > :: haskell-lens: requires haskell-bifunctors=4.1.1.1-14 > > :: haskell-lens: requires haskell-comonad=4.2.2-1 > > :: haskell-lens: requires haskell-contravariant=1.1-1 > > :: haskell-lens: requires haskell-free=4.9-7 > > :: haskell-lens: requires haskell-profunctors=4.2.0.1-1 > > :: haskell-lens: requires haskell-scientific=0.3.2.2-1 > > :: haskell-lens: requires haskell-semigroupoids=4.2-1 > > > > I don't so much mind that this is happening, as that it blocks my entire > > rest-of-system upgrade. Is there any easy way to recursively ignore > > everything that is unsatisfiable? > > > > martin > > > _______________________________________________ > > arch-haskell mailing list > > arch-haskell at haskell.org > > http://www.haskell.org/mailman/listinfo/arch-haskell > > > _______________________________________________ > arch-haskell mailing list > arch-haskell at haskell.org > http://www.haskell.org/mailman/listinfo/arch-haskell > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lilydjwg at gmail.com Sun Aug 31 09:18:59 2014 From: lilydjwg at gmail.com (lilydjwg) Date: Sun, 31 Aug 2014 17:18:59 +0800 Subject: [arch-haskell] is there some easy way to ignore all haskell- packages? In-Reply-To: <20140830230012.GA3892@fuckup> References: <20140830230012.GA3892@fuckup> Message-ID: <20140831091859.GA14132@lilyforest> On Sun, Aug 31, 2014 at 01:00:21AM +0200, Dominik Peteler wrote: > Hello Martin, > > this is indeed an annoying behaviour of pacman. > I use the following trick: > > pacman -Syu --ignore $(pacman -Qqu | grep "haskell-" | tr '\n' ',') > > There are probably other solutions with sed, awk, ... You can just use this (note the quote): pacman -Syu --ignore 'haskell-*' -- Best regards, lilydjwg From magnus at therning.org Sun Aug 31 21:33:28 2014 From: magnus at therning.org (Magnus Therning) Date: Sun, 31 Aug 2014 23:33:28 +0200 Subject: [arch-haskell] is there some easy way to ignore all haskell- packages? In-Reply-To: <20140831091859.GA14132@lilyforest> References: <20140830230012.GA3892@fuckup> <20140831091859.GA14132@lilyforest> Message-ID: <20140831213328.GB30968@tatooine.lan> On Sun, Aug 31, 2014 at 05:18:59PM +0800, lilydjwg wrote: > On Sun, Aug 31, 2014 at 01:00:21AM +0200, Dominik Peteler wrote: > > Hello Martin, > > > > this is indeed an annoying behaviour of pacman. > > I use the following trick: > > > > pacman -Syu --ignore $(pacman -Qqu | grep "haskell-" | tr '\n' ',') > > > > There are probably other solutions with sed, awk, ... > > You can just use this (note the quote): > > pacman -Syu --ignore 'haskell-*' I suspect you can avoid the quotes by using pacman -Syu --ignore haskell-\* /M -- Magnus Therning OpenPGP: 0xAB4DFBA4 email: magnus at therning.org jabber: magnus at therning.org twitter: magthe http://therning.org/magnus Any fool can write code that a computer can understand. Good programmers write code that humans can understand. -- Martin Fowler -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 181 bytes Desc: not available URL: