[Bug 1519346] Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346



--- Comment #5 from Miro Hrončok  ---
Building C extensions:

[py37t]$ python3.7 -m venv __venv37__
[py37t]$ . __venv37__/bin/activate
(__venv37__) [py37t]$ pip install cython --install-option="--no-cython-compile"
...
Successfully installed cython-0.27.3
(__venv37__) [py37t]$ python setup.py develop
running develop
running egg_info
writing py37t.egg-info/PKG-INFO
writing dependency_links to py37t.egg-info/dependency_links.txt
writing top-level names to py37t.egg-info/top_level.txt
reading manifest file 'py37t.egg-info/SOURCES.txt'
writing manifest file 'py37t.egg-info/SOURCES.txt'
running build_ext
building 'py37t' extension
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1
-DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2
-fexceptions -fstack-protector-strong --param=ssp-buffer-size=4
-grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64
-mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic
-D_GNU_SOURCE -fPIC -fwrapv -flto -fuse-linker-plugin -ffat-lto-objects
-flto-partition=none -fPIC -I/home/churchyard/tmp/py37t/__venv37__/include
-I/usr/include/python3.7m -c py37t.c -o build/temp.linux-x86_64-3.7/py37t.o
creating build/lib.linux-x86_64-3.7
gcc -pthread -shared -Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld
-g -flto -fuse-linker-plugin -ffat-lto-objects -flto-partition=none
build/temp.linux-x86_64-3.7/py37t.o -L/usr/lib64 -lpython3.7m -o
build/lib.linux-x86_64-3.7/py37t.cpython-37m-x86_64-linux-gnu.so
copying build/lib.linux-x86_64-3.7/py37t.cpython-37m-x86_64-linux-gnu.so -> 
Creating
/home/churchyard/tmp/py37t/__venv37__/lib/python3.7/site-packages/py37t.egg-link
(link to .)
Adding py37t 0.0.0 to easy-install.pth file

Installed /home/churchyard/tmp/py37t
Processing dependencies for py37t==0.0.0
Finished processing dependencies for py37t==0.0.0
(__venv37__) [py37t]$ python
Python 3.7.0a2 (default, Dec  1 2017, 08:47:44) 
[GCC 7.2.1 20170915 (Red Hat 7.2.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import py37t
>>> py37t.py37t()
37
>>> 
(__venv37__) [py37t]$ cat setup.py 
from setuptools import setup
from Cython.Build import cythonize

setup(
name='py37t',
ext_modules=cythonize('py37t.pyx', language_level=3),
)
(__venv37__) [py37t]$ cat py37t.pyx 
cpdef int py37t():
return 37

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519346] Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346



--- Comment #4 from Miro Hrončok  ---
The second error only happens in systemd-nspawn mocks.

https://bugs.python.org/issue31132

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519346] Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346



--- Comment #3 from Miro Hrončok  ---
Thanks. Will try to build C extension before I ship it.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519346] Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346



--- Comment #2 from Zbigniew Jędrzejewski-Szmek  ---
I fired off a build in mock, and it failed with the following:

test_no_messages_in_queue_after_stop (test.test_logging.QueueListenerTest) ...
--- Logging error ---
Traceback (most recent call last):
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/smtplib.py", line 387, in
getreply
line = self.file.readline(_MAXLINE + 1)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/socket.py", line 586, in
readinto
return self._sock.recv_into(b)
socket.timeout: timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/logging/handlers.py", line
1007, in emit
smtp = smtplib.SMTP(self.mailhost, port, timeout=self.timeout)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/smtplib.py", line 251, in
__init__
(code, msg) = self.connect(host, port)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/smtplib.py", line 338, in
connect
(code, msg) = self.getreply()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/smtplib.py", line 391, in
getreply
+ str(e))
smtplib.SMTPServerDisconnected: Connection unexpectedly closed: timed out
Call stack:
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/runpy.py", line 193, in
_run_module_as_main
"__main__", mod_spec)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/runpy.py", line 85, in
_run_code
exec(code, run_globals)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/regrtest.py", line 50, in

_main()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/regrtest.py", line 46, in
_main
main()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/main.py",
line 585, in main
Regrtest().main(tests=tests, **kwargs)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/main.py",
line 510, in main
self._main(tests, kwargs)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/main.py",
line 540, in _main
self.rerun_failed_tests()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/main.py",
line 291, in rerun_failed_tests
ok = runtest(self.ns, test)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/runtest.py",
line 140, in runtest
result = runtest_inner(ns, test, display_failure=not ns.verbose)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/libregrtest/runtest.py",
line 176, in runtest_inner
test_runner()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/support/__init__.py",
line 1593, in inner
return func(*args, **kwds)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/test_logging.py", line
4505, in test_main
support.run_unittest(*tests)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/support/__init__.py",
line 1936, in run_unittest
_run_suite(suite)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/support/__init__.py",
line 1892, in _run_suite
result = runner.run(suite)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/runner.py", line 176,
in run
test(result)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/suite.py", line 84,
in __call__
return self.run(*args, **kwds)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/suite.py", line 122,
in run
test(result)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/suite.py", line 84,
in __call__
return self.run(*args, **kwds)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/suite.py", line 122,
in run
test(result)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/case.py", line 680,
in __call__
return self.run(*args, **kwds)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/unittest/case.py", line 632,
in run
testMethod()
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/test_logging.py", line
995, in test_basic
h.handle(r)
Message: 'Hello ✓'
Arguments: ()
test test_logging failed
ok

