Bug 479903 - Review Request: gdesklet-slideshow - Cycle through a collection of pictures
Summary: Review Request: gdesklet-slideshow - Cycle through a collection of pictures
Keywords:
Status: CLOSED NEXTRELEASE
Alias: None
Product: Fedora
Classification: Fedora
Component: Package Review
Version: 10
Hardware: All
OS: Linux
low
medium
Target Milestone: ---
Assignee: Luya Tshimbalanga
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2009-01-13 22:37 UTC by MERCIER Jonathan
Modified: 2009-03-04 03:02 UTC (History)
8 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2009-03-04 03:02:05 UTC
Type: ---
Embargoed:
luya: fedora-review+
kevin: fedora-cvs+


Attachments (Terms of Use)
the rpm file (172.41 KB, application/x-rpm)
2009-01-13 22:37 UTC, MERCIER Jonathan
no flags Details
The spec file (1.80 KB, application/octet-stream)
2009-01-13 22:37 UTC, MERCIER Jonathan
no flags Details
The src.rpm file (143.28 KB, application/x-rpm)
2009-01-13 22:42 UTC, MERCIER Jonathan
no flags Details
SPEC file (1.80 KB, application/octet-stream)
2009-01-14 12:59 UTC, MERCIER Jonathan
no flags Details
The src.rpm file (143.31 KB, application/x-rpm)
2009-01-14 13:00 UTC, MERCIER Jonathan
no flags Details
the rpm file (172.41 KB, application/x-rpm)
2009-01-14 13:01 UTC, MERCIER Jonathan
no flags Details

Description MERCIER Jonathan 2009-01-13 22:37:08 UTC
Created attachment 328927 [details]
the rpm file

Cycle through a collection of pictures. Will display image captions (IPTC,Jpeg Comment, EXIF) if available.

The spec file:
-----------------------------------------------------
Name:           gdesklet-slideshow
Version:        0.9
Release:        1%{?dist}
Summary:        Cycle through a collection of pictures
Group:          User Interface/Desktops
License:        GPL+
URL:            http://www.gdesklets.de
Source0:        http://http://www.gdesklets.de/files/desklets/SlideShow/SlideShow-%{version}.tar.gz
Source1:        http://www.gdesklets.de/files/controls/ImageSlideShow/ImageSlideShow-0.8.tar.gz

BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:      noarch

%define	_appname	SlideShow
%define	_ctrlname	ImageSlideShow

BuildRequires:  python

Requires:       gdesklets
Requires:       python-imaging



%description
Cycle through a collection of pictures. Will display image captions
(IPTC,Jpeg Comment, EXIF) if available.

%prep
%setup -q -n %{_appname}
tar -xf %{SOURCE1} -C ../

%build


