Merge branch 'master' of https://github.com/iksaif/euscan
This commit is contained in:
commit
58381f9808
32
TODO
32
TODO
@ -26,18 +26,28 @@ euscan
|
|||||||
-- Berlios: nast, enigma, usbprog, python-wifi, wifi-radar, bcm43xx-fwcutter
|
-- Berlios: nast, enigma, usbprog, python-wifi, wifi-radar, bcm43xx-fwcutter
|
||||||
-- Google code: pychess, redis, rssguard, ostinato, pidgin-facebookchat
|
-- Google code: pychess, redis, rssguard, ostinato, pidgin-facebookchat
|
||||||
|
|
||||||
metadata.xml
|
### metadata.xml
|
||||||
------------
|
|
||||||
|
|
||||||
- Finalize format
|
|
||||||
- Create a subtree of metadata using custom rules
|
- Create a subtree of metadata using custom rules
|
||||||
|
- Finalize format
|
||||||
- Write a GLEP
|
- Write a GLEP
|
||||||
|
- Convert subtree
|
||||||
- Commit metadata.xml changes to tree
|
- Commit metadata.xml changes to tree
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
- MySQL: should use http://downloads.mysql.com/archives/
|
- MySQL: should use http://downloads.mysql.com/archives/
|
||||||
- mariadb: should use http://downloads.askmonty.org/MariaDB/+releases/
|
- mariadb: should use http://downloads.askmonty.org/MariaDB/+releases/
|
||||||
|
|
||||||
|
|
||||||
|
### handlers
|
||||||
|
|
||||||
|
- freecode: to scan freecode.com
|
||||||
|
- remote-id: type deb repository. Example I always scan:
|
||||||
|
http://dl.google.com/linux/musicmanager/deb/dists/stable/main/binary-i386/Packages
|
||||||
|
to see if google has release an update, same would help for all google
|
||||||
|
packages and some of the actual debian packages.
|
||||||
|
Something similar could be done for rpm repositories.
|
||||||
|
|
||||||
euscanwww
|
euscanwww
|
||||||
---------
|
---------
|
||||||
|
|
||||||
@ -47,7 +57,6 @@ euscanwww
|
|||||||
|
|
||||||
### packages
|
### packages
|
||||||
|
|
||||||
|
|
||||||
- show additional informations in the web interface (remote-id, etc...)
|
- show additional informations in the web interface (remote-id, etc...)
|
||||||
- show the content of the ebuild for a particular version
|
- show the content of the ebuild for a particular version
|
||||||
- Ignore alpha/beta if current is not alpha/beta: per-package setting using metadata.xml ?
|
- Ignore alpha/beta if current is not alpha/beta: per-package setting using metadata.xml ?
|
||||||
@ -59,14 +68,21 @@ euscanwww
|
|||||||
|
|
||||||
Move account stuff to an euscan.account application to keep only package related stuff in djeuscan.
|
Move account stuff to an euscan.account application to keep only package related stuff in djeuscan.
|
||||||
|
|
||||||
|
### logs
|
||||||
|
|
||||||
|
Move log models into djeuscanhistory ?
|
||||||
|
|
||||||
### models
|
### models
|
||||||
|
|
||||||
- Repository (added or not, from layman + repositories.xml)
|
- Repository (added or not, from layman + repositories.xml)
|
||||||
- Category (read metadata.xml)
|
- Category (read metadata.xml)
|
||||||
- Url ad ManyToMany
|
- Url ad ManyToMany
|
||||||
- Arches and Keyword
|
- Arches and Keyword
|
||||||
|
- Metadata, herds, maintainers and homepage are per-version, not per package. Store it in Version instead.
|
||||||
|
Define last_version that refers to the last version (can be last_version_gentoo or last_version_overlay)
|
||||||
|
Fix update_counter, to update this field.
|
||||||
|
|
||||||
### djportage
|
### djportage (LOW-PRIORITY))
|
||||||
|
|
||||||
- Create standalone application to scan and represent portage trees in models using work done in:
|
- Create standalone application to scan and represent portage trees in models using work done in:
|
||||||
-- euscan
|
-- euscan
|
||||||
@ -80,9 +96,11 @@ The scan process should be faster than the one using euscan. gentoo-packages hav
|
|||||||
### Scanning
|
### Scanning
|
||||||
|
|
||||||
- Remove alive field
|
- Remove alive field
|
||||||
- Find a way to rescan upstream of packages recently changed in portage
|
- Find a way to rescan upstream of packages recently changed in portage:
|
||||||
|
- make scan_portage/scan_upstream return a list of packages that were updated (or list of versions ?)
|
||||||
|
- use that list in tasks.py as scan_upstream (should be easy using chains and subtasks)
|
||||||
|
|
||||||
### API
|
### API (LOW-PRIORITY)
|
||||||
|
|
||||||
- Move to tastypie
|
- Move to tastypie
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@ from djeuscan.processing.scan import scan_upstream
|
|||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
_overlays = {}
|
_overlays = {}
|
||||||
|
|
||||||
|
@ -112,11 +112,11 @@ def update_portage_trees(logger=None):
|
|||||||
logger = logger or FakeLogger()
|
logger = logger or FakeLogger()
|
||||||
logger.info("Running emerge --sync")
|
logger.info("Running emerge --sync")
|
||||||
emerge_sync(logger)
|
emerge_sync(logger)
|
||||||
|
emerge_metadata(logger)
|
||||||
logger.info("Running layman --sync")
|
logger.info("Running layman --sync")
|
||||||
layman_sync(logger, cache=True)
|
layman_sync(logger, cache=True)
|
||||||
#logger.info("Running emerge --regen")
|
#logger.info("Running emerge --regen")
|
||||||
#emerge_regen(logger)
|
#emerge_regen(logger)
|
||||||
emerge_metadata(logger)
|
|
||||||
logger.info("Running eix-update")
|
logger.info("Running eix-update")
|
||||||
eix_update(logger)
|
eix_update(logger)
|
||||||
logger.info("Done!")
|
logger.info("Done!")
|
||||||
|
@ -365,4 +365,7 @@ admin_tasks = [
|
|||||||
update_portage,
|
update_portage,
|
||||||
update_upstream,
|
update_upstream,
|
||||||
scan_package,
|
scan_package,
|
||||||
|
send_update_email,
|
||||||
|
send_weekly_email,
|
||||||
|
send_monthly_email,
|
||||||
]
|
]
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
This web interface allow you to browse the portage tree, and find outdated ebuilds. It is designed to help maintainers monitor their packages and bump them.
|
This web interface allow you to browse the portage tree, and find outdated ebuilds. It is designed to help maintainers monitor their packages and bump them.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
euscan code source is available at <a href="http://git.iksaif.net/?p=djeuscan.git;a=summary">http://git.iksaif.net/?p=euscan.git;a=summary</a>.
|
euscan code source is available on <a href="http://github.com/iksaif/euscan">github</a>.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Original Gentoo artwork and logos copyright (C) Gentoo Foundation.
|
Original Gentoo artwork and logos copyright (C) Gentoo Foundation.
|
||||||
|
@ -29,3 +29,4 @@ Watching {{ num_packages }} package{{ num_packages|pluralize:"s"}}: {{ packages_
|
|||||||
{% endif %}{% endif %}{% endwith %}
|
{% endif %}{% endif %}{% endwith %}
|
||||||
--
|
--
|
||||||
This email was sent by euscan, please do not reply.
|
This email was sent by euscan, please do not reply.
|
||||||
|
Go to your euscan account to change email notification settings.
|
||||||
|
Loading…
Reference in New Issue
Block a user