==
FAIL: test_basic (test.test_logging.SMTPHandlerTest)
--
Traceback (most recent call last):
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/test_logging.py", line
998, in test_basic
self.assertTrue(self.handled.is_set())
AssertionError: False is not true

--
Ran 172 tests in 33.013s

==
FAIL: test_prlimit (test.test_resource.ResourceTest)
--
Traceback (most recent call last):
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/support/__init__.py",
line 553, in wrapper
return func(*args, **kw)
  File "/builddir/build/BUILD/Python-3.7.0a2/Lib/test/test_resource.py", line
153, in test_prlimit
1, resource.RLIMIT_AS)

[Bug 1519081] Review Request: scribus-generator - Open source high-quality PDF template and mail-merge alternative

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519081



--- Comment #5 from Luya Tshimbalanga  ---
Here is the updated files with suggested fixes:

Spec URL: https://luya.fedorapeople.org/packages/SPECS/scribus-generator.spec
SRPM URL:
https://luya.fedorapeople.org/packages/SRPMS/scribus-generator-2.5-2.fc27.src.rpm

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1468995] Review Request: python-geopandas - Geographic pandas extensions

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1468995



--- Comment #7 from Elliott Sales de Andrade  ---
I've opened a PR on Pagure with the patch:
https://src.fedoraproject.org/rpms/spatialindex/pull-request/1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519607] Review Request: gap-pkg-nautytracesinterface - GAP interface to nauty and Traces

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519607

Luya Tshimbalanga  changed:

   What|Removed |Added

  Flags||fedora-review?



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519607] Review Request: gap-pkg-nautytracesinterface - GAP interface to nauty and Traces

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519607

Luya Tshimbalanga  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||l...@fedoraproject.org
   Assignee|nob...@fedoraproject.org|l...@fedoraproject.org



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514100] Review Request: python-logzero - Robust and effective logging for Python 2 and 3

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514100



--- Comment #8 from Fedora Update System  ---
python-logzero-1.3.1-1.fc26 has been pushed to the Fedora 26 stable repository.
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519081] Review Request: scribus-generator - Open source high-quality PDF template and mail-merge alternative

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519081



--- Comment #4 from Jerry James  ---
Package Review
==