%install
rm -rf $RPM_BUILD_ROOT
#need to install the control first
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/ImageSlideShow/
install -p -m644 ../ImageSlideShow/* $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/ImageSlideShow/.
#add shebang and execution mode
find $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/ImageSlideShow/. \( -name "*.py" \) -exec sed -i '1i\#!/usr/bin/python' {} \;
find $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/ImageSlideShow/. \( -name "*.py" \) | xargs chmod a+x

#install the display now
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Displays/SlideShow/
cp -rp * $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Displays/SlideShow/.


%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc LICENSE
#%{_datadir}/gdesklets/
%{_datadir}/gdesklets/Controls/ImageSlideShow/
%{_datadir}/gdesklets/Displays/SlideShow/


%changelog
* Mon Jan 12 2009 Jonathan MERCIER <bioinfornatics> - 0.9-1
- Initial Packaging for Fedora

-----------------------------------------------------

rpmlint issue:
$ rpmlint ../RPMS/noarch/SlideShow-0.9-1.fc10.noarch.rpm 
Error: no installed packages by name ../RPMS/noarch/SlideShow-0.9-1.fc10.noarch.rpm
0 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint ../SRPMS/SlideShow-0.9-1.fc10.src.rpm 
Error: no installed packages by name ../SRPMS/SlideShow-0.9-1.fc10.src.rpm
0 packages and 0 specfiles checked; 0 errors, 0 warnings.

Comment 1 MERCIER Jonathan 2009-01-13 22:37:46 UTC
Created attachment 328928 [details]
The spec file

Comment 2 MERCIER Jonathan 2009-01-13 22:42:04 UTC
Created attachment 328929 [details]
The src.rpm file

Comment 3 MERCIER Jonathan 2009-01-14 12:49:01 UTC
The new spec file:

-----------------------------------------------------
Name:		gdesklet-slideshow
Version:	0.9
Release:	1%{?dist}
Summary:	Cycle through a collection of pictures
Group:		User Interface/Desktops
License:	GPL+
URL:		http://www.gdesklets.de
Source0:	http://http://www.gdesklets.de/files/desklets/SlideShow/SlideShow-%{version}.tar.gz
Source1:	http://www.gdesklets.de/files/controls/ImageSlideShow/ImageSlideShow-0.8.tar.gz

BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch:	noarch

%define	_appname	SlideShow
%define	_ctrlname	ImageSlideShow

BuildRequires:	python

Requires:	gdesklets
Requires:	python-imaging



%description
Cycle through a collection of pictures. Will display image captions
(IPTC,Jpeg Comment, EXIF) if available.

%prep
%setup -q -n %{_appname}
tar -xf %{SOURCE1} -C ../

%build


%install
rm -rf $RPM_BUILD_ROOT
#need to install the control first
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/%{_ctrlname}/
install -p -m644 ../%{_ctrlname}/* $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/%{_ctrlname}/.
#add shebang and execution mode
find $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/%{_ctrlname}/. \( -name "*.py" \) -exec sed -i '1i\#!/usr/bin/python' {} \;
find $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Controls/%{_ctrlname}/. \( -name "*.py" \) | xargs chmod a+x

#install the display now
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Displays/%{_appname}/
cp -rp * $RPM_BUILD_ROOT/%{_datadir}/gdesklets/Displays/%{_appname}/.


%clean
rm -rf $RPM_BUILD_ROOT


%files
%defattr(-,root,root,-)
%doc LICENSE
#%{_datadir}/gdesklets/
%dir %{_datadir}/gdesklets/Controls/%{_ctrlname}
%dir %{_datadir}/gdesklets/Displays/%{_appname}
%{_datadir}/gdesklets/Controls/%{_ctrlname}/*
%{_datadir}/gdesklets/Displays/%{_appname}/*


%changelog
* Mon Jan 12 2009 Jonathan MERCIER <bioinfornatics> - 0.9-1
- Initial Packaging for Fedora
-----------------------------------------------------

rpmlint:
$ rpmlint rpmbuild/RPMS/noarch/gdesklet-slideshow-0.9-1.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/SRPMS/gdesklet-slideshow-0.9-1.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/SPECS/gdesklet-slideshow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.

-----------------------------------------------------

Comment 4 MERCIER Jonathan 2009-01-14 12:59:44 UTC
Created attachment 328981 [details]
SPEC file

Comment 5 MERCIER Jonathan 2009-01-14 13:00:33 UTC
Created attachment 328982 [details]
The src.rpm file

Comment 6 MERCIER Jonathan 2009-01-14 13:01:19 UTC
Created attachment 328983 [details]
the rpm file

Comment 7 MERCIER Jonathan 2009-01-14 13:02:42 UTC
Easy install on f10:
$ su -m -c 'wget http://bioinformatiques.free.fr/gdesklet-slideshow-0.9-1.fc10.noarch.rpm && yum --nogpgcheck localinstall gdesklet-slideshow-0.9-1.fc10.noarch.rpm'

Easy install on F9:
su -m -c 'wget http://bioinformatiques.free.fr/gdesklet-slideshow-0.9-1.fc9.noarch.rpm && yum --nogpgcheck localinstall gdesklet-slideshow-0.9-1.fc9.noarch.rpm'

Comment 8 manuel wolfshant 2009-01-14 13:20:45 UTC
Why don't you simply act like everyone else and provide the URL for spec and src.rpm in the bug number, instead of providing them over and over again as attachments in bugzilla ? At first I assumed that you do not have a place to host the files, but comment #7 proves that you obviously do.

Comment 10 MERCIER Jonathan 2009-01-15 12:09:25 UTC
And here the spec file:
http://bioinformatiques.free.fr/gdesklet-slideshow.spec

Comment 11 David Nalley 2009-01-19 17:11:12 UTC
So a few comments:

1. License type per the source is GPLv2+ not GPL+
2. Source0 has two 'http://' in the listing
3. This is a gui application and yet there is no .desktop file see:
http://fedoraproject.org/wiki/Packaging/Guidelines#desktop
 


The package appears to build fine in mock 

rpmlint output below: 
[ke4qqq@nalleyt61 noarch]$ rpmlint gdesklet-slideshow-0.9-1.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.
[ke4qqq@nalleyt61 SRPMS]$ rpmlint gdesklet-slideshow-0.9-1.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.
[ke4qqq@nalleyt61 SPECS]$ rpmlint gdesklet-slideshow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.


While working on this review I looked for your fas account and don't see one with your name or your email address as listed in this bug. If you don't have one, you'll need to get one, and that probably means you need to set this bug to block the fe-needsponsor bug so that you can be sponsored as a packager.

Comment 12 MERCIER Jonathan 2009-01-21 16:03:19 UTC
1 and 2/ The new spec file are update. The new src.rpm file are update And the new rpm file update

rpmlint rpmbuild/SPECS/gdesklet-slideshow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.

rpmlint rpmbuild/RPMS/noarch/gdesklet-slideshow-0.9-1.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

rpmlint rpmbuild/SRPMS/gdesklet-slideshow-0.9-1.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.


3/ this is not a GUI but a plugin for gdesklet so they are not .desktop file

Comment 14 Michael Schwendt 2009-01-27 13:52:33 UTC
The original %files section was fine:

> %{_datadir}/gdesklets/Controls/ImageSlideShow/
> %{_datadir}/gdesklets/Displays/SlideShow/

Why did you change it...?

> %dir %{_datadir}/gdesklets/Controls/%{_ctrlname}
> %dir %{_datadir}/gdesklets/Displays/%{_appname}
> %{_datadir}/gdesklets/Controls/%{_ctrlname}/*
> %{_datadir}/gdesklets/Displays/%{_appname}/*

Both are equivalent.


> %setup -q -n %{_appname}
> tar -xf %{SOURCE1} -C ../

The way the two tarballs are extracted is strange. Sure, you can do it like that, but having to deal with the "../" in subsequent commands decreases the readability of the spec file. I strongly encourage you to use

%setup -q -c %{name}-%{version} -a1

to extract both tarballs into the same root directory, and then either use your two macros %_appname and %_ctrlname when accessing files or entering directories.


The LICENSE, MANIFEST, README and "todo" files are installed in addition to %doc, and it is important to note that the LICENSE file must not be removed from /usr/share/gdesklets/Displays/SlideShow/LICENSE - or else it cannot be displayed by the desklet.


Opening "Configure desklet" and selecting a folder from which to load images always displays an error dialog:

| The folder contents could not be displayed
| 
| Operation not supported

It seems it always starts in the root directory due to that.

Comment 15 MERCIER Jonathan 2009-01-30 10:24:35 UTC
In first, thanks for you answer.

1/ Why did you change it...?

> %dir %{_datadir}/gdesklets/Controls/%{_ctrlname}
> %dir %{_datadir}/gdesklets/Displays/%{_appname}
> %{_datadir}/gdesklets/Controls/%{_ctrlname}/*
> %{_datadir}/gdesklets/Displays/%{_appname}/*
--------------------------------------------
someone on IRC #fedora-fr say is better.

i have upadte the spec file:
> %{_datadir}/gdesklets/Controls/ImageSlideShow/
> %{_datadir}/gdesklets/Displays/SlideShow/

2/ > %setup -q -n %{_appname}
> tar -xf %{SOURCE1} -C ../
--------------------------------------------
it's ok, i use %setup -q -c %{name}-%{version} -a1

3/ 
The LICENSE, MANIFEST, README and "todo" files are installed in addition to
%doc, and it is important to note that the LICENSE file must not be removed
from /usr/share/gdesklets/Displays/SlideShow/LICENSE - or else it cannot be
displayed by the desklet.
--------------------------------------------
ok, it's done

4/ 
Opening "Configure desklet" and selecting a folder from which to load images
always displays an error dialog:

| The folder contents could not be displayed
| 
| Operation not supported

It seems it always starts in the root directory due to that.
--------------------------------------------

yes i have the same error, i did'nt find the source code who make this error!

5/ they are no directory image 
i have see in Display/SideShow.script line 259:
Prefs.image_directory.value= value[:value.rfind( "/" )]
if you change the value by:
Prefs.image_directory.value= "/home/user/images"
is better.
but where put os.environ ['HOME']?

6/ i have update spec rpm and src rpm
http://bioinformatiques.free.fr/SlideShow-0.9-3.fc10.noarch.rpm

http://bioinformatiques.free.fr/SlideShow-0.9-3.fc10.src.rpm

http://bioinformatiques.free.fr/SlideShow.spec


7/ rpmlint:
$ rpmlint rpmbuild/SRPMS/SlideShow-0.9-3.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/RPMS/noarch/SlideShow-0.9-3.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/SPECS/SlideShow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.

Comment 16 Michael Schwendt 2009-01-30 11:53:48 UTC
Maybe the gdesklets maintainer can comment on this?

Bottom of comment 14 is some oddity in Fedora's gdesklets package. It is reproducible with the "Calendar" v0.62 Display in F10 "gdesklets" package. Steps to reproduce:

1. Run "Calendar" desklet from date/time category.
2. Right-click on desklet display for "Configure desklet" pop-up menu.
3. Click "Open" button next to "Month image" input field.

Result: An error dialog on top of the file manager is displayed:

| The folder contents could not be displayed
|
| Operation not supported      [ OK ]

It looks like a bug in gdesklets or an API incompatibility.

Comment 17 MERCIER Jonathan 2009-01-30 18:49:24 UTC
i have found this file:
/usr/lib64/gdesklets/Controls/URI/__init__py
this file is call for openning a file

Comment 18 Luya Tshimbalanga 2009-01-30 20:56:09 UTC
(In reply to comment #16)
> Maybe the gdesklets maintainer can comment on this?
> 
> Bottom of comment 14 is some oddity in Fedora's gdesklets package. It is
> reproducible with the "Calendar" v0.62 Display in F10 "gdesklets" package.
> Steps to reproduce:
> 
> 1. Run "Calendar" desklet from date/time category.
> 2. Right-click on desklet display for "Configure desklet" pop-up menu.
> 3. Click "Open" button next to "Month image" input field.
> 
> Result: An error dialog on top of the file manager is displayed:
> 
> | The folder contents could not be displayed
> |
> | Operation not supported      [ OK ]
> 
> It looks like a bug in gdesklets or an API incompatibility.

I confirmed the bug that affect other desklets with image path and submitted it to upstream.
https://bugs.launchpad.net/fedora/+source/gdesklets/+bug/323347

Comment 19 MERCIER Jonathan 2009-01-31 01:30:00 UTC
(In reply to comment #18)
> (In reply to comment #16)
> > Maybe the gdesklets maintainer can comment on this?
> > 
> > Bottom of comment 14 is some oddity in Fedora's gdesklets package. It is
> > reproducible with the "Calendar" v0.62 Display in F10 "gdesklets" package.
> > Steps to reproduce:
> > 
> > 1. Run "Calendar" desklet from date/time category.
> > 2. Right-click on desklet display for "Configure desklet" pop-up menu.
> > 3. Click "Open" button next to "Month image" input field.
> > 
> > Result: An error dialog on top of the file manager is displayed:
> > 
> > | The folder contents could not be displayed
> > |
> > | Operation not supported      [ OK ]
> > 
> > It looks like a bug in gdesklets or an API incompatibility.
> 
> I confirmed the bug that affect other desklets with image path and submitted it
> to upstream.
> https://bugs.launchpad.net/fedora/+source/gdesklets/+bug/323347
Then the package it's ok?

Comment 20 Luya Tshimbalanga 2009-01-31 09:05:21 UTC
Yes, the package is fine

Comment 21 Luya Tshimbalanga 2009-01-31 09:30:22 UTC
Make sure to change Summary in something like: A slideshow of collection for gdesklets. Also get a Fedora accound, a sponsor to get approval.

Comment 22 Luya Tshimbalanga 2009-01-31 09:31:16 UTC
Information is on https://fedoraproject.org/wiki/PackageMaintainers

Comment 23 MERCIER Jonathan 2009-01-31 12:23:26 UTC
ok i have update the summary.
but i have a little problem with release 3 gdesklet do'nt add the control then the desklet do'nt work???

Comment 24 MERCIER Jonathan 2009-01-31 15:47:12 UTC
(In reply to comment #23)
> ok i have update the summary.
> but i have a little problem with release 3 gdesklet do'nt add the control then
> the desklet do'nt work???

no it's good, is me :p
____________________________________________________________
rpmlint:

$ rpmlint rpmbuild/SPECS/SlideShow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/SRPMS/SlideShow-0.9-4.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/RPMS/noarch/SlideShow-0.9-4.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.
____________________________________________________________
I have update spec rpm and src rpm
http://bioinformatiques.free.fr/SlideShow-0.9-4.fc10.noarch.rpm

http://bioinformatiques.free.fr/SlideShow-0.9-4.fc10.src.rpm

http://bioinformatiques.free.fr/SlideShow.spec

Comment 25 MERCIER Jonathan 2009-01-31 17:42:33 UTC
(In reply to comment #22)
> Information is on https://fedoraproject.org/wiki/PackageMaintainers

ok, i read all the document

i am at :
koji build --scratch dist-f10 rpmbuild/SRPMS/SlideShow-0.9-4.fc10.src.rpm 
Uploading srpm: rpmbuild/SRPMS/SlideShow-0.9-4.fc10.src.rpm
[====================================] 100% 00:00:04 143.64 KiB  28.83 KiB/sec
Created task: 1096424
Task info: http://koji.fedoraproject.org/koji/taskinfo?taskID=1096424
Watching tasks (this may be safely interrupted)...
1096424 build (dist-f10, SlideShow-0.9-4.fc10.src.rpm): open (xenbuilder2.fedora.redhat.com)
  1096425 buildArch (SlideShow-0.9-4.fc10.src.rpm, noarch): free
  1096425 buildArch (SlideShow-0.9-4.fc10.src.rpm, noarch): free -> open (ppc10.fedora.phx.redhat.com)
  1096425 buildArch (SlideShow-0.9-4.fc10.src.rpm, noarch): open (ppc10.fedora.phx.redhat.com) -> closed
  0 free  1 open  1 done  0 failed
1096424 build (dist-f10, SlideShow-0.9-4.fc10.src.rpm): open (xenbuilder2.fedora.redhat.com) -> closed
  0 free  0 open  2 done  0 failed

1096424 build (dist-f10, SlideShow-0.9-4.fc10.src.rpm) completed successfully

Comment 26 Luya Tshimbalanga 2009-01-31 21:01:18 UTC
Next step is to find a sponsor.

Comment 27 MERCIER Jonathan 2009-02-02 09:24:31 UTC
where i can i find a sponsor?
i have creat some package:
Review Request: SPE - Stani's Python Editor: https://bugzilla.redhat.com/show_bug.cgi?id=481022

 A collection of quotes in French for gdesklets: https://bugzilla.redhat.com/show_bug.cgi?id=483403

Modern background: https://bugzilla.redhat.com/show_bug.cgi?id=483498

Comment 28 Luya Tshimbalanga 2009-02-02 10:45:31 UTC
(In reply to comment #27)
> where i can i find a sponsor?
> i have creat some package:
> Review Request: SPE - Stani's Python Editor:
> https://bugzilla.redhat.com/show_bug.cgi?id=481022

https://admin.fedoraproject.org/accounts/group/members/packager/*/sponsor
You should be able to see them with your Fedora account.

