From paketler-commits at pardus.org.tr Sat Dec 1 02:40:40 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 02:40:40 +0200 (EET)
Subject: [paketler-commits] r35808 - in
devel/applications/multimedia/mplayer: . files
Message-ID: <20071201004040.D1DC97C0024@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 02:40:40 2007
New Revision: 35808
Added:
devel/applications/multimedia/mplayer/files/default_gui_config.patch
devel/applications/multimedia/mplayer/files/dont_override_gui_conf.patch
devel/applications/multimedia/mplayer/files/noavisynthloader.patch
devel/applications/multimedia/mplayer/files/revert_stream_dvdnav_25191.patch
devel/applications/multimedia/mplayer/files/subtitle_load_error.patch
Modified:
devel/applications/multimedia/mplayer/actions.py
devel/applications/multimedia/mplayer/files/vobsub_emptystream_fix.patch
devel/applications/multimedia/mplayer/pspec.xml
Log:
- Fix gui cache settings saving, it is no longer reset to console default
- wma_decode bit/byte stuff
- subtitle loading fixes
- fixed a small dvd memleak
- revise empty vobsub patch, it does not count on strings anymore
BUG:COMMENT:6341
Modified: devel/applications/multimedia/mplayer/actions.py
=================================================================
--- devel/applications/multimedia/mplayer/actions.py (original)
+++ devel/applications/multimedia/mplayer/actions.py Sat Dec 1 02:40:40 2007
@@ -13,8 +13,8 @@
import os
WorkDir = "mplayer-%s" % get.srcVERSION().split("_", 1)[1]
-mp_version = "25191"
-ff_version = "11113"
+mp_version = "25220"
+ff_version = "11115"
def fixPermissions(dest):
for root, dirs, files in os.walk(dest):
Modified: devel/applications/multimedia/mplayer/files/vobsub_emptystream_fix.patch
=================================================================
--- devel/applications/multimedia/mplayer/files/vobsub_emptystream_fix.patch (original)
+++ devel/applications/multimedia/mplayer/files/vobsub_emptystream_fix.patch Sat Dec 1 02:40:40 2007
@@ -1,7 +1,7 @@
-diff -Nur mplayer-20071025-old/command.c mplayer-20071025/command.c
---- mplayer-20071025-old/command.c 2007-10-26 04:58:36.000000000 +0300
-+++ mplayer-20071025/command.c 2007-10-26 04:59:15.000000000 +0300
-@@ -1307,9 +1307,7 @@
+diff -Nur mplayer-20071130-old/command.c mplayer-20071130/command.c
+--- mplayer-20071130-old/command.c 2007-12-01 02:12:47.362742680 +0200
++++ mplayer-20071130/command.c 2007-12-01 02:14:47.492480183 +0200
+@@ -1312,9 +1312,7 @@
#endif
if (source == SUB_SOURCE_VOBSUB) {
@@ -12,10 +12,39 @@
} else if (source == SUB_SOURCE_SUBS) {
mpctx->set_of_sub_pos =
mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_SUBS];
-diff -Nur mplayer-20071025-old/mplayer.c mplayer-20071025/mplayer.c
---- mplayer-20071025-old/mplayer.c 2007-10-26 04:58:33.000000000 +0300
-+++ mplayer-20071025/mplayer.c 2007-10-26 04:59:15.000000000 +0300
-@@ -3161,9 +3161,10 @@
+@@ -1475,7 +1473,13 @@
+ case M_PROPERTY_GET:
+ if (!arg)
+ return M_PROPERTY_ERROR;
+- *(int *) arg = (is_cur_source) ? mpctx->global_sub_pos - offset : -1;
++ if (is_cur_source) {
++ *(int *) arg = mpctx->global_sub_pos - offset;
++ if (source == SUB_SOURCE_VOBSUB)
++ *(int *) arg = vobsub_get_id_by_index(vo_vobsub, *(int *) arg);
++ }
++ else
++ *(int *) arg = -1;
+ return M_PROPERTY_OK;
+ case M_PROPERTY_PRINT:
+ if (!arg)
+@@ -1490,8 +1494,11 @@
+ if (!arg)
+ return M_PROPERTY_ERROR;
+ if (*(int *) arg >= 0) {
+- mpctx->global_sub_pos = offset + *(int *) arg;
+- if (mpctx->global_sub_pos >= mpctx->global_sub_size
++ int index = *(int *)arg;
++ if (source == SUB_SOURCE_VOBSUB)
++ index = vobsub_get_index_by_id(vo_vobsub, index);
++ mpctx->global_sub_pos = offset + index;
++ if (index < 0 || mpctx->global_sub_pos >= mpctx->global_sub_size
+ || sub_source(mpctx) != source) {
+ mpctx->global_sub_pos = -1;
+ *(int *) arg = -1;
+diff -Nur mplayer-20071130-old/mplayer.c mplayer-20071130/mplayer.c
+--- mplayer-20071130-old/mplayer.c 2007-12-01 02:12:47.362742680 +0200
++++ mplayer-20071130/mplayer.c 2007-12-01 02:14:47.495479728 +0200
+@@ -3172,9 +3172,10 @@
if (mpctx->global_sub_size) {
// find the best sub to use
@@ -28,9 +57,9 @@
} else if (dvdsub_id >= 0 && mpctx->global_sub_indices[SUB_SOURCE_DEMUX] >= 0) {
// if user asks for a dvd sub id, use that next.
mpctx->global_sub_pos = mpctx->global_sub_indices[SUB_SOURCE_DEMUX] + dvdsub_id;
-diff -Nur mplayer-20071025-old/vobsub.c mplayer-20071025/vobsub.c
---- mplayer-20071025-old/vobsub.c 2007-10-26 04:58:36.000000000 +0300
-+++ mplayer-20071025/vobsub.c 2007-10-26 04:59:15.000000000 +0300
+diff -Nur mplayer-20071130-old/vobsub.c mplayer-20071130/vobsub.c
+--- mplayer-20071130-old/vobsub.c 2007-12-01 02:12:47.362742680 +0200
++++ mplayer-20071130/vobsub.c 2007-12-01 02:14:47.496479576 +0200
@@ -26,6 +26,9 @@
#include "libavutil/common.h"
@@ -66,20 +95,21 @@
vob->delay = 0;
vob->forced_subs=0;
buf = malloc(strlen(name) + 5);
-@@ -1165,8 +1172,11 @@
+@@ -1165,8 +1172,12 @@
}
}
vob->spu_streams_current = vob->spu_streams_size;
- while (vob->spu_streams_current-- > 0)
+ while (vob->spu_streams_current-- > 0) {
vob->spu_streams[vob->spu_streams_current].current_index = 0;
-+ if (vobsubid == vob->spu_streams_current || vob->spu_streams[vob->spu_streams_current].id)
++ if (vobsubid == vob->spu_streams_current ||
++ vob->spu_streams[vob->spu_streams_current].packets_size > 0)
+ ++vob->spu_valid_streams_size;
+ }
mpeg_free(mpg);
}
free(buf);
-@@ -1191,7 +1201,7 @@
+@@ -1191,7 +1202,7 @@
vobsub_get_indexes_count(void *vobhandle)
{
vobsub_t *vob = (vobsub_t *) vobhandle;
@@ -88,7 +118,7 @@
}
char *
-@@ -1201,6 +1211,33 @@
+@@ -1201,6 +1212,35 @@
return (index < vob->spu_streams_size) ? vob->spu_streams[index].id : NULL;
}
@@ -99,7 +129,7 @@
+ if (vob == NULL)
+ return -1;
+ for (i = 0, j = 0; i < vob->spu_streams_size; ++i)
-+ if (i == vobsubid || vob->spu_streams[i].id) {
++ if (i == vobsubid || vob->spu_streams[i].packets_size > 0) {
+ if (j == index)
+ return i;
+ ++j;
@@ -113,8 +143,10 @@
+ int i, j;
+ if (vob == NULL || id < 0 || id >= vob->spu_streams_size)
+ return -1;
++ if (id != vobsubid && !vob->spu_streams[id].packets_size)
++ return -1;
+ for (i = 0, j = 0; i < id; ++i)
-+ if (i == vobsubid || vob->spu_streams[i].id)
++ if (i == vobsubid || vob->spu_streams[i].packets_size > 0)
+ ++j;
+ return j;
+}
@@ -122,9 +154,9 @@
unsigned int
vobsub_get_forced_subs_flag(void const * const vobhandle)
{
-diff -Nur mplayer-20071025-old/vobsub.h mplayer-20071025/vobsub.h
---- mplayer-20071025-old/vobsub.h 2007-10-26 04:58:33.000000000 +0300
-+++ mplayer-20071025/vobsub.h 2007-10-26 04:59:15.000000000 +0300
+diff -Nur mplayer-20071130-old/vobsub.h mplayer-20071130/vobsub.h
+--- mplayer-20071130-old/vobsub.h 2007-12-01 02:12:47.362742680 +0200
++++ mplayer-20071130/vobsub.h 2007-12-01 02:14:47.501478816 +0200
@@ -10,6 +10,11 @@
extern unsigned int vobsub_get_indexes_count(void * /* vobhandle */);
extern char *vobsub_get_id(void * /* vobhandle */, unsigned int /* index */);
Modified: devel/applications/multimedia/mplayer/pspec.xml
=================================================================
--- devel/applications/multimedia/mplayer/pspec.xml (original)
+++ devel/applications/multimedia/mplayer/pspec.xml Sat Dec 1 02:40:40 2007
@@ -13,7 +13,7 @@
app:gui
Media Player for Linux
MPlayer is a movie player which runs on many systems.It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native, XAnim, and Win32 DLL codecs.
- http://cekirdek.pardus.org.tr/~onur/distfiles/mplayer-20071128.tar.gz
+ http://cekirdek.pardus.org.tr/~onur/distfiles/mplayer-20071130.tar.gz
xvid
essential
@@ -65,16 +65,25 @@
no_pause_in_configure.patch
nocompilemessage.patch
noframeskiplog.patch
+ subtitle_load_error.patch
+ noavisynthloader.patch
+
+ dont_override_gui_conf.patch
+ default_gui_config.patch
+
+
vo_keep_window_state.patch
vo_x11_clearwindow_part_on_expose.patch
+
vobsub_emptystream_fix.patch
vobsub_seek_delay_fix.patch
-
+
dvdnav-nominilibs.patch
revert_25052.patch
+ revert_stream_dvdnav_25191.patch
erase_to_eof.patch
@@ -173,6 +182,13 @@
+
+ 2007-11-30
+ 0.0_20071130
+ Fix gui cache settings saving, wma_decode, subtitle loading, dvd memleak, revise empty vobsub patch
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-29
0.0_20071128
From paketler-commits at pardus.org.tr Sat Dec 1 05:12:49 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 05:12:49 +0200 (EET)
Subject: [paketler-commits] r35809 -
devel/applications/network/mozilla/firefox
Message-ID: <20071201031249.B08F07C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 05:12:49 2007
New Revision: 35809
Modified:
devel/applications/network/mozilla/firefox/pspec.xml
Log:
Regression fix release
Modified: devel/applications/network/mozilla/firefox/pspec.xml
=================================================================
--- devel/applications/network/mozilla/firefox/pspec.xml (original)
+++ devel/applications/network/mozilla/firefox/pspec.xml Sat Dec 1 05:12:49 2007
@@ -14,7 +14,7 @@
app:gui
Firefox Web Browser
It is more secure and faster to browse the web with Firefox Web Browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences.
- http://cekirdek.pardus.org.tr/~ismail/dist/firefox-2.0.0.10-pardus.tar.bz2
+ http://cekirdek.pardus.org.tr/~ismail/dist/firefox-2.0.0.11-pardus.tar.bz2
xorg-server
fontconfig
@@ -158,6 +158,13 @@
+
+ 2007-12-01
+ 2.0.0.11
+ Regression fix release
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-11-27
2.0.0.10
From paketler-commits at pardus.org.tr Sat Dec 1 05:13:09 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 05:13:09 +0200 (EET)
Subject: [paketler-commits] r35810 -
devel/applications/network/mozilla/firefox
Message-ID: <20071201031309.383AD7C0029@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 05:13:08 2007
New Revision: 35810
Modified:
devel/applications/network/mozilla/firefox/actions.py
Log:
fix date
Modified: devel/applications/network/mozilla/firefox/actions.py
=================================================================
--- devel/applications/network/mozilla/firefox/actions.py (original)
+++ devel/applications/network/mozilla/firefox/actions.py Sat Dec 1 05:13:08 2007
@@ -12,7 +12,7 @@
WorkDir = "mozilla"
-shelltools.export("MOZ_BUILD_DATE", "2007112703")
+shelltools.export("MOZ_BUILD_DATE", "2007120105")
shelltools.export("BUILD_OFFICIAL", "1")
shelltools.export("MOZILLA_OFFICIAL", "1")
From paketler-commits at pardus.org.tr Sat Dec 1 05:13:32 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 05:13:32 +0200 (EET)
Subject: [paketler-commits] r35811 -
2007/applications/network/mozilla/firefox
Message-ID: <20071201031332.7DFBF7C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 05:13:32 2007
New Revision: 35811
Modified:
2007/applications/network/mozilla/firefox/actions.py
2007/applications/network/mozilla/firefox/pspec.xml
Log:
Regression fix release, merge
Modified: 2007/applications/network/mozilla/firefox/actions.py
=================================================================
--- 2007/applications/network/mozilla/firefox/actions.py (original)
+++ 2007/applications/network/mozilla/firefox/actions.py Sat Dec 1 05:13:32 2007
@@ -12,7 +12,7 @@
WorkDir = "mozilla"
-shelltools.export("MOZ_BUILD_DATE", "2007112703")
+shelltools.export("MOZ_BUILD_DATE", "2007120105")
shelltools.export("BUILD_OFFICIAL", "1")
shelltools.export("MOZILLA_OFFICIAL", "1")
Modified: 2007/applications/network/mozilla/firefox/pspec.xml
=================================================================
--- 2007/applications/network/mozilla/firefox/pspec.xml (original)
+++ 2007/applications/network/mozilla/firefox/pspec.xml Sat Dec 1 05:13:32 2007
@@ -14,7 +14,7 @@
app:gui
Firefox Web Browser
It is more secure and faster to browse the web with Firefox Web Browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences.
- http://cekirdek.pardus.org.tr/~ismail/dist/firefox-2.0.0.10-pardus.tar.bz2
+ http://cekirdek.pardus.org.tr/~ismail/dist/firefox-2.0.0.11-pardus.tar.bz2
xorg-server
fontconfig
@@ -158,6 +158,13 @@
+
+ 2007-12-01
+ 2.0.0.11
+ Regression fix release
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-11-27
2.0.0.10
From paketler-commits at pardus.org.tr Sat Dec 1 07:17:24 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 07:17:24 +0200 (EET)
Subject: [paketler-commits] r35812 - playground/ertugrul/experimantal/R
Message-ID: <20071201051724.835087C0028@liste.uludag.org.tr>
Author: ertugrul
Date: Sat Dec 1 07:17:24 2007
New Revision: 35812
Removed:
playground/ertugrul/experimantal/R/
Log:
gone devel
From paketler-commits at pardus.org.tr Sat Dec 1 09:20:11 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 09:20:11 +0200 (EET)
Subject: [paketler-commits] r35813 - in devel/applications/editors/vim: .
files files/official
Message-ID: <20071201072011.B1A127C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 09:20:11 2007
New Revision: 35813
Added:
devel/applications/editors/vim/files/official/7.1.042
devel/applications/editors/vim/files/official/7.1.043
devel/applications/editors/vim/files/official/7.1.044
devel/applications/editors/vim/files/official/7.1.045
devel/applications/editors/vim/files/official/7.1.046
devel/applications/editors/vim/files/official/7.1.047
devel/applications/editors/vim/files/official/7.1.048
devel/applications/editors/vim/files/official/7.1.049
devel/applications/editors/vim/files/official/7.1.050
devel/applications/editors/vim/files/official/7.1.051
devel/applications/editors/vim/files/official/7.1.052
devel/applications/editors/vim/files/official/7.1.053
devel/applications/editors/vim/files/official/7.1.054
devel/applications/editors/vim/files/official/7.1.055
devel/applications/editors/vim/files/official/7.1.056
devel/applications/editors/vim/files/official/7.1.057
devel/applications/editors/vim/files/official/7.1.058
devel/applications/editors/vim/files/official/7.1.059
devel/applications/editors/vim/files/official/7.1.060
devel/applications/editors/vim/files/official/7.1.061
devel/applications/editors/vim/files/official/7.1.062
devel/applications/editors/vim/files/official/7.1.063
devel/applications/editors/vim/files/official/7.1.064
devel/applications/editors/vim/files/official/7.1.066
devel/applications/editors/vim/files/official/7.1.067
devel/applications/editors/vim/files/official/7.1.068
devel/applications/editors/vim/files/official/7.1.069
devel/applications/editors/vim/files/official/7.1.071
devel/applications/editors/vim/files/official/7.1.073
devel/applications/editors/vim/files/official/7.1.074
devel/applications/editors/vim/files/official/7.1.075
devel/applications/editors/vim/files/official/7.1.076
devel/applications/editors/vim/files/official/7.1.077
devel/applications/editors/vim/files/official/7.1.078
devel/applications/editors/vim/files/official/7.1.079
devel/applications/editors/vim/files/official/7.1.081
devel/applications/editors/vim/files/official/7.1.082
devel/applications/editors/vim/files/official/7.1.083
devel/applications/editors/vim/files/official/7.1.084
devel/applications/editors/vim/files/official/7.1.085
devel/applications/editors/vim/files/official/7.1.086
devel/applications/editors/vim/files/official/7.1.087
devel/applications/editors/vim/files/official/7.1.089
devel/applications/editors/vim/files/official/7.1.090
devel/applications/editors/vim/files/official/7.1.093
devel/applications/editors/vim/files/official/7.1.094
devel/applications/editors/vim/files/official/7.1.095
devel/applications/editors/vim/files/official/7.1.096
devel/applications/editors/vim/files/official/7.1.097
devel/applications/editors/vim/files/official/7.1.098
devel/applications/editors/vim/files/official/7.1.099
devel/applications/editors/vim/files/official/7.1.100
devel/applications/editors/vim/files/official/7.1.101
devel/applications/editors/vim/files/official/7.1.102
devel/applications/editors/vim/files/official/7.1.103
devel/applications/editors/vim/files/official/7.1.104
devel/applications/editors/vim/files/official/7.1.105
devel/applications/editors/vim/files/official/7.1.106
devel/applications/editors/vim/files/official/7.1.107
devel/applications/editors/vim/files/official/7.1.108
devel/applications/editors/vim/files/official/7.1.109
devel/applications/editors/vim/files/official/7.1.110
devel/applications/editors/vim/files/official/7.1.111
devel/applications/editors/vim/files/official/7.1.112
devel/applications/editors/vim/files/official/7.1.113
devel/applications/editors/vim/files/official/7.1.114
devel/applications/editors/vim/files/official/7.1.115
devel/applications/editors/vim/files/official/7.1.116
devel/applications/editors/vim/files/official/7.1.117
devel/applications/editors/vim/files/official/7.1.118
devel/applications/editors/vim/files/official/7.1.119
devel/applications/editors/vim/files/official/7.1.120
devel/applications/editors/vim/files/official/7.1.121
devel/applications/editors/vim/files/official/7.1.122
devel/applications/editors/vim/files/official/7.1.123
devel/applications/editors/vim/files/official/7.1.125
devel/applications/editors/vim/files/official/7.1.127
devel/applications/editors/vim/files/official/7.1.130
devel/applications/editors/vim/files/official/7.1.131
devel/applications/editors/vim/files/official/7.1.132
devel/applications/editors/vim/files/official/7.1.133
devel/applications/editors/vim/files/official/7.1.135
devel/applications/editors/vim/files/official/7.1.136
devel/applications/editors/vim/files/official/7.1.137
devel/applications/editors/vim/files/official/7.1.138
devel/applications/editors/vim/files/official/7.1.139
devel/applications/editors/vim/files/official/7.1.140
devel/applications/editors/vim/files/official/7.1.141
devel/applications/editors/vim/files/official/7.1.142
devel/applications/editors/vim/files/official/7.1.143
devel/applications/editors/vim/files/official/7.1.144
devel/applications/editors/vim/files/official/7.1.145
devel/applications/editors/vim/files/official/7.1.147
devel/applications/editors/vim/files/official/7.1.148
devel/applications/editors/vim/files/official/7.1.149
devel/applications/editors/vim/files/official/7.1.150
devel/applications/editors/vim/files/official/7.1.151
devel/applications/editors/vim/files/official/7.1.152
devel/applications/editors/vim/files/official/7.1.153
devel/applications/editors/vim/files/official/7.1.154
devel/applications/editors/vim/files/official/7.1.155
devel/applications/editors/vim/files/official/7.1.156
devel/applications/editors/vim/files/official/7.1.157
devel/applications/editors/vim/files/official/7.1.159
devel/applications/editors/vim/files/official/7.1.160
devel/applications/editors/vim/files/official/7.1.161
devel/applications/editors/vim/files/official/7.1.162
devel/applications/editors/vim/files/official/7.1.163
devel/applications/editors/vim/files/official/7.1.164
Modified:
devel/applications/editors/vim/files/vim-7.1.040-diff_check.patch
devel/applications/editors/vim/pspec.xml
Log:
Update to patchlevel 164
Modified: devel/applications/editors/vim/files/vim-7.1.040-diff_check.patch
=================================================================
--- devel/applications/editors/vim/files/vim-7.1.040-diff_check.patch (original)
+++ devel/applications/editors/vim/files/vim-7.1.040-diff_check.patch Sat Dec 1 09:20:11 2007
@@ -78,12 +78,12 @@
if (*p_dex != NUL)
@@ -842,13 +853,14 @@
#ifdef FEAT_AUTOCMD
- ++autocmd_block; /* Avoid ShellCmdPost stuff */
+ block_autocmds(); /* Avoid ShellCmdPost stuff */
#endif
- (void)call_shell(cmd, SHELL_FILTER|SHELL_SILENT|SHELL_DOOUT);
+ retval = call_shell(cmd, SHELL_FILTER|SHELL_SILENT|SHELL_DOOUT);
#ifdef FEAT_AUTOCMD
- --autocmd_block;
+ unblock_autocmds();
#endif
vim_free(cmd);
}
Modified: devel/applications/editors/vim/pspec.xml
=================================================================
--- devel/applications/editors/vim/pspec.xml (original)
+++ devel/applications/editors/vim/pspec.xml Sat Dec 1 09:20:11 2007
@@ -57,6 +57,115 @@
official/7.1.038
official/7.1.039
official/7.1.040
+ official/7.1.042
+ official/7.1.043
+ official/7.1.044
+ official/7.1.045
+ official/7.1.046
+ official/7.1.047
+ official/7.1.048
+ official/7.1.049
+ official/7.1.050
+ official/7.1.051
+ official/7.1.052
+ official/7.1.053
+ official/7.1.054
+ official/7.1.055
+ official/7.1.056
+ official/7.1.057
+ official/7.1.058
+ official/7.1.059
+ official/7.1.060
+ official/7.1.061
+ official/7.1.062
+ official/7.1.063
+ official/7.1.064
+ official/7.1.066
+ official/7.1.067
+ official/7.1.068
+ official/7.1.069
+ official/7.1.071
+ official/7.1.073
+ official/7.1.074
+ official/7.1.075
+ official/7.1.076
+ official/7.1.077
+ official/7.1.078
+ official/7.1.079
+ official/7.1.081
+ official/7.1.082
+ official/7.1.083
+ official/7.1.084
+ official/7.1.085
+ official/7.1.086
+ official/7.1.087
+ official/7.1.089
+ official/7.1.090
+ official/7.1.093
+ official/7.1.094
+ official/7.1.095
+ official/7.1.096
+ official/7.1.097
+ official/7.1.098
+ official/7.1.099
+ official/7.1.100
+ official/7.1.101
+ official/7.1.102
+ official/7.1.103
+ official/7.1.104
+ official/7.1.105
+ official/7.1.106
+ official/7.1.107
+ official/7.1.108
+ official/7.1.109
+ official/7.1.110
+ official/7.1.111
+ official/7.1.112
+ official/7.1.113
+ official/7.1.114
+ official/7.1.115
+ official/7.1.116
+ official/7.1.117
+ official/7.1.118
+ official/7.1.119
+ official/7.1.120
+ official/7.1.121
+ official/7.1.122
+ official/7.1.123
+ official/7.1.125
+ official/7.1.127
+ official/7.1.130
+ official/7.1.131
+ official/7.1.132
+ official/7.1.133
+ official/7.1.135
+ official/7.1.136
+ official/7.1.137
+ official/7.1.138
+ official/7.1.139
+ official/7.1.140
+ official/7.1.141
+ official/7.1.142
+ official/7.1.143
+ official/7.1.144
+ official/7.1.145
+ official/7.1.147
+ official/7.1.148
+ official/7.1.149
+ official/7.1.150
+ official/7.1.151
+ official/7.1.152
+ official/7.1.153
+ official/7.1.154
+ official/7.1.155
+ official/7.1.156
+ official/7.1.157
+ official/7.1.159
+ official/7.1.160
+ official/7.1.161
+ official/7.1.162
+ official/7.1.163
+ official/7.1.164
pisi.patch
vim-7.1.040-diff_check.patch
@@ -89,6 +198,13 @@
+
+ 2007-12-01
+ 7.1.164
+ Update to patchlevel 164
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-08-31
7.1.40
From paketler-commits at pardus.org.tr Sat Dec 1 09:21:47 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 09:21:47 +0200 (EET)
Subject: [paketler-commits] r35814 - in 2007/applications/editors/vim: .
files files/official
Message-ID: <20071201072147.3439B7C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 09:21:46 2007
New Revision: 35814
Added:
2007/applications/editors/vim/files/official/7.1.042
2007/applications/editors/vim/files/official/7.1.043
2007/applications/editors/vim/files/official/7.1.044
2007/applications/editors/vim/files/official/7.1.045
2007/applications/editors/vim/files/official/7.1.046
2007/applications/editors/vim/files/official/7.1.047
2007/applications/editors/vim/files/official/7.1.048
2007/applications/editors/vim/files/official/7.1.049
2007/applications/editors/vim/files/official/7.1.050
2007/applications/editors/vim/files/official/7.1.051
2007/applications/editors/vim/files/official/7.1.052
2007/applications/editors/vim/files/official/7.1.053
2007/applications/editors/vim/files/official/7.1.054
2007/applications/editors/vim/files/official/7.1.055
2007/applications/editors/vim/files/official/7.1.056
2007/applications/editors/vim/files/official/7.1.057
2007/applications/editors/vim/files/official/7.1.058
2007/applications/editors/vim/files/official/7.1.059
2007/applications/editors/vim/files/official/7.1.060
2007/applications/editors/vim/files/official/7.1.061
2007/applications/editors/vim/files/official/7.1.062
2007/applications/editors/vim/files/official/7.1.063
2007/applications/editors/vim/files/official/7.1.064
2007/applications/editors/vim/files/official/7.1.066
2007/applications/editors/vim/files/official/7.1.067
2007/applications/editors/vim/files/official/7.1.068
2007/applications/editors/vim/files/official/7.1.069
2007/applications/editors/vim/files/official/7.1.071
2007/applications/editors/vim/files/official/7.1.073
2007/applications/editors/vim/files/official/7.1.074
2007/applications/editors/vim/files/official/7.1.075
2007/applications/editors/vim/files/official/7.1.076
2007/applications/editors/vim/files/official/7.1.077
2007/applications/editors/vim/files/official/7.1.078
2007/applications/editors/vim/files/official/7.1.079
2007/applications/editors/vim/files/official/7.1.081
2007/applications/editors/vim/files/official/7.1.082
2007/applications/editors/vim/files/official/7.1.083
2007/applications/editors/vim/files/official/7.1.084
2007/applications/editors/vim/files/official/7.1.085
2007/applications/editors/vim/files/official/7.1.086
2007/applications/editors/vim/files/official/7.1.087
2007/applications/editors/vim/files/official/7.1.089
2007/applications/editors/vim/files/official/7.1.090
2007/applications/editors/vim/files/official/7.1.093
2007/applications/editors/vim/files/official/7.1.094
2007/applications/editors/vim/files/official/7.1.095
2007/applications/editors/vim/files/official/7.1.096
2007/applications/editors/vim/files/official/7.1.097
2007/applications/editors/vim/files/official/7.1.098
2007/applications/editors/vim/files/official/7.1.099
2007/applications/editors/vim/files/official/7.1.100
2007/applications/editors/vim/files/official/7.1.101
2007/applications/editors/vim/files/official/7.1.102
2007/applications/editors/vim/files/official/7.1.103
2007/applications/editors/vim/files/official/7.1.104
2007/applications/editors/vim/files/official/7.1.105
2007/applications/editors/vim/files/official/7.1.106
2007/applications/editors/vim/files/official/7.1.107
2007/applications/editors/vim/files/official/7.1.108
2007/applications/editors/vim/files/official/7.1.109
2007/applications/editors/vim/files/official/7.1.110
2007/applications/editors/vim/files/official/7.1.111
2007/applications/editors/vim/files/official/7.1.112
2007/applications/editors/vim/files/official/7.1.113
2007/applications/editors/vim/files/official/7.1.114
2007/applications/editors/vim/files/official/7.1.115
2007/applications/editors/vim/files/official/7.1.116
2007/applications/editors/vim/files/official/7.1.117
2007/applications/editors/vim/files/official/7.1.118
2007/applications/editors/vim/files/official/7.1.119
2007/applications/editors/vim/files/official/7.1.120
2007/applications/editors/vim/files/official/7.1.121
2007/applications/editors/vim/files/official/7.1.122
2007/applications/editors/vim/files/official/7.1.123
2007/applications/editors/vim/files/official/7.1.125
2007/applications/editors/vim/files/official/7.1.127
2007/applications/editors/vim/files/official/7.1.130
2007/applications/editors/vim/files/official/7.1.131
2007/applications/editors/vim/files/official/7.1.132
2007/applications/editors/vim/files/official/7.1.133
2007/applications/editors/vim/files/official/7.1.135
2007/applications/editors/vim/files/official/7.1.136
2007/applications/editors/vim/files/official/7.1.137
2007/applications/editors/vim/files/official/7.1.138
2007/applications/editors/vim/files/official/7.1.139
2007/applications/editors/vim/files/official/7.1.140
2007/applications/editors/vim/files/official/7.1.141
2007/applications/editors/vim/files/official/7.1.142
2007/applications/editors/vim/files/official/7.1.143
2007/applications/editors/vim/files/official/7.1.144
2007/applications/editors/vim/files/official/7.1.145
2007/applications/editors/vim/files/official/7.1.147
2007/applications/editors/vim/files/official/7.1.148
2007/applications/editors/vim/files/official/7.1.149
2007/applications/editors/vim/files/official/7.1.150
2007/applications/editors/vim/files/official/7.1.151
2007/applications/editors/vim/files/official/7.1.152
2007/applications/editors/vim/files/official/7.1.153
2007/applications/editors/vim/files/official/7.1.154
2007/applications/editors/vim/files/official/7.1.155
2007/applications/editors/vim/files/official/7.1.156
2007/applications/editors/vim/files/official/7.1.157
2007/applications/editors/vim/files/official/7.1.159
2007/applications/editors/vim/files/official/7.1.160
2007/applications/editors/vim/files/official/7.1.161
2007/applications/editors/vim/files/official/7.1.162
2007/applications/editors/vim/files/official/7.1.163
2007/applications/editors/vim/files/official/7.1.164
2007/applications/editors/vim/files/vim-7.1.040-diff_check.patch
Modified:
2007/applications/editors/vim/actions.py
2007/applications/editors/vim/pspec.xml
Log:
Update to patchlevel 164, merge
Modified: 2007/applications/editors/vim/actions.py
=================================================================
--- 2007/applications/editors/vim/actions.py (original)
+++ 2007/applications/editors/vim/actions.py Sat Dec 1 09:21:46 2007
@@ -3,7 +3,7 @@
#
# Copyright 2005-2007 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
-# See the file http://www.gnu.org/copyleft/gpl.txt.
+# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
@@ -66,3 +66,5 @@
pisitools.dobin("src/vim")
pisitools.dosym("vim", "/usr/bin/vi")
+ # gdb looks at /bin/ex for editing, it should be linked to /usr/bin/vim
+ pisitools.dosym("vim", "/bin/ex")
Modified: 2007/applications/editors/vim/pspec.xml
=================================================================
--- 2007/applications/editors/vim/pspec.xml (original)
+++ 2007/applications/editors/vim/pspec.xml Sat Dec 1 09:21:46 2007
@@ -57,7 +57,117 @@
official/7.1.038
official/7.1.039
official/7.1.040
+ official/7.1.042
+ official/7.1.043
+ official/7.1.044
+ official/7.1.045
+ official/7.1.046
+ official/7.1.047
+ official/7.1.048
+ official/7.1.049
+ official/7.1.050
+ official/7.1.051
+ official/7.1.052
+ official/7.1.053
+ official/7.1.054
+ official/7.1.055
+ official/7.1.056
+ official/7.1.057
+ official/7.1.058
+ official/7.1.059
+ official/7.1.060
+ official/7.1.061
+ official/7.1.062
+ official/7.1.063
+ official/7.1.064
+ official/7.1.066
+ official/7.1.067
+ official/7.1.068
+ official/7.1.069
+ official/7.1.071
+ official/7.1.073
+ official/7.1.074
+ official/7.1.075
+ official/7.1.076
+ official/7.1.077
+ official/7.1.078
+ official/7.1.079
+ official/7.1.081
+ official/7.1.082
+ official/7.1.083
+ official/7.1.084
+ official/7.1.085
+ official/7.1.086
+ official/7.1.087
+ official/7.1.089
+ official/7.1.090
+ official/7.1.093
+ official/7.1.094
+ official/7.1.095
+ official/7.1.096
+ official/7.1.097
+ official/7.1.098
+ official/7.1.099
+ official/7.1.100
+ official/7.1.101
+ official/7.1.102
+ official/7.1.103
+ official/7.1.104
+ official/7.1.105
+ official/7.1.106
+ official/7.1.107
+ official/7.1.108
+ official/7.1.109
+ official/7.1.110
+ official/7.1.111
+ official/7.1.112
+ official/7.1.113
+ official/7.1.114
+ official/7.1.115
+ official/7.1.116
+ official/7.1.117
+ official/7.1.118
+ official/7.1.119
+ official/7.1.120
+ official/7.1.121
+ official/7.1.122
+ official/7.1.123
+ official/7.1.125
+ official/7.1.127
+ official/7.1.130
+ official/7.1.131
+ official/7.1.132
+ official/7.1.133
+ official/7.1.135
+ official/7.1.136
+ official/7.1.137
+ official/7.1.138
+ official/7.1.139
+ official/7.1.140
+ official/7.1.141
+ official/7.1.142
+ official/7.1.143
+ official/7.1.144
+ official/7.1.145
+ official/7.1.147
+ official/7.1.148
+ official/7.1.149
+ official/7.1.150
+ official/7.1.151
+ official/7.1.152
+ official/7.1.153
+ official/7.1.154
+ official/7.1.155
+ official/7.1.156
+ official/7.1.157
+ official/7.1.159
+ official/7.1.160
+ official/7.1.161
+ official/7.1.162
+ official/7.1.163
+ official/7.1.164
pisi.patch
+ vim-7.1.040-diff_check.patch
@@ -70,6 +180,7 @@
/usr/bin
+ /bin
/usr/share/vim
/usr/share/man
/usr/share/doc
@@ -87,6 +198,20 @@
+
+ 2007-12-01
+ 7.1.164
+ Update to patchlevel 164
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
+
+ 2007-08-31
+ 7.1.40
+ Correctly detect failing diff. Symlink /bin/ex to /usr/bin/vim, gdb looks at /bin/ex.
+ Eren Türkay
+ turkay.eren at gmail.com
+
2007-07-27
7.1.40
From paketler-commits at pardus.org.tr Sat Dec 1 11:08:42 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 11:08:42 +0200 (EET)
Subject: [paketler-commits] r35815 - playground/cartman/gcc
Message-ID: <20071201090842.1F59C7C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 11:08:41 2007
New Revision: 35815
Modified:
playground/cartman/gcc/pspec.xml
Log:
new snapshot
Modified: playground/cartman/gcc/pspec.xml
=================================================================
--- playground/cartman/gcc/pspec.xml (original)
+++ playground/cartman/gcc/pspec.xml Sat Dec 1 11:08:41 2007
@@ -13,7 +13,7 @@
app:console
The GNU Compiler Collection. Includes C/C++,Objective-C and Fortran compilers
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages (libstdc++, libgcj,...)
- http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071130.tar.bz2
+ http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071201.tar.bz2
zlib
binutils
@@ -77,8 +77,8 @@
- 2007-11-30
- 4.3_pre20071130
+ 2007-12-01
+ 4.3_pre20071201
Update to 4.3 branch
İsmail Dönmez
ismail at pardus.org.tr
From paketler-commits at pardus.org.tr Sat Dec 1 13:01:01 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 13:01:01 +0200 (EET)
Subject: [paketler-commits] r35816 - in devel/applications/emulators/wine: .
files
Message-ID: <20071201110101.67E8D7C0028@liste.uludag.org.tr>
Author: fatih
Date: Sat Dec 1 13:01:01 2007
New Revision: 35816
Modified:
devel/applications/emulators/wine/files/wine-userdirs.patch
devel/applications/emulators/wine/pspec.xml
Log:
Version bump
Modified: devel/applications/emulators/wine/files/wine-userdirs.patch
=================================================================
--- devel/applications/emulators/wine/files/wine-userdirs.patch (original)
+++ devel/applications/emulators/wine/files/wine-userdirs.patch Sat Dec 1 13:01:01 2007
@@ -2,16 +2,15 @@
===================================================================
--- dlls/shell32/shellpath.c.orig
+++ dlls/shell32/shellpath.c
-@@ -2019,7 +2019,7 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2019,7 +2019,6 @@ static void _SHCreateSymbolicLinks(void)
char szMyStuffTarget[FILENAME_MAX], *pszMyStuff;
char szDesktopTarget[FILENAME_MAX], *pszDesktop;
struct stat statFolder;
- const char *pszHome;
-+// const char *pszHome;
HRESULT hr;
/* Create all necessary profile sub-dirs up to 'My Documents' and get the unix path. */
-@@ -2029,32 +2029,32 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2029,32 +2028,6 @@ static void _SHCreateSymbolicLinks(void)
pszPersonal = wine_get_unix_file_name(wszTempPath);
if (!pszPersonal) return;
@@ -41,68 +40,34 @@
- }
- else
- {
-+// pszHome = getenv("HOME");
-+// if (pszHome && !stat(pszHome, &statFolder) && S_ISDIR(statFolder.st_mode)) {
-+// strcpy(szPersonalTarget, pszHome);
-+// if (_SHAppendToUnixPath(szPersonalTarget, MAKEINTRESOURCEW(IDS_PERSONAL)) &&
-+// !stat(szPersonalTarget, &statFolder) && S_ISDIR(statFolder.st_mode))
-+// {
-+// /* '$HOME/My Documents' exists. Create 'My Pictures', 'My Videos' and
-+// * 'My Music' subfolders or fail silently if they already exist. */
-+// for (i = 0; i < sizeof(aidsMyStuff)/sizeof(aidsMyStuff[0]); i++) {
-+// strcpy(szMyStuffTarget, szPersonalTarget);
-+// if (_SHAppendToUnixPath(szMyStuffTarget, MAKEINTRESOURCEW(aidsMyStuff[i])))
-+// mkdir(szMyStuffTarget, 0777);
-+// }
-+// }
-+// else
-+// {
-+// /* '$HOME/My Documents' doesn't exists, but '$HOME' does. */
-+// strcpy(szPersonalTarget, pszHome);
-+// }
-+//
-+// /* Replace 'My Documents' directory with a symlink of fail silently if not empty. */
-+// rmdir(pszPersonal);
-+// symlink(szPersonalTarget, pszPersonal);
-+// }
-+// else
-+// {
/* '$HOME' doesn't exist. Create 'My Pictures', 'My Videos' and 'My Music' subdirs
* in '%USERPROFILE%\\My Documents' or fail silently if they already exist. */
strcpy(szPersonalTarget, pszPersonal);
-@@ -2063,7 +2063,7 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2063,7 +2036,6 @@ static void _SHCreateSymbolicLinks(void)
if (_SHAppendToUnixPath(szMyStuffTarget, MAKEINTRESOURCEW(aidsMyStuff[i])))
mkdir(szMyStuffTarget, 0777);
}
- }
-+// }
- HeapFree(GetProcessHeap(), 0, pszPersonal);
-
-@@ -2087,14 +2087,14 @@ static void _SHCreateSymbolicLinks(void)
- else
- {
- /* Else link to where 'My Documents' itself links to. */
+ /* Create symbolic links for 'My Pictures', 'My Video' and 'My Music'. */
+ for (i=0; i < sizeof(aidsMyStuff)/sizeof(aidsMyStuff[0]); i++) {
+@@ -2082,19 +2054,10 @@ static void _SHCreateSymbolicLinks(void)
+ rmdir(pszMyStuff);
+ symlink(szMyStuffTarget, pszMyStuff);
+ }
+- else
+- {
+- /* Else link to where 'My Documents' itself links to. */
- rmdir(pszMyStuff);
- symlink(szPersonalTarget, pszMyStuff);
-+ /*rmdir(pszMyStuff);
-+ symlink(szPersonalTarget, pszMyStuff);*/
- }
+- }
HeapFree(GetProcessHeap(), 0, pszMyStuff);
}
/* Last but not least, the Desktop folder */
-- strcpy(szDesktopTarget, pszHome);
-+ /*strcpy(szDesktopTarget, pszHome);
- if (_SHAppendToUnixPath(szDesktopTarget, DesktopW) &&
- !stat(szDesktopTarget, &statFolder) && S_ISDIR(statFolder.st_mode))
- {
-@@ -2106,7 +2106,7 @@ static void _SHCreateSymbolicLinks(void)
- symlink(szDesktopTarget, pszDesktop);
- HeapFree(GetProcessHeap(), 0, pszDesktop);
- }
-- }
-+ }*/
- }
+- if (pszHome)
+- strcpy(szDesktopTarget, pszHome);
+- else
+ strcpy(szDesktopTarget, pszPersonal);
+ HeapFree(GetProcessHeap(), 0, pszPersonal);
- /* Register the default values in the registry, as some apps seem to depend
Modified: devel/applications/emulators/wine/pspec.xml
=================================================================
--- devel/applications/emulators/wine/pspec.xml (original)
+++ devel/applications/emulators/wine/pspec.xml Sat Dec 1 13:01:01 2007
@@ -13,7 +13,7 @@
app:console
An emulator which lets you run windows applications
Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work.
- mirrors://sourceforge/wine/wine-0.9.49.tar.bz2
+ mirrors://sourceforge/wine/wine-0.9.50.tar.bz2
lcms
fontforge
@@ -96,7 +96,7 @@
wine-devel
- wine
+ wine
/usr/bin/function_grep.pl
@@ -114,6 +114,13 @@
+
+ 2007-12-01
+ 0.9.50
+ Version bump.
+ Fatih Aşıcı
+ fatih at pardus.org.tr
+
2007-11-10
0.9.49
From buildfarm at pardus.org.tr Sat Dec 1 14:01:33 2007
From: buildfarm at pardus.org.tr (Pardus Buildfarm)
Date: Sat, 1 Dec 2007 14:01:33 +0200 (EET)
Subject: [paketler-commits] [buildfarm] info
Message-ID: <20071201120133.D013361C8CA6@uludag.org.tr>
Hello,
This message is sent from Pardus buildfarm. Please do not reply as it is automatically generated.
I'm starting to compile following packages:
applications/editors/vim/pspec.xml
applications/network/mozilla/firefox/pspec.xml
Happy hacking!
From buildfarm at pardus.org.tr Sat Dec 1 14:22:36 2007
From: buildfarm at pardus.org.tr (Pardus Buildfarm)
Date: Sat, 1 Dec 2007 14:22:36 +0200 (EET)
Subject: [paketler-commits] [buildfarm] info
Message-ID: <20071201122236.BBAFE61C88D4@uludag.org.tr>
Hello,
This message is sent from Pardus buildfarm. Please do not reply as it is automatically generated.
Queue finished without a problem!...
New binary packages are;
firefox-2.0.0.11-73-65.pisi
firefox-devel-2.0.0.11-73-38.pisi
vim-7.1.164-31-19.pisi
now in repository...
Happy hacking!
From paketler-commits at pardus.org.tr Sat Dec 1 16:51:53 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 16:51:53 +0200 (EET)
Subject: [paketler-commits] r35817 - 2007/desktop/gnome/gstreamer
Message-ID: <20071201145153.F2F177C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 16:51:53 2007
New Revision: 35817
Modified:
2007/desktop/gnome/gstreamer/actions.py
2007/desktop/gnome/gstreamer/pspec.xml
Log:
stable update
Modified: 2007/desktop/gnome/gstreamer/actions.py
=================================================================
--- 2007/desktop/gnome/gstreamer/actions.py (original)
+++ 2007/desktop/gnome/gstreamer/actions.py Sat Dec 1 16:51:53 2007
@@ -3,7 +3,7 @@
#
# Copyright 2005-2007 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
-# See the file http://www.gnu.org/copyleft/gpl.txt.
+# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
Modified: 2007/desktop/gnome/gstreamer/pspec.xml
=================================================================
--- 2007/desktop/gnome/gstreamer/pspec.xml (original)
+++ 2007/desktop/gnome/gstreamer/pspec.xml Sat Dec 1 16:51:53 2007
@@ -3,16 +3,16 @@
gstreamer
- http://gstreamer.sourceforge.net
+ http://gstreamer.freedesktop.org
Bahadır Kandemir
bahadir at pardus.org.tr
- LGPL-2
+ LGPL-2.1
library
Streaming media framework
GStreamer is the core library. It contains the headers, core library files, and core elements.
- http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.13.tar.gz
+ http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.15.tar.gz
libxml2
@@ -35,6 +35,20 @@
+
+ 2007-11-16
+ 0.10.15
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
+
+ 2007-08-03
+ 0.10.14
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-06-05
0.10.13
From paketler-commits at pardus.org.tr Sat Dec 1 16:52:18 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 16:52:18 +0200 (EET)
Subject: [paketler-commits] r35818 - 2007/desktop/gnome/gst-plugins-base
Message-ID: <20071201145218.2B4F67C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 16:52:17 2007
New Revision: 35818
Modified:
2007/desktop/gnome/gst-plugins-base/actions.py
2007/desktop/gnome/gst-plugins-base/pspec.xml
Log:
stable update
Modified: 2007/desktop/gnome/gst-plugins-base/actions.py
=================================================================
--- 2007/desktop/gnome/gst-plugins-base/actions.py (original)
+++ 2007/desktop/gnome/gst-plugins-base/actions.py Sat Dec 1 16:52:17 2007
@@ -3,7 +3,7 @@
#
# Copyright 2005,2006 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
-# See the file http://www.gnu.org/copyleft/gpl.txt.
+# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
Modified: 2007/desktop/gnome/gst-plugins-base/pspec.xml
=================================================================
--- 2007/desktop/gnome/gst-plugins-base/pspec.xml (original)
+++ 2007/desktop/gnome/gst-plugins-base/pspec.xml Sat Dec 1 16:52:17 2007
@@ -12,9 +12,9 @@
library
Basepack of plugins for gstreamer
GStreamer Base Plug-ins is a well-groomed and well-maintained collection of GStreamer plug-ins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included.
- http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.13.tar.gz
+ http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.15.tar.gz
- gstreamer
+ gstreamer
liboil
libtheora
cdparanoia
@@ -28,7 +28,7 @@
gst-plugins-base
- gstreamer
+ gstreamer
liboil
libtheora
cdparanoia
@@ -51,6 +51,20 @@
+
+ 2007-11-16
+ 0.10.15
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
+
+ 2007-08-03
+ 0.10.14
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-06-05
0.10.13
From paketler-commits at pardus.org.tr Sat Dec 1 16:57:33 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 16:57:33 +0200 (EET)
Subject: [paketler-commits] r35819 - in 2007/applications/emulators/wine: .
files
Message-ID: <20071201145733.F404B7C0028@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 16:57:33 2007
New Revision: 35819
Modified:
2007/applications/emulators/wine/files/wine-userdirs.patch
2007/applications/emulators/wine/pspec.xml
Log:
merge
Modified: 2007/applications/emulators/wine/files/wine-userdirs.patch
=================================================================
--- 2007/applications/emulators/wine/files/wine-userdirs.patch (original)
+++ 2007/applications/emulators/wine/files/wine-userdirs.patch Sat Dec 1 16:57:33 2007
@@ -2,16 +2,15 @@
===================================================================
--- dlls/shell32/shellpath.c.orig
+++ dlls/shell32/shellpath.c
-@@ -2019,7 +2019,7 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2019,7 +2019,6 @@ static void _SHCreateSymbolicLinks(void)
char szMyStuffTarget[FILENAME_MAX], *pszMyStuff;
char szDesktopTarget[FILENAME_MAX], *pszDesktop;
struct stat statFolder;
- const char *pszHome;
-+// const char *pszHome;
HRESULT hr;
/* Create all necessary profile sub-dirs up to 'My Documents' and get the unix path. */
-@@ -2029,32 +2029,32 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2029,32 +2028,6 @@ static void _SHCreateSymbolicLinks(void)
pszPersonal = wine_get_unix_file_name(wszTempPath);
if (!pszPersonal) return;
@@ -41,68 +40,34 @@
- }
- else
- {
-+// pszHome = getenv("HOME");
-+// if (pszHome && !stat(pszHome, &statFolder) && S_ISDIR(statFolder.st_mode)) {
-+// strcpy(szPersonalTarget, pszHome);
-+// if (_SHAppendToUnixPath(szPersonalTarget, MAKEINTRESOURCEW(IDS_PERSONAL)) &&
-+// !stat(szPersonalTarget, &statFolder) && S_ISDIR(statFolder.st_mode))
-+// {
-+// /* '$HOME/My Documents' exists. Create 'My Pictures', 'My Videos' and
-+// * 'My Music' subfolders or fail silently if they already exist. */
-+// for (i = 0; i < sizeof(aidsMyStuff)/sizeof(aidsMyStuff[0]); i++) {
-+// strcpy(szMyStuffTarget, szPersonalTarget);
-+// if (_SHAppendToUnixPath(szMyStuffTarget, MAKEINTRESOURCEW(aidsMyStuff[i])))
-+// mkdir(szMyStuffTarget, 0777);
-+// }
-+// }
-+// else
-+// {
-+// /* '$HOME/My Documents' doesn't exists, but '$HOME' does. */
-+// strcpy(szPersonalTarget, pszHome);
-+// }
-+//
-+// /* Replace 'My Documents' directory with a symlink of fail silently if not empty. */
-+// rmdir(pszPersonal);
-+// symlink(szPersonalTarget, pszPersonal);
-+// }
-+// else
-+// {
/* '$HOME' doesn't exist. Create 'My Pictures', 'My Videos' and 'My Music' subdirs
* in '%USERPROFILE%\\My Documents' or fail silently if they already exist. */
strcpy(szPersonalTarget, pszPersonal);
-@@ -2063,7 +2063,7 @@ static void _SHCreateSymbolicLinks(void)
+@@ -2063,7 +2036,6 @@ static void _SHCreateSymbolicLinks(void)
if (_SHAppendToUnixPath(szMyStuffTarget, MAKEINTRESOURCEW(aidsMyStuff[i])))
mkdir(szMyStuffTarget, 0777);
}
- }
-+// }
- HeapFree(GetProcessHeap(), 0, pszPersonal);
-
-@@ -2087,14 +2087,14 @@ static void _SHCreateSymbolicLinks(void)
- else
- {
- /* Else link to where 'My Documents' itself links to. */
+ /* Create symbolic links for 'My Pictures', 'My Video' and 'My Music'. */
+ for (i=0; i < sizeof(aidsMyStuff)/sizeof(aidsMyStuff[0]); i++) {
+@@ -2082,19 +2054,10 @@ static void _SHCreateSymbolicLinks(void)
+ rmdir(pszMyStuff);
+ symlink(szMyStuffTarget, pszMyStuff);
+ }
+- else
+- {
+- /* Else link to where 'My Documents' itself links to. */
- rmdir(pszMyStuff);
- symlink(szPersonalTarget, pszMyStuff);
-+ /*rmdir(pszMyStuff);
-+ symlink(szPersonalTarget, pszMyStuff);*/
- }
+- }
HeapFree(GetProcessHeap(), 0, pszMyStuff);
}
/* Last but not least, the Desktop folder */
-- strcpy(szDesktopTarget, pszHome);
-+ /*strcpy(szDesktopTarget, pszHome);
- if (_SHAppendToUnixPath(szDesktopTarget, DesktopW) &&
- !stat(szDesktopTarget, &statFolder) && S_ISDIR(statFolder.st_mode))
- {
-@@ -2106,7 +2106,7 @@ static void _SHCreateSymbolicLinks(void)
- symlink(szDesktopTarget, pszDesktop);
- HeapFree(GetProcessHeap(), 0, pszDesktop);
- }
-- }
-+ }*/
- }
+- if (pszHome)
+- strcpy(szDesktopTarget, pszHome);
+- else
+ strcpy(szDesktopTarget, pszPersonal);
+ HeapFree(GetProcessHeap(), 0, pszPersonal);
- /* Register the default values in the registry, as some apps seem to depend
Modified: 2007/applications/emulators/wine/pspec.xml
=================================================================
--- 2007/applications/emulators/wine/pspec.xml (original)
+++ 2007/applications/emulators/wine/pspec.xml Sat Dec 1 16:57:33 2007
@@ -13,7 +13,7 @@
app:console
An emulator which lets you run windows applications
Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work.
- mirrors://sourceforge/wine/wine-0.9.49.tar.bz2
+ mirrors://sourceforge/wine/wine-0.9.50.tar.bz2
lcms
fontforge
@@ -96,7 +96,7 @@
wine-devel
- wine
+ wine
/usr/bin/function_grep.pl
@@ -114,6 +114,13 @@
+
+ 2007-12-01
+ 0.9.50
+ Version bump.
+ Fatih Aşıcı
+ fatih at pardus.org.tr
+
2007-11-10
0.9.49
From paketler-commits at pardus.org.tr Sat Dec 1 21:51:20 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 21:51:20 +0200 (EET)
Subject: [paketler-commits] r35820 -
playground/onur/applications/network/rutilt
Message-ID: <20071201195120.7A8527C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 21:51:20 2007
New Revision: 35820
Added:
playground/onur/applications/network/rutilt/
- copied from r35819, devel/applications/network/rutilt/
Log:
hssssss
From paketler-commits at pardus.org.tr Sat Dec 1 21:53:46 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 21:53:46 +0200 (EET)
Subject: [paketler-commits] r35821 -
playground/onur/applications/network/rutilt
Message-ID: <20071201195346.C5EAD7C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 21:53:46 2007
New Revision: 35821
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
grrrrr
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 21:53:46 2007
@@ -13,7 +13,7 @@
app:gui
Wireless configuration tool
Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. While using rutilt, you need to manually put interface up, for example by setting its ip address to 0.0.0.0 in network-manager.
- http://cbbk.free.fr/bonrom/files/RutilTv0.15.tar.gz
+ http://cbbk.free.fr/bonrom/files/RutilTv0.16.tar.gz
gtk2
@@ -53,6 +53,13 @@
+
+ 2007-12-01
+ 0.16
+ Version vump, fixes bug #6522 again
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-10
0.15
From paketler-commits at pardus.org.tr Sat Dec 1 21:59:39 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 21:59:39 +0200 (EET)
Subject: [paketler-commits] r35822 - in
playground/onur/applications/network/rutilt: . files
Message-ID: <20071201195939.1B7D47C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 21:59:38 2007
New Revision: 35822
Removed:
playground/onur/applications/network/rutilt/files/ELF_location.patch
playground/onur/applications/network/rutilt/files/about_comment.patch
playground/onur/applications/network/rutilt/files/ctype_usage.patch
playground/onur/applications/network/rutilt/files/extraction_checks.patch
playground/onur/applications/network/rutilt/files/install_failure.patch
playground/onur/applications/network/rutilt/files/make_dialogs_transient.patch
playground/onur/applications/network/rutilt/files/row_toggled.patch
playground/onur/applications/network/rutilt/files/trayicon_toggle.patch
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
these made into upstream, nice
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 21:59:38 2007
@@ -18,20 +18,14 @@
gtk2
- ctype_usage.patch
- extraction_checks.patch
+
external_helper.patch
From paketler-commits at pardus.org.tr Sat Dec 1 22:10:25 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 22:10:25 +0200 (EET)
Subject: [paketler-commits] r35823 - in
playground/onur/applications/network/rutilt: . files
Message-ID: <20071201201025.C73A17C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 22:10:25 2007
New Revision: 35823
Removed:
playground/onur/applications/network/rutilt/files/cflags.patch
playground/onur/applications/network/rutilt/files/install.patch
Modified:
playground/onur/applications/network/rutilt/files/desktop.patch
playground/onur/applications/network/rutilt/pspec.xml
Log:
sync patches, remove unneeded anymore
Modified: playground/onur/applications/network/rutilt/files/desktop.patch
=================================================================
--- playground/onur/applications/network/rutilt/files/desktop.patch (original)
+++ playground/onur/applications/network/rutilt/files/desktop.patch Sat Dec 1 22:10:25 2007
@@ -1,7 +1,7 @@
-diff -Nur RutilTv0.15-old/configure.sh RutilTv0.15/configure.sh
---- RutilTv0.15-old/configure.sh 2007-11-10 20:18:39.977489959 +0200
-+++ RutilTv0.15/configure.sh 2007-11-10 20:21:23.603615006 +0200
-@@ -248,17 +248,19 @@
+diff -Nur RutilTv0.16-old/configure.sh RutilTv0.16/configure.sh
+--- RutilTv0.16-old/configure.sh 2007-12-01 22:05:00.627993402 +0200
++++ RutilTv0.16/configure.sh 2007-12-01 22:06:29.902421626 +0200
+@@ -284,10 +284,12 @@
# rutilt.desktop
echo -n "Generating desktop launcher... "
echo "[Desktop Entry]
@@ -9,18 +9,9 @@
+Name=RutilT
+Name[tr]=RutilT
Name[fr]=Utilitaire de Configuration Wifi RutilT
+ Name[it]=Strumento di Configurazione WiFi RutilT
GenericName=WLAN Manager
+GenericName[tr]=WLAN Yönetici
GenericName[fr]=Utilitaire de Configuration Wifi
+ GenericName[it]=Strumento di Configurazione WiFi
Comment=Manage your wireless network interfaces
- Comment[fr]=Configurer vos cartes Wifi
- Terminal=false
- Type=Application
- Encoding=UTF-8
--Categories=GTK;System;Settings;Application;Network
--Version=0.14
-+Categories=GTK;System;Settings;Network;
-+Version=1.0
- StartupNotify=false
- Icon=$prefix/$icon_prefix$icon_64x64_name
- Exec=$rutilt_name" > $desktop_launcher_name
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 22:10:25 2007
@@ -18,11 +18,9 @@
gtk2
+ desktop.patch
From paketler-commits at pardus.org.tr Sat Dec 1 22:10:43 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 22:10:43 +0200 (EET)
Subject: [paketler-commits] r35824 -
playground/onur/applications/network/rutilt
Message-ID: <20071201201043.C5BD47C0031@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 22:10:43 2007
New Revision: 35824
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
nicer
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 22:10:43 2007
@@ -18,12 +18,12 @@
gtk2
- desktop.patch
+ desktop.patch
external_helper.patch
From paketler-commits at pardus.org.tr Sat Dec 1 22:11:50 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 22:11:50 +0200 (EET)
Subject: [paketler-commits] r35825 - in
playground/onur/applications/network/rutilt: . files
Message-ID: <20071201201150.64E737C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 22:11:50 2007
New Revision: 35825
Removed:
playground/onur/applications/network/rutilt/files/refresh_rate_crash.patch
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
already in
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 22:11:50 2007
@@ -20,7 +20,6 @@
desktop.patch
From paketler-commits at pardus.org.tr Sat Dec 1 22:14:51 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 22:14:51 +0200 (EET)
Subject: [paketler-commits] r35826 - in
playground/onur/applications/network/rutilt: . files
Message-ID: <20071201201451.683E37C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 22:14:51 2007
New Revision: 35826
Removed:
playground/onur/applications/network/rutilt/files/ap_address.patch
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
already in
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 22:14:51 2007
@@ -20,7 +20,6 @@
desktop.patch
external_helper.patch
From paketler-commits at pardus.org.tr Sat Dec 1 22:19:23 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 22:19:23 +0200 (EET)
Subject: [paketler-commits] r35827 -
playground/onur/applications/network/rutilt
Message-ID: <20071201201924.07A5E7C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 22:19:23 2007
New Revision: 35827
Modified:
playground/onur/applications/network/rutilt/actions.py
playground/onur/applications/network/rutilt/pspec.xml
Log:
adapt to new dirs
Modified: playground/onur/applications/network/rutilt/actions.py
=================================================================
--- playground/onur/applications/network/rutilt/actions.py (original)
+++ playground/onur/applications/network/rutilt/actions.py Sat Dec 1 22:19:23 2007
@@ -24,6 +24,6 @@
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dosym("/usr/share/pixmaps/rutilt/RutilT128x128.png", "/usr/share/pixmaps/rutilt.png")
+ pisitools.dosym("/usr/share/icons/hicolor/128x128/apps/rutilt.png", "/usr/share/pixmaps/rutilt.png")
pisitools.dodoc("AUTHORS", "COPYING", "README*")
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 22:19:23 2007
@@ -37,8 +37,9 @@
/usr/share/applications
/usr/share/doc
/usr/share/man
+ /usr/share/icons
/usr/share/pixmaps
- /usr/share/rutilt
+ /usr/share/apps/rutilt
From paketler-commits at pardus.org.tr Sat Dec 1 23:08:20 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:08:20 +0200 (EET)
Subject: [paketler-commits] r35828 - in
playground/onur/applications/network/rutilt: . files
Message-ID: <20071201210820.D3F517C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 23:08:20 2007
New Revision: 35828
Removed:
playground/onur/applications/network/rutilt/files/buffer_lengths.patch
Modified:
playground/onur/applications/network/rutilt/pspec.xml
Log:
last bits done, finally I am ok with this package
Modified: playground/onur/applications/network/rutilt/pspec.xml
=================================================================
--- playground/onur/applications/network/rutilt/pspec.xml (original)
+++ playground/onur/applications/network/rutilt/pspec.xml Sat Dec 1 23:08:20 2007
@@ -12,15 +12,12 @@
rutilt
app:gui
Wireless configuration tool
- Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. While using rutilt, you need to manually put interface up, for example by setting its ip address to 0.0.0.0 in network-manager.
+ Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. To access to network you need to setup a profile and activate it from the icon in the panel. You can scan for access-points from site survey menu.
http://cbbk.free.fr/bonrom/files/RutilTv0.16.tar.gz
gtk2
-
desktop.patch
external_helper.patch
@@ -30,7 +27,6 @@
rutilt
gtk2
- dhcp
/usr/bin
From paketler-commits at pardus.org.tr Sat Dec 1 23:16:29 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:16:29 +0200 (EET)
Subject: [paketler-commits] r35829 - in devel/system/base/mkinitramfs: .
files
Message-ID: <20071201211629.77C4C7C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 23:16:29 2007
New Revision: 35829
Modified:
devel/system/base/mkinitramfs/actions.py
devel/system/base/mkinitramfs/files/mkinitramfs
devel/system/base/mkinitramfs/pspec.xml
Log:
Put busybox in /lib/initramfs, tested
Modified: devel/system/base/mkinitramfs/actions.py
=================================================================
--- devel/system/base/mkinitramfs/actions.py (original)
+++ devel/system/base/mkinitramfs/actions.py Sat Dec 1 23:16:29 2007
@@ -15,4 +15,4 @@
def install():
pisitools.insinto("/lib/initramfs", "busybox.links")
- pisitools.insinto("/sbin", "busybox")
+ pisitools.insinto("/lib/initramfs", "busybox")
Modified: devel/system/base/mkinitramfs/files/mkinitramfs
=================================================================
--- devel/system/base/mkinitramfs/files/mkinitramfs (original)
+++ devel/system/base/mkinitramfs/files/mkinitramfs Sat Dec 1 23:16:29 2007
@@ -442,7 +442,7 @@
done
# Install busybox and init script
-cp -a /sbin/busybox $MOUNT_IMAGE/bin/busybox
+cp -a /lib/initramfs/busybox $MOUNT_IMAGE/bin/busybox
cp -a /lib/initramfs/busybox.links $MOUNT_IMAGE/bin/busybox.links
cp -a /usr/bin/disktype $MOUNT_IMAGE/bin/disktype
Modified: devel/system/base/mkinitramfs/pspec.xml
=================================================================
--- devel/system/base/mkinitramfs/pspec.xml (original)
+++ devel/system/base/mkinitramfs/pspec.xml Sat Dec 1 23:16:29 2007
@@ -40,6 +40,13 @@
+
+ 2007-12-01
+ 0.4
+ Put busybox in /lib/initramfs
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-27
0.4
From paketler-commits at pardus.org.tr Sat Dec 1 23:19:26 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:19:26 +0200 (EET)
Subject: [paketler-commits] r35830 -
playground/caglar/system/base/mkinitramfs/files
Message-ID: <20071201211926.F19D87C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 23:19:26 2007
New Revision: 35830
Modified:
playground/caglar/system/base/mkinitramfs/files/mkinitramfs
Log:
sync with devel
Modified: playground/caglar/system/base/mkinitramfs/files/mkinitramfs
=================================================================
--- playground/caglar/system/base/mkinitramfs/files/mkinitramfs (original)
+++ playground/caglar/system/base/mkinitramfs/files/mkinitramfs Sat Dec 1 23:19:26 2007
@@ -386,7 +386,7 @@
done
# Install busybox and init script
-cp -a /sbin/busybox $MOUNT_IMAGE/bin/busybox
+cp -a /lib/initramfs/busybox $MOUNT_IMAGE/bin/busybox
cp -a /lib/initramfs/busybox.links $MOUNT_IMAGE/bin/busybox.links
cp -a /usr/bin/disktype $MOUNT_IMAGE/bin/disktype
From paketler-commits at pardus.org.tr Sat Dec 1 23:21:22 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:21:22 +0200 (EET)
Subject: [paketler-commits] r35831 -
playground/onur/applications/network/rutilt/files
Message-ID: <20071201212122.38E8C7C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 23:21:21 2007
New Revision: 35831
Removed:
playground/onur/applications/network/rutilt/files/remove_unsafe_signal_handler.patch
Log:
not used
From paketler-commits at pardus.org.tr Sat Dec 1 23:25:08 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:25:08 +0200 (EET)
Subject: [paketler-commits] r35832 - in devel/applications/network/rutilt: .
files
Message-ID: <20071201212508.3512F7C002F@liste.uludag.org.tr>
Author: onur
Date: Sat Dec 1 23:25:07 2007
New Revision: 35832
Removed:
devel/applications/network/rutilt/files/ELF_location.patch
devel/applications/network/rutilt/files/about_comment.patch
devel/applications/network/rutilt/files/ap_address.patch
devel/applications/network/rutilt/files/buffer_lengths.patch
devel/applications/network/rutilt/files/cflags.patch
devel/applications/network/rutilt/files/ctype_usage.patch
devel/applications/network/rutilt/files/extraction_checks.patch
devel/applications/network/rutilt/files/install.patch
devel/applications/network/rutilt/files/install_failure.patch
devel/applications/network/rutilt/files/make_dialogs_transient.patch
devel/applications/network/rutilt/files/refresh_rate_crash.patch
devel/applications/network/rutilt/files/remove_unsafe_signal_handler.patch
devel/applications/network/rutilt/files/row_toggled.patch
devel/applications/network/rutilt/files/trayicon_toggle.patch
Modified:
devel/applications/network/rutilt/actions.py
devel/applications/network/rutilt/files/desktop.patch
devel/applications/network/rutilt/pspec.xml
Log:
version bump, many of the patches are in upstream, things are very smooth now
Modified: devel/applications/network/rutilt/actions.py
=================================================================
--- devel/applications/network/rutilt/actions.py (original)
+++ devel/applications/network/rutilt/actions.py Sat Dec 1 23:25:07 2007
@@ -24,6 +24,6 @@
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dosym("/usr/share/pixmaps/rutilt/RutilT128x128.png", "/usr/share/pixmaps/rutilt.png")
+ pisitools.dosym("/usr/share/icons/hicolor/128x128/apps/rutilt.png", "/usr/share/pixmaps/rutilt.png")
pisitools.dodoc("AUTHORS", "COPYING", "README*")
Modified: devel/applications/network/rutilt/files/desktop.patch
=================================================================
--- devel/applications/network/rutilt/files/desktop.patch (original)
+++ devel/applications/network/rutilt/files/desktop.patch Sat Dec 1 23:25:07 2007
@@ -1,7 +1,7 @@
-diff -Nur RutilTv0.15-old/configure.sh RutilTv0.15/configure.sh
---- RutilTv0.15-old/configure.sh 2007-11-10 20:18:39.977489959 +0200
-+++ RutilTv0.15/configure.sh 2007-11-10 20:21:23.603615006 +0200
-@@ -248,17 +248,19 @@
+diff -Nur RutilTv0.16-old/configure.sh RutilTv0.16/configure.sh
+--- RutilTv0.16-old/configure.sh 2007-12-01 22:05:00.627993402 +0200
++++ RutilTv0.16/configure.sh 2007-12-01 22:06:29.902421626 +0200
+@@ -284,10 +284,12 @@
# rutilt.desktop
echo -n "Generating desktop launcher... "
echo "[Desktop Entry]
@@ -9,18 +9,9 @@
+Name=RutilT
+Name[tr]=RutilT
Name[fr]=Utilitaire de Configuration Wifi RutilT
+ Name[it]=Strumento di Configurazione WiFi RutilT
GenericName=WLAN Manager
+GenericName[tr]=WLAN Yönetici
GenericName[fr]=Utilitaire de Configuration Wifi
+ GenericName[it]=Strumento di Configurazione WiFi
Comment=Manage your wireless network interfaces
- Comment[fr]=Configurer vos cartes Wifi
- Terminal=false
- Type=Application
- Encoding=UTF-8
--Categories=GTK;System;Settings;Application;Network
--Version=0.14
-+Categories=GTK;System;Settings;Network;
-+Version=1.0
- StartupNotify=false
- Icon=$prefix/$icon_prefix$icon_64x64_name
- Exec=$rutilt_name" > $desktop_launcher_name
Modified: devel/applications/network/rutilt/pspec.xml
=================================================================
--- devel/applications/network/rutilt/pspec.xml (original)
+++ devel/applications/network/rutilt/pspec.xml Sat Dec 1 23:25:07 2007
@@ -12,26 +12,13 @@
rutilt
app:gui
Wireless configuration tool
- Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. While using rutilt, you need to manually put interface up, for example by setting its ip address to 0.0.0.0 in network-manager.
- http://cbbk.free.fr/bonrom/files/RutilTv0.15.tar.gz
+ Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. To access to network you need to setup a profile and activate it from the icon in the panel. You can scan for access-points from the site survey menu.
+ http://cbbk.free.fr/bonrom/files/RutilTv0.16.tar.gz
gtk2
- ctype_usage.patch
- extraction_checks.patch
- buffer_lengths.patch
- row_toggled.patch
- cflags.patch
- trayicon_toggle.patch
- about_comment.patch
desktop.patch
- install.patch
- ELF_location.patch
- install_failure.patch
- refresh_rate_crash.patch
- make_dialogs_transient.patch
- ap_address.patch
external_helper.patch
@@ -40,19 +27,26 @@
rutilt
gtk2
- dhcp
/usr/bin
/usr/share/applications
/usr/share/doc
/usr/share/man
+ /usr/share/icons
/usr/share/pixmaps
- /usr/share/rutilt
+ /usr/share/apps/rutilt
+
+ 2007-12-01
+ 0.16
+ Version vump, fixes bug #6522 again
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-10
0.15
From paketler-commits at pardus.org.tr Sat Dec 1 23:41:14 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:41:14 +0200 (EET)
Subject: [paketler-commits] r35833 - in 2007/system/base/mkinitramfs: . files
Message-ID: <20071201214114.764697C002F@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 23:41:14 2007
New Revision: 35833
Modified:
2007/system/base/mkinitramfs/actions.py
2007/system/base/mkinitramfs/files/mkinitramfs
2007/system/base/mkinitramfs/pspec.xml
Log:
merge
Modified: 2007/system/base/mkinitramfs/actions.py
=================================================================
--- 2007/system/base/mkinitramfs/actions.py (original)
+++ 2007/system/base/mkinitramfs/actions.py Sat Dec 1 23:41:14 2007
@@ -15,4 +15,4 @@
def install():
pisitools.insinto("/lib/initramfs", "busybox.links")
- pisitools.insinto("/sbin", "busybox")
+ pisitools.insinto("/lib/initramfs", "busybox")
Modified: 2007/system/base/mkinitramfs/files/mkinitramfs
=================================================================
--- 2007/system/base/mkinitramfs/files/mkinitramfs (original)
+++ 2007/system/base/mkinitramfs/files/mkinitramfs Sat Dec 1 23:41:14 2007
@@ -442,7 +442,7 @@
done
# Install busybox and init script
-cp -a /sbin/busybox $MOUNT_IMAGE/bin/busybox
+cp -a /lib/initramfs/busybox $MOUNT_IMAGE/bin/busybox
cp -a /lib/initramfs/busybox.links $MOUNT_IMAGE/bin/busybox.links
cp -a /usr/bin/disktype $MOUNT_IMAGE/bin/disktype
Modified: 2007/system/base/mkinitramfs/pspec.xml
=================================================================
--- 2007/system/base/mkinitramfs/pspec.xml (original)
+++ 2007/system/base/mkinitramfs/pspec.xml Sat Dec 1 23:41:14 2007
@@ -40,6 +40,13 @@
+
+ 2007-12-01
+ 0.4
+ Put busybox in /lib/initramfs
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-27
0.4
From paketler-commits at pardus.org.tr Sat Dec 1 23:42:09 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:42:09 +0200 (EET)
Subject: [paketler-commits] r35834 - in 2007/applications/network/rutilt: .
files
Message-ID: <20071201214209.34F6E7C002F@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 23:42:08 2007
New Revision: 35834
Removed:
2007/applications/network/rutilt/files/ELF_location.patch
2007/applications/network/rutilt/files/about_comment.patch
2007/applications/network/rutilt/files/ap_address.patch
2007/applications/network/rutilt/files/buffer_lengths.patch
2007/applications/network/rutilt/files/cflags.patch
2007/applications/network/rutilt/files/ctype_usage.patch
2007/applications/network/rutilt/files/extraction_checks.patch
2007/applications/network/rutilt/files/install.patch
2007/applications/network/rutilt/files/install_failure.patch
2007/applications/network/rutilt/files/make_dialogs_transient.patch
2007/applications/network/rutilt/files/refresh_rate_crash.patch
2007/applications/network/rutilt/files/remove_unsafe_signal_handler.patch
2007/applications/network/rutilt/files/row_toggled.patch
2007/applications/network/rutilt/files/trayicon_toggle.patch
Modified:
2007/applications/network/rutilt/actions.py
2007/applications/network/rutilt/files/desktop.patch
2007/applications/network/rutilt/pspec.xml
Log:
merge
Modified: 2007/applications/network/rutilt/actions.py
=================================================================
--- 2007/applications/network/rutilt/actions.py (original)
+++ 2007/applications/network/rutilt/actions.py Sat Dec 1 23:42:08 2007
@@ -24,6 +24,6 @@
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dosym("/usr/share/pixmaps/rutilt/RutilT128x128.png", "/usr/share/pixmaps/rutilt.png")
+ pisitools.dosym("/usr/share/icons/hicolor/128x128/apps/rutilt.png", "/usr/share/pixmaps/rutilt.png")
pisitools.dodoc("AUTHORS", "COPYING", "README*")
Modified: 2007/applications/network/rutilt/files/desktop.patch
=================================================================
--- 2007/applications/network/rutilt/files/desktop.patch (original)
+++ 2007/applications/network/rutilt/files/desktop.patch Sat Dec 1 23:42:08 2007
@@ -1,7 +1,7 @@
-diff -Nur RutilTv0.15-old/configure.sh RutilTv0.15/configure.sh
---- RutilTv0.15-old/configure.sh 2007-11-10 20:18:39.977489959 +0200
-+++ RutilTv0.15/configure.sh 2007-11-10 20:21:23.603615006 +0200
-@@ -248,17 +248,19 @@
+diff -Nur RutilTv0.16-old/configure.sh RutilTv0.16/configure.sh
+--- RutilTv0.16-old/configure.sh 2007-12-01 22:05:00.627993402 +0200
++++ RutilTv0.16/configure.sh 2007-12-01 22:06:29.902421626 +0200
+@@ -284,10 +284,12 @@
# rutilt.desktop
echo -n "Generating desktop launcher... "
echo "[Desktop Entry]
@@ -9,18 +9,9 @@
+Name=RutilT
+Name[tr]=RutilT
Name[fr]=Utilitaire de Configuration Wifi RutilT
+ Name[it]=Strumento di Configurazione WiFi RutilT
GenericName=WLAN Manager
+GenericName[tr]=WLAN Yönetici
GenericName[fr]=Utilitaire de Configuration Wifi
+ GenericName[it]=Strumento di Configurazione WiFi
Comment=Manage your wireless network interfaces
- Comment[fr]=Configurer vos cartes Wifi
- Terminal=false
- Type=Application
- Encoding=UTF-8
--Categories=GTK;System;Settings;Application;Network
--Version=0.14
-+Categories=GTK;System;Settings;Network;
-+Version=1.0
- StartupNotify=false
- Icon=$prefix/$icon_prefix$icon_64x64_name
- Exec=$rutilt_name" > $desktop_launcher_name
Modified: 2007/applications/network/rutilt/pspec.xml
=================================================================
--- 2007/applications/network/rutilt/pspec.xml (original)
+++ 2007/applications/network/rutilt/pspec.xml Sat Dec 1 23:42:08 2007
@@ -12,26 +12,13 @@
rutilt
app:gui
Wireless configuration tool
- Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. While using rutilt, you need to manually put interface up, for example by setting its ip address to 0.0.0.0 in network-manager.
- http://cbbk.free.fr/bonrom/files/RutilTv0.15.tar.gz
+ Gtk+2 utility for Linux that helps you configure your wireless devices. Although primarily written for the rt2x00 project, it supports any Linux wireless extensions compliant kernel module. For now, if you want to use WPA on ralink based wireless devices, you need to either manually set the parameters from console or use this frontend. To access to network you need to setup a profile and activate it from the icon in the panel. You can scan for access-points from the site survey menu.
+ http://cbbk.free.fr/bonrom/files/RutilTv0.16.tar.gz
gtk2
- ctype_usage.patch
- extraction_checks.patch
- buffer_lengths.patch
- row_toggled.patch
- cflags.patch
- trayicon_toggle.patch
- about_comment.patch
desktop.patch
- install.patch
- ELF_location.patch
- install_failure.patch
- refresh_rate_crash.patch
- make_dialogs_transient.patch
- ap_address.patch
external_helper.patch
@@ -40,19 +27,26 @@
rutilt
gtk2
- dhcp
/usr/bin
/usr/share/applications
/usr/share/doc
/usr/share/man
+ /usr/share/icons
/usr/share/pixmaps
- /usr/share/rutilt
+ /usr/share/apps/rutilt
+
+ 2007-12-01
+ 0.16
+ Version vump, fixes bug #6522 again
+ Onur Küçük
+ onur at pardus.org.tr
+
2007-11-10
0.15
From paketler-commits at pardus.org.tr Sat Dec 1 23:46:40 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:46:40 +0200 (EET)
Subject: [paketler-commits] r35835 - devel/programming/tools/git
Message-ID: <20071201214640.23D0F7C002F@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 23:46:39 2007
New Revision: 35835
Modified:
devel/programming/tools/git/pspec.xml
Log:
stable update
Modified: devel/programming/tools/git/pspec.xml
=================================================================
--- devel/programming/tools/git/pspec.xml (original)
+++ devel/programming/tools/git/pspec.xml Sat Dec 1 23:46:39 2007
@@ -13,7 +13,7 @@
service
The stupid content tracker
Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.
- http://www.kernel.org/pub/software/scm/git/git-1.5.3.6.tar.bz2
+ http://www.kernel.org/pub/software/scm/git/git-1.5.3.7.tar.bz2
asciidoc
curl
@@ -87,6 +87,13 @@
+
+ 2007-12-01
+ 1.5.3.7
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-11-28
1.5.3.6
From paketler-commits at pardus.org.tr Sat Dec 1 23:46:55 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sat, 1 Dec 2007 23:46:55 +0200 (EET)
Subject: [paketler-commits] r35836 - 2007/programming/tools/git
Message-ID: <20071201214655.CF5687C002F@liste.uludag.org.tr>
Author: cartman
Date: Sat Dec 1 23:46:55 2007
New Revision: 35836
Modified:
2007/programming/tools/git/pspec.xml
Log:
stable update, merge
Modified: 2007/programming/tools/git/pspec.xml
=================================================================
--- 2007/programming/tools/git/pspec.xml (original)
+++ 2007/programming/tools/git/pspec.xml Sat Dec 1 23:46:55 2007
@@ -13,7 +13,7 @@
service
The stupid content tracker
Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.
- http://www.kernel.org/pub/software/scm/git/git-1.5.3.6.tar.bz2
+ http://www.kernel.org/pub/software/scm/git/git-1.5.3.7.tar.bz2
asciidoc
curl
@@ -87,6 +87,13 @@
+
+ 2007-12-01
+ 1.5.3.7
+ Stable update
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-11-28
1.5.3.6
From paketler-commits at pardus.org.tr Sun Dec 2 00:03:53 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 00:03:53 +0200 (EET)
Subject: [paketler-commits] r35837 - in devel/programming/libs/libcap: .
files
Message-ID: <20071201220353.3C5347C002F@liste.uludag.org.tr>
Author: cartman
Date: Sun Dec 2 00:03:52 2007
New Revision: 35837
Added:
devel/programming/libs/libcap/files/mandir.patch
Removed:
devel/programming/libs/libcap/files/1.10-python.patch
devel/programming/libs/libcap/files/libcap-1.10-audit.patch
devel/programming/libs/libcap/files/libcap-1.10-r4-staticfix.diff
devel/programming/libs/libcap/files/libcap_1.10-14.diff.gz
Modified:
devel/programming/libs/libcap/actions.py
devel/programming/libs/libcap/pspec.xml
Log:
Version bump for POSIX file capabilities, breaks backward compat.
Modified: devel/programming/libs/libcap/actions.py
=================================================================
--- devel/programming/libs/libcap/actions.py (original)
+++ devel/programming/libs/libcap/actions.py Sun Dec 2 00:03:52 2007
@@ -1,36 +1,20 @@
#!/usr/bin/python
-# -*- coding: utf-8 -*-
+# -*- coding: utf-8 -*-
#
-# Copyright 2005 TUBITAK/UEKAE
+# Copyright 2005-2007 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
-from pisi.actionsapi import libtools
from pisi.actionsapi import pisitools
-from pisi.actionsapi import shelltools
from pisi.actionsapi import get
-def setup():
- pisitools.dosed("Make.Rules", "WARNINGS=-ansi", "WARNINGS=")
-
def build():
- autotools.make("COPTFLAG=\"%s\" \
- LDFLAGS=\"%s\" \
- DEBUG=\"\"" % (get.CFLAGS(), get.LDFLAGS()))
+ autotools.make('COPTFLAG="%s" \
+ LDFLAGS="%s" \
+ DEBUG=""' % (get.CFLAGS(), get.LDFLAGS()))
def install():
- autotools.rawInstall("FAKEROOT=\"%(installDIR)s\" \
- man_prefix=/usr/share \
- LIBDIR=%(installDIR)s/lib \
- " % {'installDIR': get.installDIR()})
-
- # Move libcap.a to /usr/lib
- pisitools.dodir("/usr/lib")
- pisitools.domove("/lib/libcap.a", "/usr/lib")
+ autotools.rawInstall("FAKEROOT=%s" % get.installDIR())
- # Libs
- libtools.gen_usr_ldscript("libcap.so")
-
- # Docs
- pisitools.dodoc("CHANGELOG", "README", "pgp.keys.asc", "doc/capability.notes", "capfaq-0.2.txt")
+ pisitools.dodoc("CHANGELOG", "README", "doc/capability.notes")
Modified: devel/programming/libs/libcap/pspec.xml
=================================================================
--- devel/programming/libs/libcap/pspec.xml (original)
+++ devel/programming/libs/libcap/pspec.xml Sun Dec 2 00:03:52 2007
@@ -12,12 +12,9 @@
BSD
library
POSIX 1003.1e capabilities
- http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.4/libcap-1.10.tar.gz
+ http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/libcap-2.02.tar.gz
- libcap_1.10-14.diff.gz
- 1.10-python.patch
- libcap-1.10-r4-staticfix.diff
- libcap-1.10-audit.patch
+ mandir.patch
@@ -34,6 +31,13 @@
+
+ 2007-12-01
+ 2.02
+ Version bump
+ İsmail Dönmez
+ ismail at pardus.org.tr
+
2007-10-21
1.10
From paketler-commits at pardus.org.tr Sun Dec 2 01:05:54 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 01:05:54 +0200 (EET)
Subject: [paketler-commits] r35838 - playground/mgunay/gammu
Message-ID: <20071201230554.2A0C07C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 01:05:53 2007
New Revision: 35838
Added:
playground/mgunay/gammu/
playground/mgunay/gammu/actions.py
playground/mgunay/gammu/pspec.xml
Log:
GNU All Mobile Management Utilities
From buildfarm at pardus.org.tr Sun Dec 2 01:33:37 2007
From: buildfarm at pardus.org.tr (Pardus Buildfarm)
Date: Sun, 2 Dec 2007 01:33:37 +0200 (EET)
Subject: [paketler-commits] [buildfarm] info
Message-ID: <20071201233337.BBF2861CB73F@uludag.org.tr>
Hello,
This message is sent from Pardus buildfarm. Please do not reply as it is automatically generated.
I'm starting to compile following packages:
applications/emulators/wine/pspec.xml
applications/network/rutilt/pspec.xml
desktop/gnome/gst-plugins-base/pspec.xml
desktop/gnome/gstreamer/pspec.xml
programming/tools/git/pspec.xml
system/base/mkinitramfs/pspec.xml
Happy hacking!
From paketler-commits at pardus.org.tr Sun Dec 2 01:35:01 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 01:35:01 +0200 (EET)
Subject: [paketler-commits] r35839 - playground/mgunay/gammu
Message-ID: <20071201233501.628B97C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 01:35:01 2007
New Revision: 35839
Modified:
playground/mgunay/gammu/actions.py
playground/mgunay/gammu/pspec.xml
Log:
yeni versiyonu gelsin
Modified: playground/mgunay/gammu/actions.py
=================================================================
--- playground/mgunay/gammu/actions.py (original)
+++ playground/mgunay/gammu/actions.py Sun Dec 2 01:35:01 2007
@@ -1,21 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
-# Copyright 2007 TUBITAK/UEKAE
+# Copyright 2005-2007 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
from pisi.actionsapi import autotools
+from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
def setup():
- autotools.configure("--enable-shared")
+ cmaketools.configure("-DENABLE_SHARED=ON \
+ -DCMAKE_INSTALL_PREFIX=%s/usr" % get.installDIR())
def build():
- autotools.make("shared")
+ cmaketools.make()
def install():
- autotools.install("installshared")
+ cmaketools.rawInstall()
- pisitools.dohtml("docs/docs/english/*.html")
- pisitools.dodoc("changelog", "copying", "readme.txt")
+ pisitools.dodoc("ChangeLog", "COPYING", "README")
Modified: playground/mgunay/gammu/pspec.xml
=================================================================
--- playground/mgunay/gammu/pspec.xml (original)
+++ playground/mgunay/gammu/pspec.xml Sun Dec 2 01:35:01 2007
@@ -8,10 +8,10 @@
Mustafa Günay
mustafagunay at gmail.com
- GPL-2
+ GPL
app:console
GNU All Mobile Management Utilities
- http://dl.cihar.com/MIRROR/gammu/zips/gammu/stable/latest/gammu-1.09.00.tar.bz2
+ http://dl.cihar.com/gammu/releases/gammu-1.15.0.tar.bz2
bluez-libs
mysql-lib
@@ -30,6 +30,8 @@
/usr/bin
/usr/lib
/usr/include
+ /usr/share/locale
+ /usr/share/man
/usr/share/doc
@@ -37,7 +39,7 @@
2007-12-02
- 1.09.00
+ 1.15.0
First release
Mustafa Günay
mustafagunay at gmail.com
From paketler-commits at pardus.org.tr Sun Dec 2 01:41:30 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 01:41:30 +0200 (EET)
Subject: [paketler-commits] r35840 - playground/mgunay/gammu
Message-ID: <20071201234130.94BC17C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 01:41:30 2007
New Revision: 35840
Modified:
playground/mgunay/gammu/pspec.xml
Log:
bağımlılık düzelt
Modified: playground/mgunay/gammu/pspec.xml
=================================================================
--- playground/mgunay/gammu/pspec.xml (original)
+++ playground/mgunay/gammu/pspec.xml Sun Dec 2 01:41:30 2007
@@ -16,6 +16,8 @@
bluez-libs
mysql-lib
openssl
+ mit-kerberos
+ postgresql-lib
@@ -25,6 +27,8 @@
bluez-libs
mysql-lib
openssl
+ mit-kerberos
+ postgresql-lib
/usr/bin
From paketler-commits at pardus.org.tr Sun Dec 2 01:49:22 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 01:49:22 +0200 (EET)
Subject: [paketler-commits] r35841 - playground/mgunay/python-gammu
Message-ID: <20071201234922.8BFBD7C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 01:49:22 2007
New Revision: 35841
Added:
playground/mgunay/python-gammu/
playground/mgunay/python-gammu/actions.py
playground/mgunay/python-gammu/pspec.xml
Log:
buda python bindings
From paketler-commits at pardus.org.tr Sun Dec 2 01:57:07 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 01:57:07 +0200 (EET)
Subject: [paketler-commits] r35842 - playground/mgunay/python-gammu
Message-ID: <20071201235707.756537C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 01:57:07 2007
New Revision: 35842
Modified:
playground/mgunay/python-gammu/pspec.xml
Log:
GPL-2 tabikide
Modified: playground/mgunay/python-gammu/pspec.xml
=================================================================
--- playground/mgunay/python-gammu/pspec.xml (original)
+++ playground/mgunay/python-gammu/pspec.xml Sun Dec 2 01:57:07 2007
@@ -8,7 +8,7 @@
Mustafa Günay
mustafagunay at gmail.com
- GPL
+ GPL-2
library
Python bindings for Gammu library.
http://dl.cihar.com/python-gammu/latest/python-gammu-0.23.tar.bz2
From paketler-commits at pardus.org.tr Sun Dec 2 02:07:51 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 02:07:51 +0200 (EET)
Subject: [paketler-commits] r35843 - playground/mgunay/pybluez
Message-ID: <20071202000751.F07DA7C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 02:07:51 2007
New Revision: 35843
Added:
playground/mgunay/pybluez/
playground/mgunay/pybluez/actions.py
playground/mgunay/pybluez/pspec.xml
Log:
Python extension module allowing access to system Bluetooth resources.
From buildfarm at pardus.org.tr Sun Dec 2 02:10:44 2007
From: buildfarm at pardus.org.tr (Pardus Buildfarm)
Date: Sun, 2 Dec 2007 02:10:44 +0200 (EET)
Subject: [paketler-commits] [buildfarm] info
Message-ID: <20071202001044.DF6E761CC0FA@uludag.org.tr>
Hello,
This message is sent from Pardus buildfarm. Please do not reply as it is automatically generated.
Queue finished without a problem!...
New binary packages are;
git-1.5.3.7-53-47.pisi
git-emacs-1.5.3.7-53-21.pisi
gitweb-1.5.3.7-53-23.pisi
mkinitramfs-0.4-34-34.pisi
rutilt-0.16-2-2.pisi
wine-0.9.50-44-34.pisi
wine-devel-0.9.50-44-29.pisi
gstreamer-0.10.15-9-7.pisi
gst-plugins-base-0.10.15-10-5.pisi
now in repository...
Happy hacking!
From paketler-commits at pardus.org.tr Sun Dec 2 02:38:35 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 02:38:35 +0200 (EET)
Subject: [paketler-commits] r35844 - in playground/mgunay/wammu: . files
Message-ID: <20071202003835.302757C002F@liste.uludag.org.tr>
Author: mgunay
Date: Sun Dec 2 02:38:34 2007
New Revision: 35844
Added:
playground/mgunay/wammu/
playground/mgunay/wammu/actions.py
playground/mgunay/wammu/files/
playground/mgunay/wammu/files/desktop-tr.patch
playground/mgunay/wammu/pspec.xml
Log:
assolistimiz de geldi
From paketler-commits at pardus.org.tr Sun Dec 2 05:22:33 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 05:22:33 +0200 (EET)
Subject: [paketler-commits] r35845 -
playground/selim/applications/util/busybox
Message-ID: <20071202032233.0C2387C002F@liste.uludag.org.tr>
Author: selim_ok
Date: Sun Dec 2 05:22:32 2007
New Revision: 35845
Modified:
playground/selim/applications/util/busybox/pspec.xml
Log:
gereksiz bağımlılıkları temizleyelim
Modified: playground/selim/applications/util/busybox/pspec.xml
=================================================================
--- playground/selim/applications/util/busybox/pspec.xml (original)
+++ playground/selim/applications/util/busybox/pspec.xml Sun Dec 2 05:22:32 2007
@@ -13,9 +13,6 @@
Combines tiny versions of many common UNIX utilities into a single small executable
It provides replacements for most of the utilities you usually find in GNU fileutils, shellutils, etc. The utilities in BusyBox generally have fewer options than their full-featured GNU cousins; however, the options that are included provide the expected functionality and behave very much like their GNU counterparts. BusyBox provides a fairly complete environment for any small or embedded system.
http://www.busybox.net/downloads/snapshots/busybox-20071125.tar.bz2
-
- pam
-
config.patch
@@ -23,9 +20,6 @@
busybox
-
- pam
-
/usr/sbin
/usr/sbin/share/doc
From paketler-commits at pardus.org.tr Sun Dec 2 06:27:49 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 06:27:49 +0200 (EET)
Subject: [paketler-commits] r35846 - playground/cartman/gcc
Message-ID: <20071202042749.218BB7C002F@liste.uludag.org.tr>
Author: cartman
Date: Sun Dec 2 06:27:48 2007
New Revision: 35846
Modified:
playground/cartman/gcc/pspec.xml
Log:
...
Modified: playground/cartman/gcc/pspec.xml
=================================================================
--- playground/cartman/gcc/pspec.xml (original)
+++ playground/cartman/gcc/pspec.xml Sun Dec 2 06:27:48 2007
@@ -13,7 +13,7 @@
app:console
The GNU Compiler Collection. Includes C/C++,Objective-C and Fortran compilers
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages (libstdc++, libgcj,...)
- http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071201.tar.bz2
+ http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071202.tar.bz2
zlib
binutils
@@ -77,8 +77,8 @@
- 2007-12-01
- 4.3_pre20071201
+ 2007-12-02
+ 4.3_pre20071202
Update to 4.3 branch
İsmail Dönmez
ismail at pardus.org.tr
From paketler-commits at pardus.org.tr Sun Dec 2 06:54:29 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 06:54:29 +0200 (EET)
Subject: [paketler-commits] r35847 - playground/cartman/gcc
Message-ID: <20071202045429.2C2D77C002F@liste.uludag.org.tr>
Author: caglar
Date: Sun Dec 2 06:54:28 2007
New Revision: 35847
Modified:
playground/cartman/gcc/pspec.xml
Log:
fix
Modified: playground/cartman/gcc/pspec.xml
=================================================================
--- playground/cartman/gcc/pspec.xml (original)
+++ playground/cartman/gcc/pspec.xml Sun Dec 2 06:54:28 2007
@@ -13,7 +13,7 @@
app:console
The GNU Compiler Collection. Includes C/C++,Objective-C and Fortran compilers
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages (libstdc++, libgcj,...)
- http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071202.tar.bz2
+ http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071202.tar.bz2
zlib
binutils
From paketler-commits at pardus.org.tr Sun Dec 2 07:28:15 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 07:28:15 +0200 (EET)
Subject: [paketler-commits] r35848 - playground/cartman/gcc
Message-ID: <20071202052815.C18187C002F@liste.uludag.org.tr>
Author: cartman
Date: Sun Dec 2 07:28:15 2007
New Revision: 35848
Modified:
playground/cartman/gcc/pspec.xml
Log:
Objective C++ is supported too
Modified: playground/cartman/gcc/pspec.xml
=================================================================
--- playground/cartman/gcc/pspec.xml (original)
+++ playground/cartman/gcc/pspec.xml Sun Dec 2 07:28:15 2007
@@ -11,8 +11,8 @@
GPL-3
LGPL-3
app:console
- The GNU Compiler Collection. Includes C/C++,Objective-C and Fortran compilers
- The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, as well as libraries for these languages (libstdc++, libgcj,...)
+ The GNU Compiler Collection. Includes C, C++, Objective-C, Objective-C++ and Fortran compilers
+ The GNU Compiler Collection includes front ends for C, C++, Objective-C, Objective-C++) Fortran, as well as libraries for these languages (libstdc++, libgcj,...)
http://cekirdek.pardus.org.tr/~ismail/dist/gcc-4.3-20071202.tar.bz2
zlib
From paketler-commits at pardus.org.tr Sun Dec 2 07:53:30 2007
From: paketler-commits at pardus.org.tr (paketler-commits at pardus.org.tr)
Date: Sun, 2 Dec 2007 07:53:30 +0200 (EET)
Subject: [paketler-commits] r35849 -
playground/review/programming/libs/libmimedir
Message-ID: <20071202055330.D86347C002F@liste.uludag.org.tr>
Author: rkirmizi
Date: Sun Dec 2 07:53:30 2007
New Revision: 35849
Modified:
playground/review/programming/libs/libmimedir/actions.py
Log:
-
Modified: playground/review/programming/libs/libmimedir/actions.py
=================================================================
--- playground/review/programming/libs/libmimedir/actions.py (original)
+++ playground/review/programming/libs/libmimedir/actions.py Sun Dec 2 07:53:30 2007
@@ -5,11 +5,13 @@
# Licensed under the GNU General Public License, version 2.
# See the file htt