Legend:
[x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated
[ ] = Manual review needed


Issues:
===
- See Dan's remarks in comment 1.

- The Source0 URL does not work.  This one does:
 
https://github.com/berteh/ScribusGenerator/archive/%{version}/ScribusGenerator-%{version}.tar.gz

- The /usr/bin/env lines must not be changed to point to /usr/bin/python, but
  rather to /usr/bin/python2 or /usr/bin/python3.  See
  https://fedoraproject.org/wiki/Packaging:Python#Multiple_Python_Runtimes

- This package should BuildRequires: python2-devel (or python3-devel) to ensure
  that python is available to byte-compile the files.  See
  https://fedoraproject.org/wiki/Packaging:Python#Dependencies

- The three python files have shebangs, but are not executable.  If they should
  be executable, add the executable bit with chmod.  If they should not be
  executable, remove the shebangs.  See
  https://fedoraproject.org/wiki/Packaging:Guidelines#Shebang_lines

- Please fix the rpmlint warnings about wrong-script-end-of-line-encoding and
  mixed-use-of-spaces-and-tabs; see below.

= MUST items =

Generic:
[x]: Package is licensed with an open-source compatible license and meets
 other legal requirements as defined in the legal section of Packaging
 Guidelines.
[x]: License field in the package spec file matches the actual license.
[x]: Package must own all directories that it creates.
 Note: Directories without known owners: /usr/share/metainfo

 That seems odd.  Shouldn't one of the appstream packages own this
 directory?  In any case, it isn't a bug in this package.
[x]: Package contains no bundled libraries without FPC exception.
[x]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
[-]: Package contains desktop file if it is a GUI application.
[-]: Development files must be in a -devel package
[x]: Package uses nothing in %doc for runtime.
[x]: Package consistently uses macros (instead of hard-coded directory
 names).
[x]: Package is named according to the Package Naming Guidelines.
[x]: Package does not generate any conflict.
[x]: Package obeys FHS, except libexecdir and /usr/target.
[-]: If the package is a rename of another package, proper Obsoletes and
 Provides are present.
[x]: Requires correct, justified where necessary.
[x]: Spec file is legible and written in American English.
[-]: Package contains systemd file(s) if in need.
[x]: Package is not known to require an ExcludeArch tag.
[-]: Large documentation must go in a -doc subpackage. Large could be size
 (~1MB) or number of files.
 Note: Documentation size is 30720 bytes in 1 files.
[x]: Package complies to the Packaging Guidelines
[x]: Package successfully compiles and builds into binary rpms on at least
 one supported primary architecture.
[x]: Package installs properly.
[x]: Rpmlint is run on all rpms the build produces.
 Note: There are rpmlint messages (see attachment).
[x]: If (and only if) the source package includes the text of the
 license(s) in its own file, then that file, containing the text of the
 license(s) for the package is included in %license.
[x]: Package requires other packages for directories it uses.
[x]: Package does not own files or directories owned by other packages.
[x]: All build dependencies are listed in BuildRequires, except for any
 that are listed in the exceptions section of Packaging Guidelines.
[x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT
[x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the
 beginning of %install.
[x]: Macros in Summary, %description expandable at SRPM build time.
[x]: Dist tag is present.
[x]: Package does not contain duplicates in %files.
[x]: Permissions on files are set properly.
[x]: Package use %makeinstall only when make install DESTDIR=... doesn't
 work.
[x]: Package is named using only allowed ASCII characters.
[x]: Package does not use a name that already exists.
[x]: Package is not relocatable.
[x]: Sources used to build the package match the upstream source, as
 provided in the spec URL.
[x]: Spec file name must match the spec package %{name}, in the format
 %{name}.spec.
[x]: File names are valid UTF-8.
[x]: Packages must not store files under /srv, /opt or /usr/local

Python:
[x]: Python eggs must not download any dependencies during the build
 process.
[-]: A package which is used by another package via an egg interface should
 provide egg info.
[!]: Package meets the Packaging Guidelines::Python
[x]: Binary eggs must be removed in %prep

= SHOULD items =

Generic:
[!]: Sources can be downloaded from URI in Source: tag
 Note: Could not download Source0:

https://github.com/berteh/ScribusGenerator/archive/v2.5.tar.gz#/ScribusGenerator-2.5.tar.gz
 See: 

[Bug 1519081] Review Request: scribus-generator - Open source high-quality PDF template and mail-merge alternative

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519081



--- Comment #3 from Jerry James  ---
Would you mind reviewing bug 1519607 in exchange?  Thank you.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519607] New: Review Request: gap-pkg-nautytracesinterface - GAP interface to nauty and Traces

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519607

Bug ID: 1519607
   Summary: Review Request: gap-pkg-nautytracesinterface - GAP
interface to nauty and Traces
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: loganje...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL:
https://jjames.fedorapeople.org/gap-pkg-nautytracesinterface/gap-pkg-nautytracesinterface.spec
SRPM URL:
https://jjames.fedorapeople.org/gap-pkg-nautytracesinterface/gap-pkg-nautytracesinterface-0.1-1.20171120git5f16120.fc28.src.rpm
Description: This GAP package provides an interface to nauty and Traces.
Fedora Account System Username: jjames

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519608] New: Review Request: gap-pkg-sophus - Computing in nilpotent Lie algebras

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519608

Bug ID: 1519608
   Summary: Review Request: gap-pkg-sophus - Computing in
nilpotent Lie algebras
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: loganje...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL: https://jjames.fedorapeople.org/gap-pkg-sophus/gap-pkg-sophus.spec
SRPM URL:
https://jjames.fedorapeople.org/gap-pkg-sophus/gap-pkg-sophus-1.23-1.fc28.src.rpm
Description: The Sophus package is written to compute with nilpotent Lie
algebras over finite prime fields.  Using this package, you can compute the
cover, the list of immediate descendants, and the automorphism group of such
Lie algebras.  You can also test if two such Lie algebras are isomorphic.

The immediate descendant function of the package can be used to classify
small-dimensional nilpotent Lie algebras over a given field.  For instance, the
package author obtained a classification of nilpotent Lie algebras with
dimension at most 9 over F_2; see
http://www.sztaki.hu/~schneider/Research/SmallLie.
Fedora Account System Username: jjames

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519081] Review Request: scribus-generator - Open source high-quality PDF template and mail-merge alternative

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519081

Jerry James  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||loganje...@gmail.com
   Assignee|nob...@fedoraproject.org|loganje...@gmail.com
  Flags||fedora-review?



--- Comment #2 from Jerry James  ---
I will take this review.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519590] Review Request: module-build-service-copr - Copr plugin for the Module Build Service

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519590



--- Comment #1 from Jakub Kadlčík  ---
Spec URL:
https://copr-be.cloud.fedoraproject.org/results/@copr/copr-dev/fedora-27-x86_64/00682753-python-module-build-service-copr/module-build-service-copr.spec
SRPM URL:
https://copr-be.cloud.fedoraproject.org/results/@copr/copr-dev/fedora-27-x86_64/00682753-python-module-build-service-copr/python-module-build-service-copr-0.1-1.git.16.0336ed9.fc27.src.rpm

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519590] New: Review Request: module-build-service-copr - Copr plugin for the Module Build Service

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519590

Bug ID: 1519590
   Summary: Review Request: module-build-service-copr -  Copr
plugin for the Module Build Service
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: jkadl...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL:
https://copr-be.cloud.fedoraproject.org/results/@copr/copr-dev/fedora-27-x86_64/00682745-python-module-build-service-copr/module-build-service-copr.spec
SRPM URL:
https://copr-be.cloud.fedoraproject.org/results/@copr/copr-dev/fedora-27-x86_64/00682745-python-module-build-service-copr/python-module-build-service-copr-0.1-1.git.14.0eec290.fc27.src.rpm
Description:

This is a plugin for MBS containing Copr related extensions such as
CoprModuleBuilder and CoprResolver.


The Module Build Service (MBS) coordinates module builds and is responsible
for a number of tasks:

- Providing an interface for module client-side tooling via which module build
  submission and build state queries are possible.
- Verifying the input data (modulemd, RPM SPEC files and others) is available
  and correct.
- Preparing the build environment in the supported build systems, such as koji.
- Scheduling and building of the module components and tracking the build
  state.
- Emitting bus messages about all state changes so that other infrastructure
  services can pick up the work.



Fedora Account System Username: frostyx

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519448] Review Request: rust-loopdev - Setup and control loop devices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519448

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 19:20:40



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1516560] Review Request: rust-tokio-io - Core I/ O primitives for asynchronous I/O in Rust

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1516560

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed|2017-11-30 07:45:22 |2017-11-30 18:23:17



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1510565] Review Request: ntpstat - Utility to print NTP synchronization status

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1510565

Pavel Zhukov  changed:

   What|Removed |Added

  Flags|fedora-review?  |fedora-review+



--- Comment #12 from Pavel Zhukov  ---
(In reply to Miroslav Lichvar from comment #11)
> Thanks for the review.
> 
> The Makefile doesn't support DESTDIR and the upstream is not interested in
> adapting autoconf+automake only to install a single shell script :). If
> %install used "make install prefix=...", the bindir and mandir variables
> wouldn't be set to %{_bindir} and %{_mandir}. I think that's why the
> %makeinstall macro exists.
> 
> Does that make sense?
I'm fine with it. But packaging guidelines asks for clarification. Looks good.
> 
> To avoid starting with a lowercase character I'll change the description to:
> 
> This package contains a script which prints a brief summary of the system   
> 
> clock's synchronisation status when the ntpd or chronyd daemon is running.

Ok. Please change the description in initial commit then.

Approved.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1517993] Review Request: rmtest - A simple framework for testing Redis modules

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1517993



--- Comment #3 from Nathan Scott  ---
Whoops, thanks Lukas - I've updated the SRPM at the same location above to
match that change to the spec.

cheers.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1426844] Review Request: notepadqq - An advanced text editor for developers

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1426844

Rex Dieter  changed:

   What|Removed |Added

 Status|NEW |CLOSED
Version|25  |rawhide
 Blocks|177841 (FE-NEEDSPONSOR) |201449 (FE-DEADREVIEW)
 Resolution|--- |WONTFIX
  Flags||fedora-review-
Last Closed||2017-11-30 16:48:30



--- Comment #12 from Rex Dieter  ---
Given comment #9, this is a dead review.

If you want to pick things up, go ahead an open a new one.


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=177841
[Bug 177841] Tracker: Review requests from new Fedora packagers who need a
sponsor
https://bugzilla.redhat.com/show_bug.cgi?id=201449
[Bug 201449] FE-DEADREVIEW -- Reviews stalled due to lack of submitter
response should be blocking this bug.
-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519346] Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346

Zbigniew Jędrzejewski-Szmek  changed:

   What|Removed |Added

 Status|NEW |POST
 CC||zbys...@in.waw.pl
   Assignee|nob...@fedoraproject.org|zbys...@in.waw.pl
  Flags||fedora-review+



--- Comment #1 from Zbigniew Jędrzejewski-Szmek  ---
.so symlink is deleted. I understand why, but at the same time, this will make
it harder to build C extensions for this version. And C extensions is something
that people will want to test against the new version too. Not sure what to do
about this.

>  %defattr(-,root,root,-)
> %defattr(-,root,root,755)
Not needed.

Since this is essentially a version update from an existing package, I'm only
looking at the changes. Licensing and description and all unchanged stuff can
be assumed to be OK.

+ package name is OK
+ version is OK (3.7.0-0.1.a2)
+ no conflicts:
  stdlib is in /usr/lib64/python3.7
  include files are in /usr/include/python3.7m/
  and everything else is suffixed with the version.

  /usr/lib/rpm/macros.d/macros.pybytecompile3.7 will be included by rpm (all
files in that directory are). But it's currently the same as the one provided
by python3.6 and rpm has no issue with duplicated definitions, so this is not a
problem.

+ Provides/Requires look OK
+ BuildRequires seem correct
+ installs and functions correctly

Package is APPROVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1469726] Review Request: zram - Enable compressed swap in memory

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1469726



--- Comment #12 from Pavel Alexeev  ---
Raphael do you plan to continue?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1469767] Review Request: systemd-swap - Creating hybrid swap space from zram swaps, swap files and swap partitions

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1469767

Pavel Alexeev  changed:

   What|Removed |Added

 CC||pa...@hubbitus.info



--- Comment #6 from Pavel Alexeev  ---
Raphael do you plan to continue?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1426844] Review Request: notepadqq - An advanced text editor for developers

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1426844

bugs+red...@kcore.org changed:

   What|Removed |Added

 CC||bugs+red...@kcore.org



--- Comment #11 from bugs+red...@kcore.org ---
Hello,