Comment 29 MERCIER Jonathan 2009-02-06 12:19:57 UTC
I change the name of rpm SlideShow to gdesklet-SlideShow

rpmlint issue:
_____________________________________________________

$ rpmlint rpmbuild/SPECS/gdesklet-SlideShow.spec 
0 packages and 1 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/SRPMS/gdesklet-SlideShow-0.9-5.fc10.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint rpmbuild/RPMS/noarch/gdesklet-SlideShow-0.9-5.fc10.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.
_____________________________________________________
http://bioinformatiques.free.fr/gdesklet-SlideShow-0.9-5.fc10.src.rpm

http://bioinformatiques.free.fr/gdesklet-SlideShow-0.9-5.fc10.noarch.rpm

http://bioinformatiques.free.fr/gdesklet-SlideShow.spec

Comment 30 Mamoru TASAKA 2009-02-06 15:06:10 UTC
(Removing NEEDSPONSOR)

Comment 31 MERCIER Jonathan 2009-02-14 19:44:50 UTC
New Package CVS Request
=======================
Package Name: gdesklet-SlideShow
Short Description: A slideshow of collection for gdesklets
Owners: bioinfornatics
Branches: F9 F10
InitialCC: bioinfornatics

Comment 32 Kevin Fenzi 2009-02-16 21:11:07 UTC
I don't see fedora-review + here, and it's not clear to me who is reviewing this. 

