summaryrefslogtreecommitdiff
path: root/portato/constants.py (unfollow)
Commit message (Expand)AuthorFilesLines
2007-06-230.7.5necoro2-1/+33
2007-06-23added updatable dialog also for gtknecoro4-199/+382
2007-06-20ignored None values in get_new_packages ... but now give a warning :)necoro1-2/+8
2007-06-19made the wget-status-bar work in the Qt-Terminalnecoro1-21/+71
2007-06-19added updated list to Qtnecoro2-10/+36
2007-06-18added updated list to Qtnecoro6-29/+192
2007-06-18fixed the listing of the ".svn" and "CVS" dirsnecoro3-5/+10
2007-06-18improved Qt-Terminalnecoro2-12/+27
2007-06-15better config-handlingnecoro6-117/+88
2007-06-15use optparse to parse cmdline optionsnecoro2-40/+42
2007-06-15added ebuild viewernecoro2-4/+6
2007-06-15added ability of passing "&&" to the sync commandnecoro5-9/+64
2007-06-15added ability of passing "&&" to the sync commandnecoro2-2/+4
2007-06-15added ability of passing "&&" to the sync commandnecoro1-4/+34
2007-06-14corrected the about-statementsnecoro3-3/+3
2007-06-12reverted back to png, but now using the image in the svgnecoro6-6/+5
2007-06-12renamed old png to *_old.pngnecoro1-0/+0
2007-06-12bug in setup.pynecoro1-1/+1
2007-06-12added svg-iconnecoro6-5/+149
2007-06-11follow GNOME HIG (at least a little)necoro1-199/+237
2007-06-10todo updatenecoro1-1/+5
2007-06-03nomsgnecoro2-3/+12
2007-06-03bug in PortageSystemnecoro1-1/+1
2007-06-010.7.4.1necoro1-1/+1
2007-06-01bugfixnecoro1-0/+1
2007-06-010.7.4necoro1-1/+1
2007-06-01Killed the segfault with PyQt-4.2necoro1-0/+1
2007-06-01Killed the segfault with PyQt-4.2necoro1-11/+11
2007-05-31Some interface changesnecoro5-19/+63
2007-05-31little bug fix in cb_revert_clicked()necoro1-1/+1
2007-05-15- added settings: gtk: console fontnecoro9-720/+822
2007-05-14made overlaylabel work in Qtnecoro2-1/+14
2007-05-14added the display of the masking reasonnecoro6-1/+19
2007-05-14filtering "--ask" fron EMERGE_DEFAULT_OPTSnecoro1-2/+8
2007-05-14filtering "--ask" fron EMERGE_DEFAULT_OPTSnecoro5-3/+27
2007-05-12now showing the overlaynecoro7-5/+35
2007-05-09added etcproposals-1.2 supportnecoro3-3/+31
2007-05-07added the ability of sorting the pkglist by installation statusnecoro7-208/+288
2007-04-27fixed bugs in gtk and qtnecoro2-20/+58
2007-04-26some more fixed bugsnecoro1-0/+1
2007-04-26some more fixed bugsnecoro4-7/+2
2007-04-26fixed bugsnecoro1-2/+2
2007-04-26nomsgnecoro1-1/+8
2007-04-26removed highlight plugin from normal portatonecoro2-46/+0
2007-04-26nomsgnecoro1-4/+4
2007-04-26highlight works -> reverting to oldnecoro1-1/+1
2007-04-26trying the new gtksourceviewnecoro5-6/+4
2007-04-25now considering non-existing files in /etc/portagenecoro1-2/+5
2007-04-25added systraynecoro6-20/+211
2007-04-25added noroot-optionnecoro7-11/+57
In the future, perhaps it will prove wise to exit(1) on partial writes. 2013-03-20ui-shared: squelch compiler warning.Jason A. Donenfeld1-0/+1 Since tail is initialized to 0, we will never get a warning on the last if statement, but recent gcc complains anyway. So, we initialize len as well. Future gcc versions should be able to optimize this out anyway. 2013-03-20cgit.mk: Use SHELL_PATH_SQ to run gen-version.shJohn Keeping1-1/+1 On some platforms (notably Solaris) /bin/sh doesn't support enough of POSIX for gen-version.sh to run. Git's Makefile provides SHELL_PATH_SQ to address this issue so we just have to use it. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20cgit.mk: don't rebuild everything if CGIT_VERSION changesJohn Keeping1-1/+8 If CGIT_VERSION is in CGIT_CFLAGS then a change in version (for example because you have committed your changes) causes all of the CGit objects to be rebuilt. Avoid this by using EXTRA_CPPFLAGS to add the version for only those files that are affected and make them depend on VERSION. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20ui-patch: use cgit_version not CGIT_VERSIONJohn Keeping1-1/+1 We already have a global cgit_version which is set from the #define'd CGIT_VERSION in cgit.c. Change ui-patch.c to use this so that we only need to rebuild cgit.o when the version changes. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-03-20Makefile: re-use Git's Makefile where possibleJohn Keeping3-119/+80 Git does quite a lot of platform-specific detection in its Makefile, which can result in it defining preprocessor variables that are used in its header files. If CGit does not define the same variables it can result in different sizes of some structures in different places in the same application. For example, on Solaris Git uses it's "compat" regex library which has a different sized regex_t structure than that available in the platform regex.h. This has a knock-on effect on the size of "struct rev_info" and leads to hard to diagnose runtime issues. In order to avoid all of this, introduce a "cgit.mk" file that includes Git's Makefile and make all of the existing logic apply to CGit's objects as well. This is slightly complicated because Git's Makefile must run in Git's directory, so all references to CGit files need to be prefixed with "../". In addition, OBJECTS is a simply expanded variable in Git's Makefile so we cannot just add our objects to it. Instead we must copy the two applicable rules into "cgit.mk". This has the advantage that we can split CGit-specific CFLAGS from Git's CFLAGS and hence avoid rebuilding all of Git whenever a CGit-specific value changes. Signed-off-by: John Keeping <john@keeping.me.uk> Acked-by: Jamie Couture <jamie.couture@gmail.com>