I'd like to take over to get this package included with Fedora28. (Sooner would
be great, but well.)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1517000] Review Request: rubygem-notiffany - Notifier library ( extracted from Guard project)

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1517000



--- Comment #3 from Jaroslav Prokop  ---
Hi, here is version with fixed both patch name and URL

updated spec
URL:https://gitlab.com/jackorp/rubygem-notiffany/raw/9d2047a32eebec2e48fd40b7856e3eb437d87fd2/rubygem-notiffany.spec

updated srpm
URL:https://copr-be.cloud.fedoraproject.org/results/jackorp/rubygem-notiffany/fedora-rawhide-x86_64/00682701-rubygem-notiffany/rubygem-notiffany-0.1.1-1.fc28.src.rpm

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512673] Review Request: ghc-gi-gobject - GObject bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512673



--- Comment #4 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512674] Review Request: ghc-gi-gio - Gio bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512674



--- Comment #4 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512664] Review Request: ghc-haskell-gi - Generate Haskell bindings for GObject Introspection capable libraries

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512664



--- Comment #4 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512669] Review Request: ghc-gi-glib - GLib bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512669



--- Comment #4 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512677] Review Request: ghc-gi-ostree - OSTree bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512677



--- Comment #4 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512666] Review Request: ghc-haskell-gi-overloading - Overloading support for haskell-gi

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512666



--- Comment #9 from Fedora Update System  ---
ghc-haskell-gi-overloading-1.0-2.fc26 ghc-haskell-gi-0.20.3-1.fc26
ghc-gi-ostree-1.0.5-1.fc26 ghc-gi-gobject-2.0.15-1.fc26
ghc-gi-glib-2.0.14-1.fc26 ghc-gi-gio-2.0.14-1.fc26 has been submitted as an
update to Fedora 26.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3312a17075

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519448] Review Request: rust-loopdev - Setup and control loop devices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519448



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-loopdev

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519448] Review Request: rust-loopdev - Setup and control loop devices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519448

Neal Gompa  changed:

   What|Removed |Added

 CC||ngomp...@gmail.com
   Assignee|nob...@fedoraproject.org|ngomp...@gmail.com
  Flags||fedora-review?



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519448] Review Request: rust-loopdev - Setup and control loop devices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519448

Neal Gompa  changed:

   What|Removed |Added

  Flags|fedora-review?  |fedora-review+



--- Comment #1 from Neal Gompa  ---
Package was generated through rust2rpm, simplifying the review considerably.

- Conforms to packaging guidelines (rust2rpm generated spec)
- license correct and valid
- only sources installed

PACKAGE APPROVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519448] New: Review Request: rust-loopdev - Setup and control loop devices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519448

Bug ID: 1519448
   Summary: Review Request: rust-loopdev - Setup and control loop
devices
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Assignee: nob...@fedoraproject.org
  Reporter: ignate...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL:
https://ignatenkobrain.fedorapeople.org/for-review/rust/rust-loopdev.spec
SRPM URL:
https://ignatenkobrain.fedorapeople.org/for-review/rust/rust-loopdev-0.1.2-1.fc28.src.rpm
Description: Setup and control loop devices.
FAS account: ignatenkobrain

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519323] Review request: qesteidutil - Estonian ID card utility

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519323



--- Comment #1 from Germano Massullo  ---
*** Bug 1513456 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518962] Review request: libdigidoc - Library for handling digitally signed documents

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518962

Germano Massullo  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX
Last Closed||2017-11-30 12:07:36



--- Comment #1 from Germano Massullo  ---
libdigidoc uses OpenSSL 1.0 that conflicts with OpenSSL 1.1.
libdigidocpp (that relied on libdigidoc) should then use online SiVa validator
for ddoc files (libdigidoc was used to handle such kind of files)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1508950] Review Request: eccodes - a library for decoding and encoding WMO data formats

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1508950



--- Comment #3 from Jos de Kloe  ---
Spec URL: http://www.jdekloe.nl/Fedora/eccodes-2.5.0-1-rev2/eccodes.spec
SRPM URL:
http://www.jdekloe.nl/Fedora/eccodes-2.5.0-1-rev2/eccodes-2.5.0-1.fc26.src.rpm

Here is my next try.
I am not happy yet, but there is some improvement.
* Obsoletes / Provides have been disabled
* post / postun sections have been added
* LD_LIBRARY_PATH env setting has been added to the ctest command. This is
needed to let the tests run

Still rpmlint issues a number of errors and warnings:
   7 packages and 0 specfiles checked; 8 errors, 57 warnings.

eccodes.x86_64: E: invalid-soname /usr/lib64/libeccodes.so libeccodes.so

has been reported upstream. Not clear yet what they will do.
See: https://software.ecmwf.int/issues/browse/SUP-1809
[this issue has been made public now]

eccodes.x86_64: E: wrong-script-interpreter
and
eccodes.x86_64: E: non-executable-script
for files:
  /usr/share/eccodes/definitions/grib1/local.82.0.def
  /usr/share/eccodes/definitions/grib1/local.82.83.def