Please wait until a reviewer marks it fedora-review + for requesting cvs.

Comment 33 Luya Tshimbalanga 2009-02-17 01:47:58 UTC
Done, I oversight that fedora-review part so request for cvs can be proceeded.

Comment 34 Pierre-YvesChibon 2009-02-17 07:09:36 UTC
maybe you could be a bit more extensive, Jonhatan has just been approved, seing some more review done is always interesting....

Comment 35 MERCIER Jonathan 2009-02-17 23:23:52 UTC
sorry for the waiting. the package is ready. i wait the cvs
thanks

Comment 36 MERCIER Jonathan 2009-02-18 11:04:02 UTC
quote: mtasaka.u-tokyo.ac.jp  2009-02-05 13:43:29 EDT   (-) [reply]
-------

Well,
- This package itself is now good
- For your other review requests:
  - I suggets that gdesklets related packages should be renamed
    to gdesklets-XXXXXX
    (there are already gdesklets-goodweather, gdesklets-quote-of-the-day
     on Fedora. It seems that both of these were reviewed by me....)
  - I suggest that earth-and-moon rpm should be renamed to
    earth-and-moon-backgrounds (as other packages do).
    You can check how other packages are renamed by
    $ rpm -qf /usr/share/backgrounds/*

   (note: please post new srpms or your comments for this package
    on the corresponding review request, not on "this" review
    ticket)
_______________________________________________________________________________
mtasaka say this but in https://bugzilla.redhat.com/show_bug.cgi?id=481022 when
sponsorized me for another package

Comment 37 Kevin Fenzi 2009-02-18 20:17:44 UTC
cvs done.


Note You need to log in before you can comment on or make changes to this bug.