Estimated read time: 1 minutes
x86_64 fpms are reachable in my repo, as usual :)
Estimated read time: 1 minutes
glibc-2.5 has been uploaded to -current, check out the news here
Estimated read time: 1 minutes
as it was requested, now we have packaged documentation for the following languages: English, Arabic, Portuguese, Chinese (Simplified), Chinese (Hong Kong Cantonese), Chinese (Traditional), Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, Korean, Polish, Romanian, Russian, Slovak, Spanish and Swedish. you can install them by
pacman -S php-docs-XX
where XX is your language code, like "hu" for Hungarian and so on :)
Estimated read time: 1 minutes
Estimated read time: 1 minutes
Neon-0.26.1 has been uploaded to -current and all the necessary packages (ie. openoffice.org :)) have been updated, too. it was a challenge :)
Estimated read time: 1 minutes
i've uploaded Python-2.5 to a separate repo since lots of package will have to be rebuilt. once all the necessary packages are in the repo, we can merge the update to -current
Estimated read time: 1 minutes
i wanted to start compiling jacman (and all the libs required by it) from source using only free tools (gcj/ecj & the gnu classpath). it seems that the first dep (glazedlists) requires XMLEncoder, but it will be featured only in gcc-4.2.x. so calm down, we should wait.. :/
Estimated read time: 1 minutes
Estimated read time: 1 minutes
here is a small cmdline to query the temperature of a hdd using smartctl:
smartctl -a /dev/hdc|grep Celsius|sed 's/.* \([0-9]*\)$/\1/'
Estimated read time: 1 minutes
till now the download code was in pacman's code which was meant that every frontend had to have its own downlaad code - causing a big code duplication. today i've pushed 15 patches to the pacman darcs repo which moved this functionality finally to the library :)
the patches:
- new event: PM_TRANS_EVT_RETRIEVE_LOCAL
- pm_dlfnm can be a simple char *
- pre-register databases to avoid code duplication
- pacman: use the libalpm downloader code, drop our own
- util: link to libftp, too
- _alpm_sync_commit(): download the packages, too
- alpm_db_getinfo(): strip the newlines from the end of lines
- alpm_db_getinfo(): added a PM_DB_FIRSTSERVER property
- alpm_db_update() now handles downloading, too
- libalpm: moved in _alpm_db_setlastupdate() and _alpm_db_getlastupdate()
- _alpm_fetch_pkgurl(): added the usual _alpm prefix
- _alpm_handle_set_option() more error handling for proxyhost and xfercommand
- handle_free() memleak fixes
- libalpm: new function: alpm_fetch_pkgurl()
- libalpm: moved in the download code