these are a false errors. These def files are data files, not scripts.
They start by accident with a shebang like line due to a funny choice of data
format by upstream.

eccodes-devel.x86_64: E: rpath-in-buildconfig 
  /usr/lib64/pkgconfig/eccodes.pc
  /usr/lib64/pkgconfig/eccodes_f90.pc

Sure, these files contain rpath settings.
However, removing these settings totally cripples the test system.
I don't know what to do here. Any idea how to solve this?

eccodes-debuginfo.x86_64: E: useless-provides debuginfo(build-id)

I don't know what this means. How to solve it?

The warnings are mostly on missing man pages (44 times).
and false warnings on spelling errors (7 times)

An issue requesting addition of the missing man pages was opened here:
https://software.ecmwf.int/issues/browse/SUP-2271
[this issue is still internal, but I requested them to make it public]

The other warnings are:

eccodes-devel.x86_64: W: only-non-binary-in-usr-lib

this is a bug in rpmlint I think.
/usr/lib64 contains 2 fortran *.mod files which are needed
to be able to compile fortran code with this library.
These files are possibly ascii, but they are generated by the compiler
and surely should be in the devel package.

eccodes-devel.x86_64: W: no-documentation
python2-eccodes.x86_64: W: no-documentation
eccodes-debugsource.x86_64: W: no-documentation

all relevant documentation is included in the main package, so no problem here.

eccodes.x86_64: W: shared-lib-calls-exit /usr/lib64/libeccodes.so
exit@GLIBC_2.2.5
eccodes.x86_64: W: shared-lib-calls-exit /usr/lib64/libeccodes_f90.so
exit@GLIBC_2.2.5

this is a proper problem.
It is reported upstream here: https://software.ecmwf.int/issues/browse/SUP-2272
[this issue is still internal, but I requested them to make it public]

Also the 4 failing tests are still excluded in the check section.
I tried hard but could not yet find a way to make them pass.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511673] Review Request: ghc-codec-rpm - A library for manipulating RPM files

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511673



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511666] Review Request: ghc-conduit-combinators - Commonly used conduit functions, for both chunked and unchunked data

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511666



--- Comment #6 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513163] Review Request: ghc-authenticate-oauth - Library to authenticate with OAuth for Haskell web applications

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513163

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513163] Review Request: ghc-authenticate-oauth - Library to authenticate with OAuth for Haskell web applications

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513163



--- Comment #5 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511676] Review Request: ghc-content-store - Store and retrieve data from an on-disk store

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511676

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512673] Review Request: ghc-gi-gobject - GObject bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512673



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512674] Review Request: ghc-gi-gio - Gio bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512674

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511676] Review Request: ghc-content-store - Store and retrieve data from an on-disk store

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511676



--- Comment #5 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512674] Review Request: ghc-gi-gio - Gio bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512674



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512669] Review Request: ghc-gi-glib - GLib bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512669

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512669] Review Request: ghc-gi-glib - GLib bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512669



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512673] Review Request: ghc-gi-gobject - GObject bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512673

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512664] Review Request: ghc-haskell-gi - Generate Haskell bindings for GObject Introspection capable libraries

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512664

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512677] Review Request: ghc-gi-ostree - OSTree bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512677

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512677] Review Request: ghc-gi-ostree - OSTree bindings

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512677



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512664] Review Request: ghc-haskell-gi - Generate Haskell bindings for GObject Introspection capable libraries

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512664



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512666] Review Request: ghc-haskell-gi-overloading - Overloading support for haskell-gi

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512666

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512065] Review Request: ghc-hspec-core - A Testing Framework for Haskell

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512065



--- Comment #5 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512666] Review Request: ghc-haskell-gi-overloading - Overloading support for haskell-gi

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512666



--- Comment #8 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1512069] Review Request: ghc-hspec - A Testing Framework for Haskell

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1512069



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511672] Review Request: ghc-lzma-conduit - Conduit interface for lzma/xz compression

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511672



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514057] Review Request: ghc-servant - A family of combinators for defining webservices APIs

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514057



--- Comment #5 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513156] Review Request: ghc-RSA - Implementation of RSA, using the padding schemes of PKCS#1 v2.1

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513156

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511665] Review Request: ghc-mono-traversable - Type classes for mapping, folding, and traversing monomorphic containers

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511665



--- Comment #7 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513156] Review Request: ghc-RSA - Implementation of RSA, using the padding schemes of PKCS#1 v2.1

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513156



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514165] Review Request: ghc-servant-client - Automatical derivation of querying functions for servant webservices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514165

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514103] Review Request: ghc-servant-foreign - Helpers for generating clients for servant APIs in any programming language

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514103

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514164] Review Request: ghc-servant-client-core - Core functionality and class for client function generation for servant APIs

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514164



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514165] Review Request: ghc-servant-client - Automatical derivation of querying functions for servant webservices

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514165



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514123] Review Request: ghc-servant-options - Provide responses to OPTIONS requests for Servant applications

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514123



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514123] Review Request: ghc-servant-options - Provide responses to OPTIONS requests for Servant applications

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514123

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514103] Review Request: ghc-servant-foreign - Helpers for generating clients for servant APIs in any programming language

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514103



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1511667] Review Request: ghc-tar-conduit - Parse tar files using conduit for streaming

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1511667



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513166] Review Request: ghc-wreq - An easy-to-use HTTP client library

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513166

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514111] Review Request: ghc-servant-server - A family of combinators for defining webservices APIs and serving them

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514111



