Fabio Erculiani
0ab84c5666
Sulfur: more code cleanup
2009-05-18 09:01:55 +02:00
Fabio Erculiani
da9227304f
Sulfur: remove some unused gfx and code
2009-05-18 08:57:35 +02:00
Fabio Erculiani
4b86d2eb16
entropy.client.interfaces.package: fix issues with properly handling CONFIG_PROTECT_MASK
2009-05-17 19:51:12 +02:00
Fabio Erculiani
95a3574cc2
fix etp-applet.desktop file
2009-05-17 18:26:11 +02:00
Fabio Erculiani
6e61eb7d3c
entropy.client.interfaces.trigger: fix regression in grub.conf kernel string generation
2009-05-17 18:12:42 +02:00
Fabio Erculiani
79d10376e1
entropy.server: avoid queueing packages for removal on non-default repo
2009-05-17 14:07:12 +02:00
Fabio Erculiani
d3d0994549
Makefile: fix install target
2009-05-17 12:05:17 +02:00
Fabio Erculiani
5fc6816c61
Spritz becomes Sulfur
2009-05-17 10:24:37 +02:00
Fabio Erculiani
1c41cc77a5
docs: add GPL2 license
2009-05-17 10:24:27 +02:00
Fabio Erculiani
25101a3299
Spritz: make Entropy Client interface thread-safe
2009-05-16 20:58:07 +02:00
Fabio Erculiani
4da1e7bf47
Spritz: disable second progress bar on repositories update
2009-05-16 20:49:41 +02:00
Fabio Erculiani
01e3c1759e
Spritz: displace progress bars vertically
2009-05-16 20:46:33 +02:00
Fabio Erculiani
df14576b56
equo: add "equo upgrade" option (alias for equo world)
2009-05-16 20:40:34 +02:00
Fabio Erculiani
83f2d51013
Spritz: add "Update Repositories" button to front window
2009-05-16 20:37:11 +02:00
Fabio Erculiani
d60e4c87c0
update translations
2009-05-16 20:24:51 +02:00
Fabio Erculiani
151a8ace81
Spritz: remove translatable flag for gtk-* in spritz.glade
2009-05-16 20:11:16 +02:00
Fabio Erculiani
974370acd8
Spritz: add gconf schema installation to Makefile
2009-05-16 18:54:13 +02:00
Fabio Erculiani
fa52f1becd
Spritz: add entropy:// URL handler protocol file for KDE4
0.93
2009-05-16 18:37:38 +02:00
Fabio Erculiani
81cd330204
Spritz: add gconf entropy:// url handler
2009-05-16 10:13:32 +02:00
Fabio Erculiani
a484b2e04a
Spritz: improve relaibility of URI handler
2009-05-16 00:19:29 +02:00
Fabio Erculiani
09856c808f
Spritz: add entropy:// URI handler
2009-05-16 00:14:42 +02:00
Fabio Erculiani
d11d7c20e6
Spritz: slightly improve arguments handling
2009-05-16 00:13:31 +02:00
Fabio Erculiani
08ff93b630
update translations
2009-05-15 23:58:50 +02:00
Fabio Erculiani
2d8a1e5e0c
Spritz: allow sys.argv parameters
2009-05-15 23:58:25 +02:00
Fabio Erculiani
05392f9b7f
Makefile: fix python2 compiler
2009-05-15 23:55:37 +02:00
Fabio Erculiani
e77dbd6b38
Makefile: fix smartapps wrapper install
2009-05-15 23:54:21 +02:00
Fabio Erculiani
18a3dccbaa
Spritz: add cmdline option to install atoms (--install <atom1> <atom2>)
2009-05-15 23:20:26 +02:00
Fabio Erculiani
1964ce702e
SpritzApplication: remove onInstall variable
2009-05-15 21:56:39 +02:00
Fabio Erculiani
268db6eec8
update TODO
2009-05-15 20:00:52 +02:00
Fabio Erculiani
dd79947faa
equo, smart apps generate: general code update
2009-05-15 20:00:20 +02:00
Fabio Erculiani
89ac49fc63
entropy.tools: remove deprecated functions
2009-05-15 19:35:35 +02:00
Fabio Erculiani
d80f2ebd74
entropy.tools: effectively move compressTarBz2 to compress_tar_bz2
2009-05-15 19:35:04 +02:00
Fabio Erculiani
d412435c2a
entropy.tools + smart: rename compressTarBz2 to compress_tar_bz2 and update smart app tools
2009-05-15 19:33:57 +02:00
Fabio Erculiani
aeca2ace65
entropy.tools: fix compressTarBz2
2009-05-15 19:33:18 +02:00
Fabio Erculiani
9081c3061f
update TODO
2009-05-15 18:14:38 +02:00
Fabio Erculiani
61b05e72d6
unit testing: add entropy.transceivers unit test module
2009-05-15 18:14:13 +02:00
Fabio Erculiani
43c94a6507
unit testing: append correct sys.path to every test class
2009-05-15 13:43:31 +02:00
Fabio Erculiani
31bf6773af
unit testing, add entropy.misc tests (specifically Lifo class test)
2009-05-15 13:43:05 +02:00
Fabio Erculiani
02034aaa39
entropy.misc: Lifo, improve performance
...
Dictionary counter is generally not needed thanks to max() and
thread-safety is now left to developer.
2009-05-15 13:29:07 +02:00
Fabio Erculiani
4bb7e2cbfc
update TODO
2009-05-15 10:15:33 +02:00
Fabio Erculiani
f93a86208b
entropy.server: implement branch flushback logic
...
Generally, when starting a new branch packages are not copied over
to avoid wasting disk space. So, old packages will be still pulled
in from old branch directories (under packages/). This commit adds
a function that automatically flush back old-branch packages into
the current one.
Let's say we have just bumped our repo from branch 1 to branch 2.
We have 3 packages into it that are still placed inside /packages/1.
Everything works until we decide to drop support from branch 1, in
this case, we would have to rebuild all these packages wasting a lot
of time. With "flushback" this is done automatically without touching
packages integrity.
2009-05-15 10:11:30 +02:00
Fabio Erculiani
eee6438980
entropy.server.interfaces.mirrors: change args on _sync_run_download_queue
...
_sync_run_download_queue accepted a list of tuples of size 2, there is
no need for such complex input since it just needs a plain path list.
Moreover, appending some code style updates too
2009-05-14 19:36:13 +02:00
Fabio Erculiani
c429d8c71c
entropy.server.interfaces.mirrors: code style update
2009-05-14 19:31:03 +02:00
Fabio Erculiani
1cf75a57dd
entropy.transceivers: urlFetcher class becomes UrlFetcher
2009-05-14 18:06:52 +02:00
Fabio Erculiani
9421572b1c
equo: during install queue output generation, handle installed repo information consistently
2009-05-14 10:54:46 +02:00
Fabio Erculiani
c0d0168d43
entropy.server: validate repos when moving/copying packages from a repo to another
2009-05-14 09:12:48 +02:00
Fabio Erculiani
51280ef68f
entropy.client.interfaces.package: remove unused install step "showmessages"
2009-05-14 09:05:30 +02:00
Fabio Erculiani
51204fd173
entropy: remove gentoo-compat option, always enabled
2009-05-14 09:04:37 +02:00
Fabio Erculiani
bc6cc73b43
entropy.client.interfaces.package: rename gentoo references to spm
2009-05-14 08:51:43 +02:00
Fabio Erculiani
3e1c336122
entropy.client: fix typo in __remove_package_from_gentoo_database when calling Spm.search_keys
2009-05-14 08:48:18 +02:00