Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ghc-Diff - A O(ND) diff algorithm in Haskell
Alias: ghc-Diff
https://bugzilla.redhat.com/show_bug.cgi?id=664151
Summary: Review Request: ghc-Diff - A O(ND) diff algorithm in
Haskell
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: low
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: lakshminaras2002(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com, fedora-package-review(a)redhat.com,
fedora-haskell-list(a)redhat.com
Estimated Hours: 0.0
Classification: Fedora
SPEC file URL:
https://sites.google.com/site/lakshminaras2002/home/ghc-Diff.spec?attredire…
SRPM file URL:
https://sites.google.com/site/lakshminaras2002/home/ghc-Diff-0.1.2-1.fc14.s…
rpmlint output:
rpmlint -i ghc-Diff.spec ghc-Diff*fc15*.rpm
ghc-Diff-prof.i686: E: devel-dependency ghc-Diff-devel
Your package has a dependency on a devel package but it's not a devel package
itself.
ghc-Diff-prof.i686: W: no-documentation
The package contains no documentation (README, doc, etc). You have to include
documentation files.
ghc-Diff-prof.i686: W: devel-file-in-non-devel-package
/usr/lib/ghc-7.0.1/Diff-0.1.2/libHSDiff-0.1.2_p.a
A development file (usually source code) is located in a non-devel package. If
you want to include source code in your package, be sure to create a
development package.
4 packages and 1 specfiles checked; 1 errors, 2 warnings.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ghc-persistent - Type-safe, non-relational, multi-backend persistence
https://bugzilla.redhat.com/show_bug.cgi?id=630297
Summary: Review Request: ghc-persistent - Type-safe,
non-relational, multi-backend persistence
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: mathstuf(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com, fedora-package-review(a)redhat.com
Estimated Hours: 0.0
Classification: Fedora
Spec URL: http://benboeckel.net/packaging/ghc-persistent/ghc-persistent.spec
SRPM URL:
http://benboeckel.net/packaging/ghc-persistent/ghc-persistent-0.2.0.2-1.fc1…
Description:
This library provides just the general interface and helper
functions. You must use a specific backend in order to make
this useful.
% lintmock fedora-14-x86_64-bb
ghc-persistent.src: W: spelling-error Summary(en_US) multi -> mulch, mufti
ghc-persistent.src: W: spelling-error Summary(en_US) backend -> backed,
backbend, back end
ghc-persistent.src: W: spelling-error %description -l en_US backend -> backed,
backbend, back end
ghc-persistent.src: W: strange-permission ghc-persistent.spec 0640L
ghc-persistent.src: W: strange-permission persistent-0.2.0.2.tar.gz 0640L
ghc-persistent.x86_64: W: spelling-error Summary(en_US) multi -> mulch, mufti
ghc-persistent.x86_64: W: spelling-error Summary(en_US) backend -> backed,
backbend, back end
ghc-persistent.x86_64: W: spelling-error %description -l en_US backend ->
backed, backbend, back end
ghc-persistent-devel.x86_64: W: spelling-error Summary(en_US) multi -> mulch,
mufti
ghc-persistent-devel.x86_64: W: spelling-error Summary(en_US) backend ->
backed, backbend, back end
ghc-persistent-devel.x86_64: W: spelling-error %description -l en_US backend ->
backed, backbend, back end
ghc-persistent-prof.x86_64: E: devel-dependency ghc-persistent-devel
ghc-persistent-prof.x86_64: W: spelling-error Summary(en_US) multi -> mulch,
mufti
ghc-persistent-prof.x86_64: W: spelling-error Summary(en_US) backend -> backed,
backbend, back end
ghc-persistent-prof.x86_64: W: spelling-error %description -l en_US backend ->
backed, backbend, back end
ghc-persistent-prof.x86_64: W: no-documentation
ghc-persistent-prof.x86_64: W: devel-file-in-non-devel-package
/usr/lib64/ghc-6.12.3/persistent-0.2.0.2/libHSpersistent-0.2.0.2_p.a
4 packages and 0 specfiles checked; 1 errors, 16 warnings.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ghc-neither - Either with monad and applicative instances
https://bugzilla.redhat.com/show_bug.cgi?id=630283
Summary: Review Request: ghc-neither - Either with monad and
applicative instances
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: mathstuf(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com, fedora-package-review(a)redhat.com
Estimated Hours: 0.0
Classification: Fedora
Spec URL: http://benboeckel.net/packaging/ghc-neither/ghc-neither.spec
SRPM URL:
http://benboeckel.net/packaging/ghc-neither/ghc-neither-0.0.2-1.fc14.src.rpm
Description:
The standard Either datatype suffers from a lack of monad and
applicative instances. To make matters worse, the mtl and
transformers packages provide orphan instances which conflict
with each other, as well as defining a transformer version
which has an usually unnecessary superclass constraint.
Besides these annoyances, there is another issue: there exist
two reasonable definitions of the Applicative instance for
Either: one the holds onto only the first Left value, or one
that appends all Left values together via a Monoid instance.
The former is compatible with the monad instance, while the
latter is not.
This package defines three datatypes, some helpers functions
and instances. The data types are AEither, MEither and
MEitherT. AEither provides an Applicative instance which
appends Left values, MEither provides the monadic definition,
and MEitherT is a monad transformer.
% lintmock fedora-14-x86_64-bb
ghc-neither.src: W: spelling-error %description -l en_US datatype -> data type,
data-type, database
ghc-neither.src: W: spelling-error %description -l en_US mtl -> mt, ml, mel
ghc-neither.src: W: spelling-error %description -l en_US datatypes -> data
types, data-types, databases
ghc-neither.src: W: spelling-error %description -l en_US AEither -> A Either,
Aether, Either
ghc-neither.src: W: strange-permission neither-0.0.2.tar.gz 0640L
ghc-neither.src: W: strange-permission ghc-neither.spec 0640L
ghc-neither.x86_64: W: spelling-error %description -l en_US datatype -> data
type, data-type, database
ghc-neither.x86_64: W: spelling-error %description -l en_US mtl -> mt, ml, mel
ghc-neither.x86_64: W: spelling-error %description -l en_US datatypes -> data
types, data-types, databases
ghc-neither.x86_64: W: spelling-error %description -l en_US AEither -> A
Either, Aether, Either
ghc-neither-devel.x86_64: W: spelling-error %description -l en_US datatype ->
data type, data-type, database
ghc-neither-devel.x86_64: W: spelling-error %description -l en_US mtl -> mt,
ml, mel
ghc-neither-devel.x86_64: W: spelling-error %description -l en_US datatypes ->
data types, data-types, databases
ghc-neither-devel.x86_64: W: spelling-error %description -l en_US AEither -> A
Either, Aether, Either
ghc-neither-prof.x86_64: E: devel-dependency ghc-neither-devel
ghc-neither-prof.x86_64: W: spelling-error %description -l en_US datatype ->
data type, data-type, database
ghc-neither-prof.x86_64: W: spelling-error %description -l en_US mtl -> mt, ml,
mel
ghc-neither-prof.x86_64: W: spelling-error %description -l en_US datatypes ->
data types, data-types, databases
ghc-neither-prof.x86_64: W: spelling-error %description -l en_US AEither -> A
Either, Aether, Either
ghc-neither-prof.x86_64: W: no-documentation
ghc-neither-prof.x86_64: W: devel-file-in-non-devel-package
/usr/lib64/ghc-6.12.3/neither-0.0.2/libHSneither-0.0.2_p.a
4 packages and 0 specfiles checked; 1 errors, 20 warnings.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ghc-snap-core - Snap web framework core library
https://bugzilla.redhat.com/show_bug.cgi?id=736577
Summary: Review Request: ghc-snap-core - Snap web framework
core library
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: petersen(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Spec URL:
http://petersen.fedorapeople.org/reviews/ghc-snap-core/ghc-snap-core.spec
SRPM URL:
http://petersen.fedorapeople.org/reviews/ghc-snap-core/ghc-snap-core-0.5.3.…
Description:
Core definitions and types for the Snap web framework
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ghc-warp - Fast webserver library for WAI apps
https://bugzilla.redhat.com/show_bug.cgi?id=758966
Summary: Review Request: ghc-warp - Fast webserver library for
WAI apps
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: petersen(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Spec URL: http://petersen.fedorapeople.org/reviews/ghc-warp/ghc-warp.spec
SRPM URL:
http://petersen.fedorapeople.org/reviews/ghc-warp/ghc-warp-0.4.6.1-1.fc16.s…
Description:
Warp is a highly performant web server library for Haskell.
It is used by Yesod, Mighttpd and some other apps and frameworks.
http://packdeps.haskellers.com/reverse/warp
There have been performance benchmarks with ghc7 on par with nginx
or even better using when using pre-fork concurrency for example.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: ibus-european-table - Predictive text for european languages
https://bugzilla.redhat.com/show_bug.cgi?id=761474
Summary: Review Request: ibus-european-table - Predictive text
for european languages
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: apatil(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Spec
URL:https://github.com/gnuman/fedora_package/blob/master/ibus-european-tabl…
SRPM URL:
https://github.com/gnuman/fedora_package/blob/master/ibus-european-table-1.…
Description:
The ibus-european-table predict the text so that typing makes easy for
user
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: english-typing booster - typing booster for english language
https://bugzilla.redhat.com/show_bug.cgi?id=769173
Summary: Review Request: english-typing booster - typing
booster for english language
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: apatil(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Spec URL:
http://git.fedorahosted.org/git?p=english-typing-booster.git;a=blob;f=relea…
SRPM URL:
http://git.fedorahosted.org/git?p=english-typing-booster.git;a=blob;f=relea…
Description:
Predictive text for english language
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: beefy-miracle-backgrounds - Beefy Miracle desktop backgrounds
https://bugzilla.redhat.com/show_bug.cgi?id=786594
Summary: Review Request: beefy-miracle-backgrounds - Beefy
Miracle desktop backgrounds
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: martin.sourada(a)gmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Spec URL:
http://mso.fedorapeople.org/packages/SPECS/beefy-miracle-backgrounds.spec
SRPM URL:
http://mso.fedorapeople.org/packages/SRPMS/beefy-miracle-backgrounds-16.91.…
Description: This package contains the desktop backgrounds for the Beefy
Miracle theme.
Additional info: spec reused from previous releases, dangling symlinks are OK.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Review Request: <main package name here> - <short summary here>
https://bugzilla.redhat.com/show_bug.cgi?id=766622
Summary: Review Request: <main package name here> - <short
summary here>
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: medium
Priority: medium
Component: Package Review
AssignedTo: nobody(a)fedoraproject.org
ReportedBy: Laurence.Field(a)cern.ch
QAContact: extras-qa(a)fedoraproject.org
CC: notting(a)redhat.com,
package-review(a)lists.fedoraproject.org
Classification: Fedora
Story Points: ---
Type: ---
Regression: ---
Mount Type: ---
Documentation: ---
Spec URL: http://lfield.web.cern.ch/lfield/fedora/perl-Authen-Credential.spec
SRPM URL:
http://lfield.web.cern.ch/lfield/fedora/perl-Authen-Credential-0.5-1.fc16.s…
Description: Abstraction of a credential
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.