--- Comment #4 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1513166] Review Request: ghc-wreq - An easy-to-use HTTP client library

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1513166



--- Comment #3 from Fedora Update System  ---
ghc-wreq-0.5.1.0-1.fc27 ghc-tar-conduit-0.1.1-1.fc27
ghc-servant-server-0.12-1.fc27 ghc-servant-options-0.1.0.0-1.fc27
ghc-servant-foreign-0.10.2-1.fc27 ghc-servant-client-core-0.12-1.fc27
ghc-servant-client-0.12.0.1-1.fc27 ghc-servant-0.12-1.fc27 ghc-RSA-2.2.0-1.fc27
ghc-mono-traversable-1.0.2-1.fc27 ghc-lzma-conduit-1.1.3.3-1.fc27
ghc-hspec-core-2.4.4-1.fc27 ghc-hspec-2.4.4-1.fc27
ghc-haskell-gi-overloading-1.0-2.fc27 ghc-haskell-gi-0.20.3-1.fc27
ghc-gi-ostree-1.0.5-1.fc27 ghc-gi-gobject-2.0.15-1.fc27
ghc-gi-glib-2.0.14-1.fc27 ghc-gi-gio-2.0.14-1.fc27
ghc-content-store-0.2.0-1.fc27 ghc-conduit-combinators-1.1.1-1.fc27
ghc-codec-rpm-0.2.0-1.fc27 ghc-authenticate-oauth-1.6-1.fc27 has been submitted
as an update to Fedora 27.
https://bodhi.fedoraproject.org/updates/FEDORA-2017-ab1fe26287

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1510565] Review Request: ntpstat - Utility to print NTP synchronization status

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1510565

Miroslav Lichvar  changed:

   What|Removed |Added

  Flags|needinfo?(mlichvar@redhat.c |
   |om) |



--- Comment #11 from Miroslav Lichvar  ---
Thanks for the review.

The Makefile doesn't support DESTDIR and the upstream is not interested in
adapting autoconf+automake only to install a single shell script :). If
%install used "make install prefix=...", the bindir and mandir variables
wouldn't be set to %{_bindir} and %{_mandir}. I think that's why the
%makeinstall macro exists.

Does that make sense?

To avoid starting with a lowercase character I'll change the description to:

This package contains a script which prints a brief summary of the system   
clock's synchronisation status when the ntpd or chronyd daemon is running.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519346] New: Review Request: python37 - Version 3.7 of the Python interpreter

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519346

Bug ID: 1519346
   Summary: Review Request: python37 - Version 3.7 of the Python
interpreter
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: mhron...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL:
https://src.fedoraproject.org/fork/churchyard/rpms/python3/raw/py37/f/python3.spec
SRPM URL:
https://churchyard.fedorapeople.org/SRPMS/python37-3.7.0-0.1.a2.fc28.src.rpm

Description:

This package exists to allow developers to test their code against an newer
version of Python. This is not a full Python stack and if you wish to run
your applications with Python 3.7, update your Fedora to a newer
version once Python 3.7 is stable.

Fedora Account System Username: churchyard

In git: https://src.fedoraproject.org/fork/churchyard/rpms/python3/tree/py37

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=23473822

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518898] Review Request: rust-peeking_take_while - Like `Iterator:: take_while`, but calls the predicate on a peeked value

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518898

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:52:31



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518893] Review Request: rust-which - Rust equivalent of Unix command "which"

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518893

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:52:21



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518896] Review Request: rust-shlex - Split a string into shell words , like Python's shlex

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518896

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:52:26



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518883] Review Request: rust-edit-distance - Levenshtein edit distance between strings, a measure for similarity

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518883

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:52:17



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518882] Review Request: rust-brev - Helpers for quick and dirty scripting

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518882

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:47:05



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518881] Review Request: rust-sha1 - Minimal implementation of SHA1 for Rust

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518881

Igor Gnatenko  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2017-11-30 10:46:59



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1514100] Review Request: python-logzero - Robust and effective logging for Python 2 and 3

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1514100

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed|2017-11-20 13:01:44 |2017-11-30 10:38:54



--- Comment #7 from Fedora Update System  ---
python-logzero-1.3.1-1.fc27 has been pushed to the Fedora 27 stable repository.
If problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1505073] Review Request: php-symfony4 - Symfony PHP framework ( version 4)

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1505073

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2017-11-30 10:38:11



--- Comment #11 from Fedora Update System  ---
php-symfony4-4.0.0-0.3.beta4.fc27 has been pushed to the Fedora 27 stable
repository. If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519323] Review request: qesteidutil - Estonian ID card utility

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519323

Germano Massullo  changed:

   What|Removed |Added

Summary|qesteidutil - Estonian ID   |Review request: qesteidutil
   |card utility|- Estonian ID card utility



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519323] New: qesteidutil - Estonian ID card utility

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519323

Bug ID: 1519323
   Summary: qesteidutil - Estonian ID card utility
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Assignee: nob...@fedoraproject.org
  Reporter: germano.massu...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Unretiring qesteidutil package
https://src.fedoraproject.org/rpms/qesteidutil

Description
QEsteidUtil is an application for managing Estonian ID Card. In an
user-friendly interface it is possible to change and unlock PINs, examine
detailed information about personal data file on the card, extract and view
certificates, set up mobile ID, and configure @eesti.ee email.

https://germano.fedorapeople.org/package_reviews/qesteidutil/qesteidutil.spec
https://germano.fedorapeople.org/package_reviews/qesteidutil/qesteidutil-3.12.10-1.fc27.src.rpm

I want to thank upstream Raul Metsma that is helping me in bringing back
Estonia ID card utils into Fedora repositories

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519324] New: Review Request: onedrive - OneDrive Free Client written in D

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519324

Bug ID: 1519324
   Summary: Review Request: onedrive - OneDrive Free Client
written in D
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: szts...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL:
https://copr-be.cloud.fedoraproject.org/results/zsun/test/fedora-rawhide-x86_64/00682603-onedrive/onedrive.spec
SRPM URL:
https://copr-be.cloud.fedoraproject.org/results/zsun/test/fedora-rawhide-x86_64/00682603-onedrive/onedrive-1.0.1-2.fc28.src.rpm
Description: OneDrive Free Client written in D
Fedora Account System Username: zsun

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518898] Review Request: rust-peeking_take_while - Like `Iterator:: take_while`, but calls the predicate on a peeked value

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518898



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-peeking_take_while

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518896] Review Request: rust-shlex - Split a string into shell words , like Python's shlex

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518896



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-shlex

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518893] Review Request: rust-which - Rust equivalent of Unix command "which"

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518893



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-which

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518883] Review Request: rust-edit-distance - Levenshtein edit distance between strings, a measure for similarity

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518883



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-edit-distance

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518882] Review Request: rust-brev - Helpers for quick and dirty scripting

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518882



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-brev

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518881] Review Request: rust-sha1 - Minimal implementation of SHA1 for Rust

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518881



--- Comment #2 from Gwyn Ciesla  ---
(fedrepo-req-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-sha1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519274] Review Request: perl-Nmap-Parser - parses results of an nmap scan

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519274

Jitka Plesnikova  changed:

   What|Removed |Added

 CC||jples...@redhat.com



--- Comment #1 from Jitka Plesnikova  ---
It is already packaged.
https://src.fedoraproject.org/rpms/perl-Nmap-Parser

Do you need create a branch for EPEL 7?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1519274] New: Review Request: perl-Nmap-Parser - parses results of an nmap scan

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1519274

Bug ID: 1519274
   Summary: Review Request: perl-Nmap-Parser - parses results of
an nmap scan
   Product: Fedora
   Version: rawhide
 Component: Package Review
  Severity: medium
  Assignee: nob...@fedoraproject.org
  Reporter: flip...@peacecomputers.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org



Spec URL: http://www.peacecomputers.com/rpms/SPECS/perl-Nmap-Parser.spec
SRPM URL:
http://www.peacecomputers.com/rpms/SRPMS/perl-Nmap-Parser-1.36-1.el7.centos.src.rpm
Description: This module implements a interface to the information contained in
an nmap scan. It is implemented by parsing the xml scan data that is generated
by nmap. This will enable anyone who utilizes nmap to quickly create fast and
robust security scripts that utilize the powerful port
scanning abilities of nmap.
Fedora Account System Username: fliptop

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1516560] Review Request: rust-tokio-io - Core I/ O primitives for asynchronous I/O in Rust

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1516560

Neal Gompa  changed:

   What|Removed |Added

 Status|CLOSED  |NEW
 Resolution|RAWHIDE |---
   Keywords||Reopened



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518898] Review Request: rust-peeking_take_while - Like `Iterator:: take_while`, but calls the predicate on a peeked value

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518898

Neal Gompa  changed:

   What|Removed |Added

 CC||ngomp...@gmail.com
   Assignee|nob...@fedoraproject.org|ngomp...@gmail.com
  Flags||fedora-review?



-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518896] Review Request: rust-shlex - Split a string into shell words , like Python's shlex

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518896

Neal Gompa  changed:

   What|Removed |Added

  Flags|fedora-review?  |fedora-review+



--- Comment #1 from Neal Gompa  ---
Package was generated through rust2rpm, simplifying the review considerably.

- Conforms to packaging guidelines (rust2rpm generated spec)
- license correct and valid
- only sources installed

PACKAGE APPROVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


[Bug 1518898] Review Request: rust-peeking_take_while - Like `Iterator:: take_while`, but calls the predicate on a peeked value

2017-11-30 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1518898

Neal Gompa  changed:

   What|Removed |Added

  Flags|fedora-review?  |fedora-review+



--- Comment #1 from Neal Gompa  ---
Package was generated through rust2rpm, simplifying the review considerably.

- Conforms to packaging guidelines (rust2rpm generated spec)
- license correct and valid
- only sources installed

PACKAGE APPROVED.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org


  1   2   >