[packages/gnome-settings-daemon] Updated systemd-fallback.patch for 3.6.0

2012-10-03 Thread megabajt
commit 06292bb911f550dc8c763fb5a807df337918a9e1
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Wed Oct 3 10:33:26 2012 +0200

Updated systemd-fallback.patch for 3.6.0

 gnome-settings-daemon.spec |   2 +-
 systemd-fallback.patch | 134 ++---
 2 files changed, 68 insertions(+), 68 deletions(-)
---
diff --git a/gnome-settings-daemon.spec b/gnome-settings-daemon.spec
index 896da9b..c70ce21 100644
--- a/gnome-settings-daemon.spec
+++ b/gnome-settings-daemon.spec
@@ -98,7 +98,7 @@ Updates plugin for GNOME Settings Daemon.
 %setup -q
 %patch0 -p1
 %patch1 -p1
-#{?with_systemd:%patch2 -p1}
+%{?with_systemd:%patch2 -p1}
 
 %build
 %{__glib_gettextize}
diff --git a/systemd-fallback.patch b/systemd-fallback.patch
index da04966..19eae7f 100644
--- a/systemd-fallback.patch
+++ b/systemd-fallback.patch
@@ -1,30 +1,5 @@
-commit b9ded09387f0b99ece97baee18595eb9e86a5b9b
-Author: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-Date:   Mon Mar 12 01:52:54 2012 +0100
-
-Fallback to CK if systemd is not available
-
-Be nice to distributions where systemd is optional. This will select
-the code path at runtime depending on whether the system was booted
-using systemd.
-
-diff --git a/configure.ac b/configure.ac
-index 3b4789f..d522852 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -299,7 +299,7 @@ AC_ARG_ENABLE([systemd],
-   [with_systemd=$enableval],
-   [with_systemd=no])
- if test $with_systemd = yes ; then
--  PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login])
-+  PKG_CHECK_MODULES(SYSTEMD, [libsystemd-daemon libsystemd-login])
-   AC_DEFINE(HAVE_SYSTEMD, 1, [Define if systemd is used for session tracking])
-   SESSION_TRACKING=systemd
- else
-diff --git a/gnome-settings-daemon/gnome-settings-session.c 
b/gnome-settings-daemon/gnome-settings-session.c
-index 5786300..83fe21e 100644
 a/gnome-settings-daemon/gnome-settings-session.c
-+++ b/gnome-settings-daemon/gnome-settings-session.c
+--- 
gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c.old  
   2012-10-02 21:47:26.463470258 +0200
 gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c 
2012-10-02 21:46:30.047109277 +0200
 @@ -30,6 +30,7 @@
  #include gnome-settings-session.h
  
@@ -54,7 +29,7 @@ index 5786300..83fe21e 100644
  
  static void
  gnome_settings_session_proxy_signal_cb (GDBusProxy *proxy,
-@@ -371,22 +371,25 @@ got_manager_proxy_cb (GObject *source_object, 
GAsyncResult *res, gpointer user_d
+@@ -371,22 +371,26 @@ got_manager_proxy_cb (GObject *source_ob
g_object_unref (proxy_manager);
  }
  
@@ -67,28 +42,31 @@ index 5786300..83fe21e 100644
  
  #ifdef HAVE_SYSTEMD
 -sd_pid_get_session (getpid(), session-priv-session_id);
-+session-priv-sd_source = NULL;
-+
-+if (sd_booted ()  0) {
-+sd_pid_get_session (getpid(), session-priv-session_id);
- 
+-
 -session-priv-sd_source = sd_source_new ();
 -g_source_set_callback (session-priv-sd_source, sessions_changed, 
session, NULL);
 -g_source_attach (session-priv-sd_source, NULL);
-+session-priv-sd_source = sd_source_new ();
-+g_source_set_callback (session-priv-sd_source, 
sessions_changed, session, NULL);
-+g_source_attach (session-priv-sd_source, NULL);
- 
+-
 -sessions_changed (session);
 -#else
-+sessions_changed (session);
-+return;
++  session-priv-sd_source = NULL;
++  
++  if (sd_booted ()  0) {
++  sd_pid_get_session (getpid(), session-priv-session_id);
++
++  session-priv-sd_source = sd_source_new ();
++  g_source_set_callback (session-priv-sd_source, 
sessions_changed, session, NULL);
++  g_source_attach (session-priv-sd_source, NULL);
++
++  sessions_changed (session);
++  
++  return;
 +}
 +#endif
session-priv-cancellable = g_cancellable_new ();
  
/* connect to ConsoleKit */
-@@ -399,7 +402,6 @@ gnome_settings_session_init (GnomeSettingsSession *session)
+@@ -399,7 +403,6 @@ gnome_settings_session_init (GnomeSettin
  session-priv-cancellable,
  got_manager_proxy_cb,
  session);
@@ -96,7 +74,7 @@ index 5786300..83fe21e 100644
  }
  
  static void
-@@ -415,15 +417,17 @@ gnome_settings_session_finalize (GObject *object)
+@@ -415,15 +418,16 @@ gnome_settings_session_finalize (GObject
  if (session-priv-sd_source != NULL) {
  g_source_destroy (session-priv-sd_source);
  g_source_unref (session-priv-sd_source);
@@ -104,7 +82,6 @@ index 5786300..83fe21e 100644
  }
 -#else
 +#endif
-+
g_cancellable_cancel (session-priv-cancellable);
  
if (session-priv-proxy_session != NULL)
@@ -116,39 +93,62 @@ index 5786300..83fe21e 100644

[packages/eog] - updated to 3.6.0 - dropped scrollkeeper, used yelp-tools instead of gnome-doc-utils

2012-10-03 Thread kiesiu
commit 4660dcb6323b20a2ffd1d410362bd8f45f12e7d8
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Wed Oct 3 12:16:51 2012 +0200

- updated to 3.6.0
- dropped scrollkeeper, used yelp-tools instead of gnome-doc-utils

 eog.spec | 17 ++---
 1 file changed, 6 insertions(+), 11 deletions(-)
---
diff --git a/eog.spec b/eog.spec
index b206c81..843e9c2 100644
--- a/eog.spec
+++ b/eog.spec
@@ -6,12 +6,12 @@ Summary:  The Eye of GNOME image viewer
 Summary(pl.UTF-8): Oko GNOME - przeglądarka obrazków
 Summary(pt_BR.UTF-8):  Visualizador de imagem Eye of GNOME
 Name:  eog
-Version:   3.4.3
+Version:   3.6.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Graphics
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog/3.4/%{name}-%{version}.tar.xz
-# Source0-md5: d481e13d635865db1b8262252b7f94fe
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog/3.6/%{name}-%{version}.tar.xz
+# Source0-md5: 57685d2865111a200ad175f397b9e476
 URL:   http://www.gnome.org/projects/eog/
 BuildRequires: autoconf = 2.59
 BuildRequires: automake = 1:1.11
@@ -21,7 +21,6 @@ BuildRequires:gettext-devel
 BuildRequires: glib2-devel = 1:2.32.0
 BuildRequires: gnome-common = 2.24.0
 BuildRequires: gnome-desktop-devel = 3.2.0
-BuildRequires: gnome-doc-utils = 0.14.0
 BuildRequires: gnome-icon-theme = 3.0.0
 BuildRequires: gobject-introspection-devel = 0.10.0
 BuildRequires: gsettings-desktop-schemas-devel = 3.4.0
@@ -32,19 +31,18 @@ BuildRequires:  lcms2-devel
 BuildRequires: libexif-devel = 1:0.6.14
 BuildRequires: libjpeg-devel
 BuildRequires: libpeas-gtk-devel = 1.0.0
-BuildRequires: librsvg-devel = 2.26.0
+BuildRequires: librsvg-devel = 2.36.2
 BuildRequires: libtool
 BuildRequires: libxml2-devel = 1:2.7.0
 BuildRequires: pkgconfig = 0.9.0
 BuildRequires: rpmbuild(find_lang) = 1.23
 BuildRequires: rpmbuild(macros) = 1.311
-BuildRequires: scrollkeeper
 BuildRequires: shared-mime-info = 0.50
 BuildRequires: tar = 1:1.22
 BuildRequires: xz
+BuildRequires: yelp-tools
 BuildRequires: zlib-devel
 Requires(post,postun): glib2 = 1:2.26.0
-Requires(post,postun): scrollkeeper
 Requires(post,postun): desktop-file-utils
 Requires(post,postun): gtk-update-icon-cache
 Requires:  gnome-icon-theme = 3.0.0
@@ -104,7 +102,6 @@ Dokumentacja API Eye of GNOME.
 %configure \
%{__enable_disable apidocs gtk-doc} \
--disable-schemas-compile \
-   --disable-scrollkeeper \
--disable-silent-rules \
--with-html-dir=%{_gtkdocdir}
 %{__make}
@@ -118,19 +115,17 @@ rm -rf $RPM_BUILD_ROOT
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/eog/plugins/*.la
 install -d $RPM_BUILD_ROOT%{_datadir}/eog/plugins
 
-%find_lang %{name} --with-gnome --with-omf
+%find_lang %{name} --with-gnome
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %post
-%scrollkeeper_update_post
 %update_desktop_database_post
 %update_icon_cache hicolor
 %glib_compile_schemas
 
 %postun
-%scrollkeeper_update_postun
 %update_desktop_database_postun
 %update_icon_cache hicolor
 %glib_compile_schemas


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/eog.git/commitdiff/4660dcb6323b20a2ffd1d410362bd8f45f12e7d8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: eog: eog-3.6.0.tar.xz

2012-10-03 Thread kiesiu

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/eog/3.6/eog-3.6.0.tar.xz
57685d2865111a200ad175f397b9e476  eog-3.6.0.tar.xz
Size: 3584884 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/eog] Deleted branch DEVEL

2012-10-03 Thread kiesiu
The branch 'DEVEL' was deleted.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/eog-plugins] - updated to 3.6.0

2012-10-03 Thread kiesiu
commit c8c6601a6d7fda9755a74653d6ca27017766441c
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Wed Oct 3 12:49:06 2012 +0200

- updated to 3.6.0

 eog-plugins.spec | 27 ---
 1 file changed, 20 insertions(+), 7 deletions(-)
---
diff --git a/eog-plugins.spec b/eog-plugins.spec
index c945bcc..328486a 100644
--- a/eog-plugins.spec
+++ b/eog-plugins.spec
@@ -1,19 +1,19 @@
 Summary:   A collection of plugins for the EOG image viewer
 Summary(pl.UTF-8): Zestaw wtyczek do przeglądarki obrazków EOG
 Name:  eog-plugins
-Version:   3.4.1
+Version:   3.6.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog-plugins/3.4/%{name}-%{version}.tar.xz
-# Source0-md5: d098ffe1cdde569d664294c41d07fcf3
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog-plugins/3.6/%{name}-%{version}.tar.xz
+# Source0-md5: c0138db3110e73b08ea8544cd7fcf8cd
 Patch0:%{name}-configure.patch
 URL:   http://live.gnome.org/EyeOfGnome/Plugins
 BuildRequires: autoconf = 2.59
 BuildRequires: automake = 1:1.9
 BuildRequires: clutter-devel = 1.9.4
 BuildRequires: clutter-gtk-devel = 1.1.2
-BuildRequires: eog-devel = 3.4.0
+BuildRequires: eog-devel = 3.6.0
 BuildRequires: gettext-devel
 BuildRequires: gsettings-desktop-schemas-devel
 BuildRequires: gtk+3-devel = 3.0.0
@@ -30,7 +30,7 @@ BuildRequires:rpmbuild(macros) = 1.592
 BuildRequires: tar = 1:1.22
 BuildRequires: xz
 Requires(post,postun): glib2 = 1:2.26.0
-Requires:  eog = 3.4.0
+Requires:  eog = 3.6.0
 Suggests:  postr
 Suggests:  python-pygobject3 = 3.0.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -67,6 +67,7 @@ rm -rf $RPM_BUILD_ROOT
DESTDIR=$RPM_BUILD_ROOT
 
 %{__rm} $RPM_BUILD_ROOT%{pluginsdir}/*.{la,py}
+%{__rm} $RPM_BUILD_ROOT%{pluginsdir}/pythonconsole/*.py
 
 %find_lang eog-plugins
 
@@ -83,6 +84,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog NEWS README
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.plugins.exif-display.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.eog.plugins.export-to-folder.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.plugins.fullscreenbg.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.plugins.pythonconsole.gschema.xml
 
@@ -110,12 +112,23 @@ rm -rf $RPM_BUILD_ROOT
 
 %dir %{pluginsdir}/pythonconsole
 %dir %{_datadir}/eog/plugins/pythonconsole
-%{pluginsdir}/pythonconsole/*.py*
 %{pluginsdir}/pythonconsole.plugin
+%{pluginsdir}/pythonconsole/*.py[co]
 %{_datadir}/eog/plugins/pythonconsole/config.ui
 
 %attr(755,root,root) %{pluginsdir}/libsend-by-mail.so
 %{pluginsdir}/send-by-mail.plugin
 
-%{pluginsdir}/slideshowshuffle.py[co]
 %{pluginsdir}/slideshowshuffle.plugin
+%{pluginsdir}/slideshowshuffle.py[co]
+
+%dir %{_datadir}/eog/plugins/export-to-folder
+%{pluginsdir}/export-to-folder.plugin
+%{pluginsdir}/export-to-folder.py[co]
+%{_datadir}/eog/plugins/export-to-folder/preferences_dialog.ui
+
+%attr(755,root,root) %{pluginsdir}/libhide-titlebar.so
+%{pluginsdir}/hide-titlebar.plugin
+
+%attr(755,root,root) %{pluginsdir}/liblight-theme.so
+%{pluginsdir}/light-theme.plugin


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/eog-plugins.git/commitdiff/c8c6601a6d7fda9755a74653d6ca27017766441c

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: eog-plugins: eog-plugins-3.6.0.tar.xz

2012-10-03 Thread kiesiu

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/eog-plugins/3.6/eog-plugins-3.6.0.tar.xz
c0138db3110e73b08ea8544cd7fcf8cd  eog-plugins-3.6.0.tar.xz
Size: 330256 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[PLDWWW] page changed: start

2012-10-03 Thread Elan Ruusamäe (glen)
redirected old site

--- https://www.pld-linux.org/start?rev=1348486289
+++ https://www.pld-linux.org/start
@@ -5,8 +5,15 @@
  
  
  
  = News =
+ 
+  3rd October 2012 
+ 
+ The 6 year old unmaintained MoinMoin installation at http://www.pld-linux.org/
+ is replaced with fresh DokuWiki installation.
+ 
+ Authentication is based on CVS password login hashes.
  
  
   1st September 2012: PLD Th 2012 snapshot released 
  Today we released the first snapshot of PLD/Linux Th, called 2012. It is 
available on 
[[ftp://ftp.pld-linux.org/dists/th/2012/PLD/|ftp://ftp.pld-linux.org/dists/th/2012/PLD/]]
 and as poldek sources th-2012. Please give mirrors 24 hours to synchronize. 


Diff URL:
  https://www.pld-linux.org/start?do=diffr1=1348486289r2=1349268374
-- 
This mail was generated by DokuWiki at
https://www.pld-linux.org/
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/rpm] - build with internal lua and enable extra lua libs, fixes http://lists.pld-linux.org/mailman/pipe

2012-10-03 Thread baggins
commit 70df63f316d7d470b65a8756ce11fc0c2c5f1b35
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Wed Oct 3 15:03:15 2012 +0200

- build with internal lua and enable extra lua libs, fixes
  
http://lists.pld-linux.org/mailman/pipermail/pld-devel-en/2012-September/023154.html
- rel 17

 rpm-lua-enable-extra-libs.patch | 20 
 rpm.spec| 12 ++--
 2 files changed, 30 insertions(+), 2 deletions(-)
---
diff --git a/rpm.spec b/rpm.spec
index 77b19eb..3e27eab 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -16,7 +16,7 @@
 %bcond_without db  # BerkeleyDB
 %bcond_without sqlite  # build with SQLite support
 %bcond_withsqlite_dbapi# default database backend is sqlite
-%bcond_without system_lua  # use system lua
+%bcond_withsystem_lua  # use system lua
 %bcond_withkeyutils# build with keyutils support
 # force_cc - force using __cc other than 
%{_target_cpu}-pld-linux-gcc
 # force_cxx- force using __cxx other than 
%{_target_cpu}-pld-linux-g++
@@ -52,7 +52,7 @@ Summary(ru.UTF-8):Менеджер пакетов от RPM
 Summary(uk.UTF-8): Менеджер пакетів від RPM
 Name:  rpm
 Version:   5.4.10
-Release:   16
+Release:   17
 License:   LGPL
 Group: Base
 # http://rpm5.org/files/rpm/rpm-5.4/rpm-5.4.10-0.20120706.src.rpm
@@ -141,6 +141,7 @@ Patch49:%{name}-python-enable-compat-RPMSENSE.patch
 Patch50:   %{name}-dont-treat-gstreamer-modules-as-font.patch
 Patch51:   %{name}-gst-inspect-typo.patch
 Patch52:   %{name}-null-term-ascii-digest.patch
+Patch53:   %{name}-lua-enable-extra-libs.patch
 
 # Patches imported from Mandriva
 
@@ -819,6 +820,7 @@ Dokumentacja API RPM-a oraz przewodniki w formacie HTML 
generowane ze
 %patch50 -p1
 %patch51 -p1
 %patch52 -p0
+%patch53 -p1
 
 %patch1000 -p1
 %patch1001 -p1
@@ -1281,6 +1283,12 @@ find %{_rpmlibdir} -name '*-linux' -type l | xargs rm -f
 %attr(755,root,root) %{_rpmlibdir}/bin/rpmcmp
 %attr(755,root,root) %{_rpmlibdir}/bin/rpmdeps
 %attr(755,root,root) %{_rpmlibdir}/bin/rpmdigest
+%if %{without system_lua}
+%attr(755,root,root) %{_rpmlibdir}/bin/lua
+%attr(755,root,root) %{_rpmlibdir}/bin/luac
+%attr(755,root,root) %{_rpmlibdir}/bin/rpmlua
+%attr(755,root,root) %{_rpmlibdir}/bin/rpmluac
+%endif
 %{?with_keyutils:%attr(755,root,root) %{_rpmlibdir}/bin/rpmkey}
 %attr(755,root,root) %{_rpmlibdir}/bin/rpmrepo
 %{_mandir}/man8/rpm2cpio.8*
diff --git a/rpm-lua-enable-extra-libs.patch b/rpm-lua-enable-extra-libs.patch
new file mode 100644
index 000..c238d0a
--- /dev/null
+++ b/rpm-lua-enable-extra-libs.patch
@@ -0,0 +1,20 @@
+--- rpm-5.4.10/lua/linit.c~2012-10-03 14:46:45.303935753 +0200
 rpm-5.4.10/lua/linit.c 2012-10-03 14:48:19.503932430 +0200
+@@ -13,6 +13,8 @@
+ #include lualib.h
+ #include lauxlib.h
+ 
++#include lposix.h
++#include lrexlib.h
+ 
+ static const luaL_Reg lualibs[] = {
+   {, luaopen_base},
+@@ -26,6 +26,8 @@
+   {LUA_STRLIBNAME, luaopen_string},
+   {LUA_MATHLIBNAME, luaopen_math},
+   {LUA_DBLIBNAME, luaopen_debug},
++  {rex_posix, luaopen_rex_posix},
++  {rex_pcre, luaopen_rex_pcre},
+   {NULL, NULL}
+ };
+ 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm.git/commitdiff/70df63f316d7d470b65a8756ce11fc0c2c5f1b35

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/rpm] Enable posix module in lua

2012-10-03 Thread wiget
commit 529a92053d5d02603e8091a2fbd8fad87d4a63c8
Author: Artur Frysiak ar...@frysiak.net
Date:   Wed Oct 3 17:05:19 2012 +0200

Enable posix module in lua

 rpm-lua-enable-extra-libs.patch | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/rpm-lua-enable-extra-libs.patch b/rpm-lua-enable-extra-libs.patch
index c238d0a..33f6524 100644
--- a/rpm-lua-enable-extra-libs.patch
+++ b/rpm-lua-enable-extra-libs.patch
@@ -9,12 +9,13 @@
  
  static const luaL_Reg lualibs[] = {
{, luaopen_base},
-@@ -26,6 +26,8 @@
+@@ -26,6 +26,9 @@
{LUA_STRLIBNAME, luaopen_string},
{LUA_MATHLIBNAME, luaopen_math},
{LUA_DBLIBNAME, luaopen_debug},
 +  {rex_posix, luaopen_rex_posix},
 +  {rex_pcre, luaopen_rex_pcre},
++  {posix, luaopen_posix},
{NULL, NULL}
  };
  


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm.git/commitdiff/529a92053d5d02603e8091a2fbd8fad87d4a63c8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/rpm] Release 18

2012-10-03 Thread wiget
commit bd0781b4f014dc51afeecaf6f1542b10684c3b60
Author: Artur Frysiak ar...@frysiak.net
Date:   Wed Oct 3 17:07:21 2012 +0200

Release 18

 rpm.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/rpm.spec b/rpm.spec
index 3e27eab..ed89484 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -52,7 +52,7 @@ Summary(ru.UTF-8):Менеджер пакетов от RPM
 Summary(uk.UTF-8): Менеджер пакетів від RPM
 Name:  rpm
 Version:   5.4.10
-Release:   17
+Release:   18
 License:   LGPL
 Group: Base
 # http://rpm5.org/files/rpm/rpm-5.4/rpm-5.4.10-0.20120706.src.rpm


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm.git/commitdiff/bd0781b4f014dc51afeecaf6f1542b10684c3b60

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/systemtap] - use libdir, not libexecdir - package systemtap libdir - rel 2

2012-10-03 Thread baggins
commit 73e968723c51e551d4c26272240c927a63bc58e2
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Wed Oct 3 18:31:56 2012 +0200

- use libdir, not libexecdir
- package systemtap libdir
- rel 2

 systemtap.spec | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)
---
diff --git a/systemtap.spec b/systemtap.spec
index 57cd9d9..7866795 100644
--- a/systemtap.spec
+++ b/systemtap.spec
@@ -8,7 +8,7 @@ Summary:Instrumentation System
 Summary(pl.UTF-8): System oprzyrządowania
 Name:  systemtap
 Version:   1.8
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: Base
 Source0:   
http://sources.redhat.com/systemtap/ftp/releases/%{name}-%{version}.tar.gz
@@ -195,9 +195,10 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/staprun
 %attr(755,root,root) %{_bindir}/stapsh
 %dir %{_datadir}/%{name}
-%{_libexecdir}/%{name}/stapio
-%{_libexecdir}/%{name}/stap-env
-%{_libexecdir}/%{name}/stap-authorize-cert
+%dir %{_libdir}/%{name}
+%{_libdir}/%{name}/stapio
+%{_libdir}/%{name}/stap-env
+%{_libdir}/%{name}/stap-authorize-cert
 %dir /var/cache/%{name}
 %{_mandir}/man1/stap.1*
 %{_mandir}/man1/stap-merge.1*
@@ -208,11 +209,11 @@ rm -rf $RPM_BUILD_ROOT
 #%files server
 #%defattr(644,root,root,755)
 #%{_bindir}/stap-server
-#%{_libexecdir}/%{name}/stap-serverd
-#%{_libexecdir}/%{name}/stap-start-server
-#%{_libexecdir}/%{name}/stap-stop-server
-#%{_libexecdir}/%{name}/stap-gen-cert
-#%{_libexecdir}/%{name}/stap-sign-module
+#%{_libdir}/%{name}/stap-serverd
+#%{_libdir}/%{name}/stap-start-server
+#%{_libdir}/%{name}/stap-stop-server
+#%{_libdir}/%{name}/stap-gen-cert
+#%{_libdir}/%{name}/stap-sign-module
 #%{_mandir}/man8/stap-server.8*
 #%{_sysconfdir}/rc.d/init.d/stap-server
 #%config(noreplace) %{_sysconfdir}/logrotate.d/stap-server


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/systemtap.git/commitdiff/73e968723c51e551d4c26272240c927a63bc58e2

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/filesystem] - add /usr/share/help/mk - pretrans in pure lua - release 15

2012-10-03 Thread wiget
commit e67df1d83a096825595e60f6d627094a8a239e71
Author: Artur Frysiak ar...@frysiak.net
Date:   Wed Oct 3 18:33:20 2012 +0200

- add /usr/share/help/mk
- pretrans in pure lua
- release 15

 filesystem.spec | 19 ++-
 1 file changed, 14 insertions(+), 5 deletions(-)
---
diff --git a/filesystem.spec b/filesystem.spec
index 0e6c44d..f8937ff 100644
--- a/filesystem.spec
+++ b/filesystem.spec
@@ -8,7 +8,7 @@ Summary:Common directories
 Summary(pl.UTF-8): Wspólne katalogi
 Name:  filesystem
 Version:   4.0
-Release:   14
+Release:   15
 License:   GPL
 Group: Base
 BuildRequires: automake
@@ -72,7 +72,7 @@ install -d \
  %{name}.lang
 install -d $RPM_BUILD_ROOT/usr/share/help/C
 
-for lang in ar bg ca cs da de el en_GB es eu fi fr gl he hi hr hu id it ja ko 
lt lv nb nds nl oc pa pl ps pt pt_BR ro ru sl sr sr@latin sv te th tr uk vi 
zh_CN zh_HK zh_TW; do
+for lang in ar bg ca cs da de el en_GB es eu fi fr gl he hi hr hu id it ja ko 
lt lv mk nb nds nl oc pa pl ps pt pt_BR ro ru sl sr sr@latin sv te th tr uk vi 
zh_CN zh_HK zh_TW; do
install -d $RPM_BUILD_ROOT/usr/share/help/${lang}
echo %%lang($lang) %dir /usr/share/help/${lang}  %{name}.lang
 done
@@ -135,9 +135,18 @@ check_filesystem_dirs
 %if %{pld_release} != ac
 %pretrans -p lua
 -- this needs to be a dir
-if posix.stat(/usr/include/X11, type) == link then
-   -- feel free to write in pure lua, but success on first install is not 
important.
-   os.execute(umask 022; mv -f /usr/include/X11{,.rpmsave}; mkdir -m755 
-p /usr/include/X11  mv -f /usr/include/X11.rpmsave/* /usr/include/X11)
+if posix.stat(/tmp/include/X11, type) == link then
+posix.umask(0755);
+os.rename(/tmp/include/X11, /tmp/include/X11.rpmsave)
+posix.mkdir(/tmp)
+posix.mkdir(/tmp/include)
+posix.mkdir(/tmp/include/X11)
+oldpwd = posix.getcwd()
+posix.chdir(/tmp/include/X11.rpmsave)
+for i,j in pairs(posix.glob(*)) do
+os.rename(j, /tmp/include/X11/ .. j)
+end
+posix.chdir(oldpwd)
 end
 %endif
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/filesystem.git/commitdiff/e67df1d83a096825595e60f6d627094a8a239e71

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[PLDWWW] page changed: wiget

2012-10-03 Thread Artur Frysiak (wiget)
[wiget] url change

--- https://www.pld-linux.org/wiget?rev=1217676542
+++ https://www.pld-linux.org/wiget
@@ -3,7 +3,7 @@
  = wiget =
- [[http://cia.navi.cx/stats/author/wiget|CIA stats]] 
+ [[http://cia.vc/stats/author/wiget|CIA stats]] 
  
  
   [[:CategoryHomepage|CategoryHomepage]] 
  
  


Diff URL:
  https://www.pld-linux.org/wiget?do=diffr1=1217676542r2=1349282214
-- 
This mail was generated by DokuWiki at
https://www.pld-linux.org/
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/empathy] - up to 3.6.0.1

2012-10-03 Thread wiget
commit 67e49a20b9c99e879f36bf03a3d73119da53
Author: Artur Frysiak ar...@frysiak.net
Date:   Wed Oct 3 18:39:51 2012 +0200

- up to 3.6.0.1

 empathy.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/empathy.spec b/empathy.spec
index 8913b2b..0be2d8b 100644
--- a/empathy.spec
+++ b/empathy.spec
@@ -1,12 +1,12 @@
 Summary:   High-level library and user-interface for Telepathy
 Summary(pl.UTF-8): Bardzo łatwy w użyciu klient Telepathy dla GNOME
 Name:  empathy
-Version:   3.6.0
-Release:   2
+Version:   3.6.0.1
+Release:   1
 License:   GPL v2+
 Group: Applications/Communications
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/empathy/3.6/%{name}-%{version}.tar.xz
-# Source0-md5: 24329a9ee997e8b30cf89c4854f35188
+# Source0-md5: 2f3071116f273e30abaee837c29ecb17
 URL:   http://live.gnome.org/Empathy
 BuildRequires: NetworkManager-devel = 0.7.0
 BuildRequires: autoconf = 2.64


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/empathy.git/commitdiff/67e49a20b9c99e879f36bf03a3d73119da53

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: empathy: empathy-3.6.0.1.tar.xz

2012-10-03 Thread wiget

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/empathy/3.6/empathy-3.6.0.1.tar.xz
2f3071116f273e30abaee837c29ecb17  empathy-3.6.0.1.tar.xz
Size: 3426956 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/gupnp-vala] - use vala-gssdp from gssdp 0.12.2+ by default - rel 3

2012-10-03 Thread baggins
commit 71ce02ec35a63a92be99c6070f2b28ca1a15d9a8
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Wed Oct 3 18:45:36 2012 +0200

- use vala-gssdp from gssdp 0.12.2+ by default
- rel 3

 gupnp-vala.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gupnp-vala.spec b/gupnp-vala.spec
index 320ef00..698510f 100644
--- a/gupnp-vala.spec
+++ b/gupnp-vala.spec
@@ -2,14 +2,14 @@
 #
 # Conditional build:
 %bcond_without tests   # don't build tests
-%bcond_withvala_gssdp  # use vala-gssdp from gssdp 0.12.2+
+%bcond_without vala_gssdp  # use vala-gssdp from gssdp 0.12.2+
 #
 Summary:   Vala bindings to GUPnP libraries
 Summary(pl.UTF-8): Wiązania języka Vala do bibliotek GUPnP
 Name:  gupnp-vala
 # note: 0.10.x is stable, 0.11.x unstable
 Version:   0.10.4
-Release:   2
+Release:   3
 License:   LGPL v2+
 Group: Development/Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gupnp-vala/0.10/%{name}-%{version}.tar.xz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gupnp-vala.git/commitdiff/71ce02ec35a63a92be99c6070f2b28ca1a15d9a8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/metapackage-xorg] - removed geode driver - rel 5

2012-10-03 Thread baggins
commit 38dadf49d340dfbb348144d5ed3ada69dde55e6d
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Wed Oct 3 18:56:05 2012 +0200

- removed geode driver
- rel 5

 metapackage-xorg.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/metapackage-xorg.spec b/metapackage-xorg.spec
index 756ca93..b0fb2b2 100644
--- a/metapackage-xorg.spec
+++ b/metapackage-xorg.spec
@@ -2,7 +2,7 @@ Summary:Metapackage that installs a set of Xorg 
packages needed to run on any c
 Summary(pl.UTF-8): Metapakiet instalujący zestaw pakietów potrzebnych by 
uruchomić Xorg na każdym sprzęcie
 Name:  metapackage-xorg
 Version:   7.7
-Release:   4
+Release:   5
 Epoch: 1
 License:   GPL
 Group: X11
@@ -31,9 +31,9 @@ Requires: xorg-driver-video-chips
 Requires:  xorg-driver-video-cirrus
 Requires:  xorg-driver-video-dummy
 Requires:  xorg-driver-video-fbdev
-%ifarch %{ix86}
-Requires:  xorg-driver-video-geode
-%endif
+#%ifarch %{ix86}
+#Requires: xorg-driver-video-geode
+#%endif
 Requires:  xorg-driver-video-glint
 Requires:  xorg-driver-video-i128
 Requires:  xorg-driver-video-i740


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/metapackage-xorg.git/commitdiff/38dadf49d340dfbb348144d5ed3ada69dde55e6d

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/newmail] Created branch master

2012-10-03 Thread atler
The branch 'master' was created.

Summary of new commits:

  40f4ddb... - new
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/newmail] - new

2012-10-03 Thread atler
commit 40f4ddb74f89ae5ea6af4f49e5563f6d67ba6e54
Author: Jan Palus jan.pa...@gmail.com
Date:   Wed Oct 3 19:03:06 2012 +0200

- new

 newmail-compile.patch | 12 
 newmail.spec  | 41 +
 2 files changed, 53 insertions(+)
---
diff --git a/newmail.spec b/newmail.spec
new file mode 100644
index 000..029a346
--- /dev/null
+++ b/newmail.spec
@@ -0,0 +1,41 @@
+Summary:   Count unread mails in a Maildir++ directory structure
+Name:  newmail
+Version:   1.0
+Release:   1
+License:   BSD-like
+Group: Applications
+Source0:   http://burningsoda.com/software/newmail/%{name}-%{version}.tgz
+# Source0-md5: f2b3f52714646f38d79e128502923596
+Patch0:%{name}-compile.patch
+URL:   http://burningsoda.com/software/newmail/
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+newmail is a command line utility to check for new/unread mail in a
+recursive Maildir++ folder structure. It is written in pure ANSI C,
+should work on any POSIX compatible system, and can be used for other
+stuff—like, for example, in combination with Mutt—too.
+
+%prep
+%setup -q -n newmail
+%patch0 -p1
+
+%build
+%{__cc} %{rpmcflags} newmail.c -o newmail %{rpmldflags}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{_bindir}/
+install -d $RPM_BUILD_ROOT%{_mandir}/man1
+install newmail $RPM_BUILD_ROOT%{_bindir}
+install newmail.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc LICENSE
+%attr(755,root,root) %{_bindir}/newmail
+%{_mandir}/man1/newmail.1*
diff --git a/newmail-compile.patch b/newmail-compile.patch
new file mode 100644
index 000..786e13e
--- /dev/null
+++ b/newmail-compile.patch
@@ -0,0 +1,12 @@
+diff -ur newmail.orig/newmail.c newmail/newmail.c
+--- newmail.orig/newmail.c 2012-10-03 18:53:40.534769342 +0200
 newmail/newmail.c  2012-10-03 18:53:56.908013977 +0200
+@@ -126,7 +126,7 @@
+   fprintf(stderr, %s: Only one directory structure allowed. 
+   Using: %s\n, argv[0], argv[optind]);
+ }
+-snprintf(maildirname, sizeof(maildirname), argv[optind]);
++strncpy(maildirname, argv[optind], MAXPATHLEN);
+   } else {
+ if (!getenv(HOME)) error_quit(Unable to determine $HOME directory);
+ snprintf(maildirname, sizeof(maildirname), %s/Maildir, getenv(HOME));


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/newmail.git/commitdiff/40f4ddb74f89ae5ea6af4f49e5563f6d67ba6e54

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: newmail: newmail-1.0.tgz

2012-10-03 Thread atler

Files fetched: 1

STORED: http://burningsoda.com/software/newmail/newmail-1.0.tgz
f2b3f52714646f38d79e128502923596  newmail-1.0.tgz
Size: 4026 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/newmail] - correctly terminate string

2012-10-03 Thread atler
commit 33ca74c8fc3183581eb2483bb24179d157501f60
Author: Jan Palus jan.pa...@gmail.com
Date:   Wed Oct 3 19:08:38 2012 +0200

- correctly terminate string

 newmail-compile.patch | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/newmail-compile.patch b/newmail-compile.patch
index 786e13e..aefa0ea 100644
--- a/newmail-compile.patch
+++ b/newmail-compile.patch
@@ -1,12 +1,14 @@
+Only in newmail: newmail
 diff -ur newmail.orig/newmail.c newmail/newmail.c
 --- newmail.orig/newmail.c 2012-10-03 18:53:40.534769342 +0200
-+++ newmail/newmail.c  2012-10-03 18:53:56.908013977 +0200
-@@ -126,7 +126,7 @@
 newmail/newmail.c  2012-10-03 19:06:27.135159274 +0200
+@@ -126,7 +126,8 @@
fprintf(stderr, %s: Only one directory structure allowed. 
Using: %s\n, argv[0], argv[optind]);
  }
 -snprintf(maildirname, sizeof(maildirname), argv[optind]);
 +strncpy(maildirname, argv[optind], MAXPATHLEN);
++maildirname[MAXPATHLEN] = '\0';
} else {
  if (!getenv(HOME)) error_quit(Unable to determine $HOME directory);
  snprintf(maildirname, sizeof(maildirname), %s/Maildir, getenv(HOME));


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/newmail.git/commitdiff/33ca74c8fc3183581eb2483bb24179d157501f60

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/wxWidgets] - added prec patch: disable use of wxprec.h in mmedia/vid*.h headers - it doesn't work this way

2012-10-03 Thread qboosh
commit b584f04c6e5802e82028120bfffc333983a85bc1
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Wed Oct 3 19:11:16 2012 +0200

- added prec patch: disable use of wxprec.h in mmedia/vid*.h headers - it 
doesn't work this way

 wxWidgets-prec.patch | 45 +
 wxWidgets.spec   |  2 ++
 2 files changed, 47 insertions(+)
---
diff --git a/wxWidgets.spec b/wxWidgets.spec
index 4adb73a..0a83dc4 100644
--- a/wxWidgets.spec
+++ b/wxWidgets.spec
@@ -24,6 +24,7 @@ Patch4:   %{name}-gcc4.patch
 Patch5:wxGTK-2.8.10.1-odbc-defines.patch
 Patch6:%{name}-cairo.patch
 Patch7:%{name}-format.patch
+Patch8:%{name}-prec.patch
 URL:   http://www.wxWidgets.org/
 BuildRequires: OpenGL-GLU-devel
 #BuildRequires:SDL-devel
@@ -479,6 +480,7 @@ obsługą UNICODE.
 %patch5 -p1
 %patch6 -p1
 %patch7 -p1
+%patch8 -p1
 
 %{__rm} build/aclocal/bakefile*.m4
 
diff --git a/wxWidgets-prec.patch b/wxWidgets-prec.patch
new file mode 100644
index 000..fec495c
--- /dev/null
+++ b/wxWidgets-prec.patch
@@ -0,0 +1,45 @@
+--- wxWidgets-2.8.12/contrib/include/wx/mmedia/vidbase.h.orig  2011-03-22 
13:01:05.0 +0100
 wxWidgets-2.8.12/contrib/include/wx/mmedia/vidbase.h   2012-10-03 
19:04:15.935793663 +0200
+@@ -16,7 +16,6 @@
+ // headers
+ // 

+ // For compilers that support precompilation, includes wx/wx.h.
+-#include wx/wxprec.h
+ 
+ #ifdef __BORLANDC__
+ #pragma hdrstop
+@@ -24,13 +23,11 @@
+ 
+ // for all others, include the necessary headers (this file is usually all you
+ // need because it includes almost all standard wxWidgets headers
+-#ifndef WX_PRECOMP
+ #include wx/defs.h
+ #include wx/stream.h
+ #include wx/string.h
+ #include wx/window.h
+ #include wx/frame.h
+-#endif
+ 
+ #include wx/mmedia/defs.h
+ 
+--- wxWidgets-2.8.12/contrib/include/wx/mmedia/vidxanm.h.orig  2011-03-22 
13:01:05.0 +0100
 wxWidgets-2.8.12/contrib/include/wx/mmedia/vidxanm.h   2012-10-03 
19:05:04.928013219 +0200
+@@ -15,7 +15,6 @@
+ // headers
+ // 

+ // For compilers that support precompilation, includes wx/wx.h.
+-#include wx/wxprec.h
+ 
+ #ifdef __BORLANDC__
+ #pragma hdrstop
+@@ -25,10 +24,8 @@
+ 
+ // for all others, include the necessary headers (this file is usually all you
+ // need because it includes almost all standard wxWidgets headers
+-#ifndef WX_PRECOMP
+ #include wx/defs.h
+ #include wx/string.h
+-#endif
+ 
+ // 

+ // System dependent headers


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/wxWidgets.git/commitdiff/b584f04c6e5802e82028120bfffc333983a85bc1

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/python-PyYAML] the name should be python-yaml

2012-10-03 Thread jajcus
commit fbdd132f66a732e5290fa18216396700782ff2db
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 19:13:13 2012 +0200

the name should be python-yaml

 python-PyYAML.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/python-PyYAML.spec b/python-PyYAML.spec
index 5ca07d7..026f03b 100644
--- a/python-PyYAML.spec
+++ b/python-PyYAML.spec
@@ -1,4 +1,7 @@
 #
+# TODO:
+#  - the name should be python-yaml (used via 'import yaml')
+#
 %definemodule  PyYAML
 %definemodule_dir  yaml
 #


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-PyYAML.git/commitdiff/fbdd132f66a732e5290fa18216396700782ff2db

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[projects/template-specs] Use python module/package name for pkg Name:

2012-10-03 Thread jajcus
commit 3256a2f07f235ba8bcf97752ab9008d23dd1fb73
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 19:15:56 2012 +0200

Use python module/package name for pkg Name:

 python.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/python.spec b/python.spec
index 9a1e617..2e97aa5 100644
--- a/python.spec
+++ b/python.spec
@@ -5,6 +5,7 @@
 %definemodule  template
 Summary:   -
 Summary(pl.UTF-8): -
+# Name must match the python module/package name (as in 'import' statement)
 Name:  python-%{module}
 Version:   _
 Release:   0.1


 gitweb:

http://git.pld-linux.org/gitweb.cgi/projects/template-specs.git/commitdiff/3256a2f07f235ba8bcf97752ab9008d23dd1fb73

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] check errors

2012-10-03 Thread glen
commit 6fcf51a64fb10c3259f827e83c2732f822b21e2f
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Sep 13 22:16:50 2012 +0300

check errors

 get-source.sh | 4 
 1 file changed, 4 insertions(+)
---
diff --git a/get-source.sh b/get-source.sh
index e79adf0..58aeea1 100755
--- a/get-source.sh
+++ b/get-source.sh
@@ -25,11 +25,14 @@ depth=5
 
 chrome_channel=stable
 chrome_version=$(curl -s $omahaproxy_url/?os=linuxchannel=$chrome_channel | 
awk -F, 'NR  1{print $3}')
+test -n $chrome_version
 chrome_revision=$(curl -s $omahaproxy_url/revision?version=$chrome_version)
+test -n $chrome_revision
 chrome_branch=$(IFS=.; set -- $chrome_version; echo $3)
 
 test -e DEPS.py || svn cat 
http://src.chromium.org/chrome/branches/$chrome_branch/src/DEPS@$chrome_revision
  DEPS.py
 nacl_revision=$(awk -F'' '/nacl_revision.:/{print $4}' DEPS.py)
+test -n $nacl_revision
 
 export GIT_DIR=$package/.git
 
@@ -43,6 +46,7 @@ else
 fi
 
 # get src/native_client/tools/REVISIONS directly from svn
+test -n $nacl_revision
 test -e NACL_REVISIONS.sh || svn cat 
$nacl_trunk/src/native_client/tools/REVISIONS@$nacl_revision  NACL_REVISIONS.sh
 
 if grep -Ev 
'^(#|(LINUX_HEADERS_FOR_NACL|NACL_(BINUTILS|GCC|GDB|GLIBC|NEWLIB))_COMMIT=[0-9a-f]+$|)'
 NACL_REVISIONS.sh 2; then


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/bae6856c4c54f72eb51080b8ae8b90db2bb437b5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] allow override channel

2012-10-03 Thread glen
commit 64a65cbc6061f1ef9b78df2dc589758ad42ed8b6
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Sep 13 22:17:05 2012 +0300

allow override channel

 get-source.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/get-source.sh b/get-source.sh
index 58aeea1..b900b8c 100755
--- a/get-source.sh
+++ b/get-source.sh
@@ -23,7 +23,7 @@ specfile=crossnacl-gcc.spec
 # fatal: Path 'gcc/BASE-VER' does not exist in 
'c69a5b7252d2f073d0f526800e4fca3b63cd1fab'
 depth=5
 
-chrome_channel=stable
+chrome_channel=${1:-stable}
 chrome_version=$(curl -s $omahaproxy_url/?os=linuxchannel=$chrome_channel | 
awk -F, 'NR  1{print $3}')
 test -n $chrome_version
 chrome_revision=$(curl -s $omahaproxy_url/revision?version=$chrome_version)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/bae6856c4c54f72eb51080b8ae8b90db2bb437b5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: crossnacl-gcc: nacl-gcc-4.4.3-git455063d.tar.xz

2012-10-03 Thread glen

Files fetched: 1

STORED: no-url://nacl-gcc-4.4.3-git455063d.tar.xz
dd49a8726695a06c7fe9fc531dc6c637  nacl-gcc-4.4.3-git455063d.tar.xz
Size: 31262536 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] use xz source

2012-10-03 Thread glen
commit 9c1398598e1160b39281eaa647feb8bae9cb7533
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Sep 13 22:17:21 2012 +0300

use xz source

 crossnacl-gcc.spec | 2 ++
 get-source.sh  | 8 
 2 files changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/crossnacl-gcc.spec b/crossnacl-gcc.spec
index 93436db..56efbcd 100644
--- a/crossnacl-gcc.spec
+++ b/crossnacl-gcc.spec
@@ -20,6 +20,8 @@ BuildRequires:gmp-c++-devel
 BuildRequires: gmp-devel
 BuildRequires: mpfr-devel
 BuildRequires: ppl-pwl-devel
+BuildRequires: tar = 1:1.22
+BuildRequires: xz
 %if %{without bootstrap}
 BuildRequires: crossnacl-newlib
 %endif
diff --git a/get-source.sh b/get-source.sh
index b900b8c..134cc03 100755
--- a/get-source.sh
+++ b/get-source.sh
@@ -60,15 +60,15 @@ version=$(git show $githash:gcc/BASE-VER)
 shorthash=$(git rev-parse --short $githash)
 prefix=$package-$version-git$shorthash
 
-if [ -f $prefix.tar.bz2 ]; then
-   echo Tarball $prefix.tar.bz2 already exists at $shorthash
+if [ -f $prefix.tar.xz ]; then
+   echo Tarball $prefix.tar.xz already exists at $shorthash
rm -f NACL_REVISIONS.sh DEPS.py
exit 0
 fi
 
 git archive $githash --prefix $prefix/  $prefix.tar
-bzip2 -9 $prefix.tar
+xz -9 $prefix.tar
 
-../dropin $prefix.tar.bz2
+../dropin $prefix.tar.xz
 
 rm -f NACL_REVISIONS.sh DEPS.py


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/bae6856c4c54f72eb51080b8ae8b90db2bb437b5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] use bare git repo

2012-10-03 Thread glen
commit a6cd2124bc6b2fb570ccddad4deee1c0ec362542
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Sep 13 22:31:04 2012 +0300

use bare git repo

 get-source.sh | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/get-source.sh b/get-source.sh
index 134cc03..804feb7 100755
--- a/get-source.sh
+++ b/get-source.sh
@@ -34,11 +34,11 @@ test -e DEPS.py || svn cat 
http://src.chromium.org/chrome/branches/$chrome_branc
 nacl_revision=$(awk -F'' '/nacl_revision.:/{print $4}' DEPS.py)
 test -n $nacl_revision
 
-export GIT_DIR=$package/.git
+export GIT_DIR=$package.git
 
-if [ ! -d $package ]; then
-   install -d $package
-   git init
+if [ ! -d $GIT_DIR ]; then
+   install -d $GIT_DIR
+   git init --bare
git remote add origin $repo_url
git fetch --depth $depth origin 
refs/heads/master:refs/remotes/origin/master
 else


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/bae6856c4c54f72eb51080b8ae8b90db2bb437b5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] up to 455063d (replace fsincos with fsin+fcos)

2012-10-03 Thread glen
commit bae6856c4c54f72eb51080b8ae8b90db2bb437b5
Author: Elan Ruusamäe g...@delfi.ee
Date:   Wed Oct 3 20:38:12 2012 +0300

up to 455063d (replace fsincos with fsin+fcos)

commit 455063da0a22a7a099d80efda2fff25bda15420a
Author: Victor Khimenko k...@chromium.org
Date:   Tue Jun 19 19:36:57 2012 +0400

Patch NaCl gcc to avoid use of fsincos.

BUG=http://code.google.com/p/nativeclient/issues/detail?id=2720
TEST=bots

R=pa...@google.com

Review URL: https://chromiumcodereview.appspot.com/10557041

 crossnacl-gcc.spec | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/crossnacl-gcc.spec b/crossnacl-gcc.spec
index 56efbcd..c2dd585 100644
--- a/crossnacl-gcc.spec
+++ b/crossnacl-gcc.spec
@@ -2,15 +2,15 @@
 # Conditional build:
 %bcond_withbootstrap   # build without NaCL newlib package 
dependency (without c++ package)
 
-%definegitver  3937565
+%definegitver  455063d
 Summary:   Various compilers (C, C++) for NaCl
 Name:  crossnacl-gcc
 Version:   4.4.3
 Release:   6.git%{gitver}
 License:   GPL v3+ and GPL v3+ with exceptions and GPL v2+ with exceptions
 Group: Development/Languages
-Source0:   nacl-gcc-%{version}-git%{gitver}.tar.bz2
-# Source0-md5: fcdfdd30b82d8ad8fa6e39e7e32cee64
+Source0:   nacl-gcc-%{version}-git%{gitver}.tar.xz
+# Source0-md5: dd49a8726695a06c7fe9fc531dc6c637
 Source1:   get-source.sh
 URL:   http://sourceware.org/gcc/
 BuildRequires: cloog-ppl-devel
@@ -35,6 +35,7 @@ BuildRoot:%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 %definegccnlib %{_prefix}/lib/gcc/%{target}/%{gcc_ver}
 
 %definefilterout_cpp   -D_FORTIFY_SOURCE=[0-9]+
+%definefilterout_c -Werror=format-security
 
 %description
 The gcc package contains the GNU Compiler Collection version 4.4.3.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/bae6856c4c54f72eb51080b8ae8b90db2bb437b5

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/gnome-settings-daemon] - updated systemd-fallback to use systemd-daemon lib and link with correct libs - rel. 1

2012-10-03 Thread kiesiu
commit 089c721170741f130abc5283d53a83a020af496c
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Wed Oct 3 20:31:36 2012 +0200

- updated systemd-fallback to use systemd-daemon lib and link with correct 
libs
- rel. 1

 gnome-settings-daemon.spec |  2 +-
 systemd-fallback.patch | 55 --
 2 files changed, 45 insertions(+), 12 deletions(-)
---
diff --git a/gnome-settings-daemon.spec b/gnome-settings-daemon.spec
index c70ce21..af2cf55 100644
--- a/gnome-settings-daemon.spec
+++ b/gnome-settings-daemon.spec
@@ -10,7 +10,7 @@ Summary:  GNOME Settings Daemon
 Summary(pl.UTF-8): Demon ustawień GNOME
 Name:  gnome-settings-daemon
 Version:   3.6.0
-Release:   0.1
+Release:   1
 Epoch: 1
 License:   GPL v2+
 Group: X11/Applications
diff --git a/systemd-fallback.patch b/systemd-fallback.patch
index 19eae7f..2946e1e 100644
--- a/systemd-fallback.patch
+++ b/systemd-fallback.patch
@@ -1,5 +1,18 @@
 
gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c.old  
   2012-10-02 21:47:26.463470258 +0200
-+++ gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c 
2012-10-02 21:46:30.047109277 +0200
+diff -uNr gnome-settings-daemon-3.6.0/configure.ac 
gnome-settings-daemon-3.6.0.new/configure.ac
+--- gnome-settings-daemon-3.6.0/configure.ac   2012-09-25 10:36:08.0 
+0200
 gnome-settings-daemon-3.6.0.new/configure.ac   2012-10-03 
20:20:58.796757197 +0200
+@@ -347,7 +347,7 @@
+   [with_systemd=$enableval],
+   [with_systemd=no])
+ if test $with_systemd = yes ; then
+-  PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login])
++  PKG_CHECK_MODULES(SYSTEMD, [libsystemd-daemon libsystemd-login])
+   AC_DEFINE(HAVE_SYSTEMD, 1, [Define if systemd is used for session tracking])
+   SESSION_TRACKING=systemd
+ else
+diff -uNr 
gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c 
gnome-settings-daemon-3.6.0.new/gnome-settings-daemon/gnome-settings-session.c
+--- gnome-settings-daemon-3.6.0/gnome-settings-daemon/gnome-settings-session.c 
2012-02-15 19:21:07.0 +0100
 
gnome-settings-daemon-3.6.0.new/gnome-settings-daemon/gnome-settings-session.c  
   2012-10-03 20:20:58.796757197 +0200
 @@ -30,6 +30,7 @@
  #include gnome-settings-session.h
  
@@ -8,7 +21,7 @@
  #include systemd/sd-login.h
  
  typedef struct
-@@ -130,10 +131,9 @@ struct GnomeSettingsSessionPrivate
+@@ -130,10 +131,9 @@
  {
  #ifdef HAVE_SYSTEMD
  GSource   *sd_source;
@@ -20,7 +33,7 @@
gchar   *session_id;
GnomeSettingsSessionState state;
  };
-@@ -237,7 +237,7 @@ sessions_changed (gpointer user_data)
+@@ -237,7 +237,7 @@
  return TRUE;
  }
  
@@ -29,7 +42,7 @@
  
  static void
  gnome_settings_session_proxy_signal_cb (GDBusProxy *proxy,
-@@ -371,22 +371,26 @@ got_manager_proxy_cb (GObject *source_ob
+@@ -371,22 +371,26 @@
g_object_unref (proxy_manager);
  }
  
@@ -66,7 +79,7 @@
session-priv-cancellable = g_cancellable_new ();
  
/* connect to ConsoleKit */
-@@ -399,7 +403,6 @@ gnome_settings_session_init (GnomeSettin
+@@ -399,7 +403,6 @@
  session-priv-cancellable,
  got_manager_proxy_cb,
  session);
@@ -74,7 +87,7 @@
  }
  
  static void
-@@ -415,15 +418,16 @@ gnome_settings_session_finalize (GObject
+@@ -415,15 +418,16 @@
  if (session-priv-sd_source != NULL) {
  g_source_destroy (session-priv-sd_source);
  g_source_unref (session-priv-sd_source);
@@ -93,9 +106,10 @@
G_OBJECT_CLASS (gnome_settings_session_parent_class)-finalize (object);
  }
  
 gnome-settings-daemon-3.6.0/plugins/common/gsd-power-helper.c.old  
2012-10-02 21:33:48.061237388 +0200
-+++ gnome-settings-daemon-3.6.0/plugins/common/gsd-power-helper.c  
2012-10-02 21:43:37.094712921 +0200
-@@ -79,7 +79,7 @@ systemd_hibernate (void)
+diff -uNr gnome-settings-daemon-3.6.0/plugins/common/gsd-power-helper.c 
gnome-settings-daemon-3.6.0.new/plugins/common/gsd-power-helper.c
+--- gnome-settings-daemon-3.6.0/plugins/common/gsd-power-helper.c  
2012-09-17 18:48:45.0 +0200
 gnome-settings-daemon-3.6.0.new/plugins/common/gsd-power-helper.c  
2012-10-03 20:20:58.796757197 +0200
+@@ -79,7 +79,7 @@
  g_object_unref (bus);
  }
  
@@ -104,7 +118,7 @@
  
  static void
  consolekit_stop_cb (GObject *source_object,
-@@ -170,34 +170,37 @@ upower_hibernate (GDBusProxy *upower_pro
+@@ -170,34 +170,37 @@
 -1, NULL,
 upower_sleep_cb, NULL);
  }
@@ -152,3 +166,22 @@
  #endif
 +  upower_hibernate (upower_proxy);
  }
+diff -uNr gnome-settings-daemon-3.6.0/plugins/common/Makefile.am 
gnome-settings-daemon-3.6.0.new/plugins/common/Makefile.am
+--- 

[packages/fife] BR: swig-python

2012-10-03 Thread jajcus
commit 80c3c2fc49fe5f0f75cb91d003a2286e65a1837d
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 21:28:07 2012 +0200

BR: swig-python

 fife.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/fife.spec b/fife.spec
index 5e139ff..f7fc03d 100644
--- a/fife.spec
+++ b/fife.spec
@@ -26,6 +26,7 @@ BuildRequires:libpng-devel
 BuildRequires: libvorbis-devel
 BuildRequires: python-devel = 2.7
 BuildRequires: scons
+BuildRequires: swig-python
 BuildRequires: tinyxml-devel
 BuildRequires: xorg-lib-libXcursor-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fife.git/commitdiff/80c3c2fc49fe5f0f75cb91d003a2286e65a1837d

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libcanberra] - udev epoch, versioned glib dependency

2012-10-03 Thread qboosh
commit a9c15d839871fdc4064466ca50650d5fb153913b
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Wed Oct 3 21:32:52 2012 +0200

- udev epoch, versioned glib dependency

 libcanberra.spec | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/libcanberra.spec b/libcanberra.spec
index 43a443d..fabc691 100644
--- a/libcanberra.spec
+++ b/libcanberra.spec
@@ -1,7 +1,7 @@
 #
 # Conditional build:
 %bcond_without gtk3# gtk+3 support
-%bcond_withgnome2
+%bcond_withgnome2  # with GDK ready sound
 #
 Summary:   libcanberra - the portable sound event library
 Summary(pl.UTF-8): libcanberra - przenośna biblioteka zdarzeń dźwiękowych
@@ -31,16 +31,18 @@ BuildRequires:  pkgconfig
 BuildRequires: pulseaudio-devel = 0.9.11-1
 BuildRequires: rpmbuild(macros) = 1.527
 BuildRequires: tdb-devel = 2:1.1
-BuildRequires: udev-devel = 160
+BuildRequires: udev-devel = 1:160
 BuildRequires: tar = 1:1.22
+BuildRequires: xorg-lib-libX11-devel
 BuildRequires: xz
 Requires:  alsa-lib = 1.0.0
+Requires:  glib2 = 1:2.32.0
 Requires:  gstreamer = 1.0.0
 Requires:  pulseaudio-libs = 0.9.11-1
 Requires:  sound-theme-freedesktop
 Requires:   systemd-units = 0.38
 Requires:  tdb = 2:1.1
-Requires:  udev-libs = 160
+Requires:  udev-libs = 1:160
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %definebackenddir  %{_libdir}/libcanberra-%{version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libcanberra.git/commitdiff/a9c15d839871fdc4064466ca50650d5fb153913b

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/fife] Use -j1 for scons

2012-10-03 Thread jajcus
commit 0f70a062b79791ad6a3f69e9c4ced6e6972fabc4
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 21:36:02 2012 +0200

Use -j1 for scons

 fife.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/fife.spec b/fife.spec
index f7fc03d..cb52acb 100644
--- a/fife.spec
+++ b/fife.spec
@@ -89,7 +89,7 @@ Dokumentacja API biblioteki %{name}.
 %patch0 -p1
 
 %build
-%scons fife-shared fife-python \
+%scons -j1 fife-shared fife-python \
%{?with_static_libs:fife-static} \
--lib-dir=%{_libdir} \
--prefix=%{_prefix} \
@@ -98,7 +98,7 @@ Dokumentacja API biblioteki %{name}.
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%scons install-shared install-python install-dev \
+%scons -j1 install-shared install-python install-dev \
%{?with_static_libs:install-static} \
--lib-dir=%{_libdir} \
--prefix=%{_prefix} \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fife.git/commitdiff/0f70a062b79791ad6a3f69e9c4ced6e6972fabc4

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/fife] Release: 1

2012-10-03 Thread jajcus
commit 23b2d2e1958349667c6aa86f27ca5bd756334f60
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 21:49:54 2012 +0200

Release: 1

 fife.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/fife.spec b/fife.spec
index cb52acb..6d79a9a 100644
--- a/fife.spec
+++ b/fife.spec
@@ -7,7 +7,7 @@
 Summary:   Flexible Isometric Free Engine
 Name:  fife
 Version:   0.3.3r3
-Release:   0.1
+Release:   1
 License:   LGPL v2
 Group: Libraries
 Source0:   http://downloads.sourceforge.net/fife/%{name}_%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fife.git/commitdiff/23b2d2e1958349667c6aa86f27ca5bd756334f60

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/gdm] - drop polkit patch - fix shell-check.patch - release 2

2012-10-03 Thread wiget
commit 57f9ed73c46e9dd2d48ef8667620b8b71ee91bb4
Author: Artur Frysiak ar...@frysiak.net
Date:   Wed Oct 3 22:14:16 2012 +0200

- drop polkit patch
- fix shell-check.patch
- release 2

 gdm-polkit.patch  | 310 --
 gdm.spec  |   2 +-
 shell-check.patch |   2 +-
 3 files changed, 2 insertions(+), 312 deletions(-)
---
diff --git a/gdm.spec b/gdm.spec
index 762d874..72d380f 100644
--- a/gdm.spec
+++ b/gdm.spec
@@ -16,7 +16,7 @@ Summary(ru.UTF-8):Дисплейный менеджер GNOME
 Summary(uk.UTF-8): Дисплейний менеджер GNOME
 Name:  gdm
 Version:   3.6.0
-Release:   1
+Release:   2
 Epoch: 2
 License:   GPL/LGPL
 Group: X11/Applications
diff --git a/gdm-polkit.patch b/gdm-polkit.patch
deleted file mode 100644
index f48d451..000
--- a/gdm-polkit.patch
+++ /dev/null
@@ -1,310 +0,0 @@
-From 09153c6825e5b5157fba7600cefabb762d887891 Mon Sep 17 00:00:00 2001
-From: Robert Ancell robert.anc...@ubuntu.com
-Date: Thu, 6 Aug 2009 15:57:15 +0100
-Subject: [PATCH 1/2] Add PolicyKit support to GDM settings D-Bus interface
-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/395299
-Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=587750
-
 gdm-3.1.90/data/Makefile.am.wiget  2011-08-31 02:04:37.0 +0200
-+++ gdm-3.1.90/data/Makefile.am2011-09-05 21:46:13.070224232 +0200
-@@ -45,6 +45,8 @@ schemasdir = $(pkgdatadir)
- schemas_in_files = gdm.schemas.in
- schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
- 
-+@INTLTOOL_POLICY_RULE@
-+
- gdm.schemas.in: $(srcdir)/gdm.schemas.in.in
-   sed -e 's,[@]GDMPREFETCHCMD[@],$(GDMPREFETCHCMD),g' \
-   -e 's,[@]GDM_CUSTOM_CONF[@],$(GDM_CUSTOM_CONF),g' \
-@@ -84,11 +86,18 @@ localealias_DATA = locale.alias
- sessiondir = $(datadir)/gnome-session/sessions
- session_DATA = gdm-fallback.session gdm-shell.session
- 
-+polkitdir = $(datadir)/polkit-1/actions
-+polkit_in_files = gdm.policy.in
-+polkit_DATA = $(polkit_in_files:.policy.in=.policy)
-+check:
-+  $(POLKIT_POLICY_FILE_VALIDATE) $(polkit_DATA)
-+
- EXTRA_DIST =  \
-   $(schemas_in_files) \
-   $(schemas_DATA) \
-   $(dbusconf_in_files)\
-   $(localealias_DATA) \
-+  $(polkit_in_files)  \
-   gdm.schemas.in.in   \
-   gdm.conf-custom.in  \
-   Xsession.in \
-@@ -118,6 +127,7 @@ CLEANFILES =   \
- 
- DISTCLEANFILES =  \
-   $(dbusconf_DATA)\
-+  $(polkit_DATA)  \
-   gdm-shell.session   \
-   gdm.schemas \
-   dconf-override-db   \
 gdm-3.1.90/data/gdm.conf.in.wiget  2011-08-09 22:08:42.0 +0200
-+++ gdm-3.1.90/data/gdm.conf.in2011-09-05 21:44:39.831640332 +0200
-@@ -34,8 +34,6 @@
- deny send_destination=org.gnome.DisplayManager
-   send_interface=org.gnome.DisplayManager.LocalDisplayFactory/
- deny send_destination=org.gnome.DisplayManager
--  send_interface=org.gnome.DisplayManager.Settings/
--deny send_destination=org.gnome.DisplayManager
-   send_interface=org.gnome.DisplayManager.Slave/
- deny send_destination=org.gnome.DisplayManager
-   send_interface=org.gnome.DisplayManager.Session/
-@@ -44,6 +42,10 @@
- allow send_destination=org.gnome.DisplayManager
-send_interface=org.freedesktop.DBus.Introspectable/
- 
-+!-- Controlled by PolicyKit --
-+allow send_destination=org.gnome.DisplayManager
-+   send_interface=org.gnome.DisplayManager.Settings/
-+
- allow send_destination=org.gnome.DisplayManager
-send_interface=org.gnome.DisplayManager.Display
-send_member=GetId/
 gdm-3.1.90/data/gdm.policy.in.wiget2011-09-05 21:44:39.831640332 
+0200
-+++ gdm-3.1.90/data/gdm.policy.in  2011-09-05 21:44:39.831640332 +0200
-@@ -0,0 +1,18 @@
-+?xml version=1.0 encoding=UTF-8?
-+!DOCTYPE policyconfig PUBLIC
-+ -//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN
-+ http://www.freedesktop.org/standards/PolicyKit/1.0/policyconfig.dtd;
-+policyconfig
-+  vendorThe GNOME Project/vendor
-+  vendor_urlhttp://www.gnome.org//vendor_url
-+  icon_namegdm/icon_name
-+
-+  action id=org.gnome.displaymanager.settings.write
-+descriptionChange login screen configuration/description
-+messagePrivileges are required to change the login screen 
configuration./message
-+defaults
-+  allow_inactiveno/allow_inactive
-+  allow_activeauth_admin_keep/allow_active
-+/defaults
-+  /action
-+/policyconfig
 gdm-3.1.90/common/Makefile.am.wiget2011-08-09 22:08:42.0 
+0200
-+++ gdm-3.1.90/common/Makefile.am  2011-09-05 21:44:39.831640332 +0200
-@@ -99,6 +99,7 @@ libgdmcommon_la_CFLAGS = \
-   $(NULL)
- 
- libgdmcommon_la_LIBADD =  \
-+  $(COMMON_LIBS)   

[packages/unknown-horizons] Created branch master

2012-10-03 Thread jajcus
The branch 'master' was created.

Summary of new commits:

  d183884... new package
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/unknown-horizons] new package

2012-10-03 Thread jajcus
commit d183884fdf014943b70a3214e57c9525a69664f8
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 19:49:05 2012 +0200

new package

 unknown-horizons.spec | 83 +++
 1 file changed, 83 insertions(+)
---
diff --git a/unknown-horizons.spec b/unknown-horizons.spec
new file mode 100644
index 000..d7302b2
--- /dev/null
+++ b/unknown-horizons.spec
@@ -0,0 +1,83 @@
+# used in the tarball name
+%definever_hash1   244f49f
+# used in the directory name
+%definever_hash2   bedaf75
+Summary:   Unknown Horizons - a 2D realtime strategy simulation
+Name:  unknown-horizons
+Version:   2012.1a
+Release:   0.1
+License:   GPL v2+, distributable (see docs)
+Group: Applications/Games
+# 
https://nodeload.github.com/unknown-horizons/unknown-horizons/zipball/%{version}
+Source0:   %{name}-%{name}-%{version}-0-g%{ver_hash1}.zip
+# Source0-md5: 522c5a6c7a583d98a9ecb686b085f7d6
+URL:   http://www.unknown-horizons.org/
+BuildRequires: python-distribute
+BuildRequires: rpm-pythonprov
+Requires:  python-PyYAML
+Requires:  python-fife
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Unknown Horizons is a 2D realtime strategy simulation with an emphasis
+on economy and city building. Expand your small settlement to a strong
+and wealthy colony, collect taxes and supply your inhabitants with
+valuable goods. Increase your power with a well balanced economy and
+with strategic trade and diplomacy.
+
+%prep
+%setup -q -n %{name}-%{name}-%{ver_hash2}
+
+# fix #!%{_bindir}/env python - #!%{__python}:
+%{__sed} -i -e '1s,^#!.*python,#!%{__python},' run_uh.py
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{py_sitedir}
+
+%{__python} setup.py install \
+   --root=$RPM_BUILD_ROOT
+
+# contains binary code
+mv $RPM_BUILD_ROOT%{py_sitescriptdir}/* $RPM_BUILD_ROOT%{py_sitedir}
+
+rm -r $RPM_BUILD_ROOT%{py_sitedir}/horizons/network/{darwin,freebsd,windows}-*
+
+%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
+%py_comp $RPM_BUILD_ROOT%{py_sitedir}
+
+%find_lang %{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{name}.lang
+%defattr(644,root,root,755)
+%doc README doc/{APL,AUTHORS,CC,CHANGELOG,GPL_fontexception,LICENSE,MIT,OFL}
+%attr(755,root,root) %{_bindir}/%{name}
+%{_datadir}/%{name}
+%dir %{py_sitedir}
+%dir %{py_sitedir}/horizons
+%{py_sitedir}/horizons/ai
+%{py_sitedir}/horizons/command
+%{py_sitedir}/horizons/engine
+%{py_sitedir}/horizons/ext
+%{py_sitedir}/horizons/gui
+%{py_sitedir}/horizons/i18n
+%dir %{py_sitedir}/horizons/network
+%dir %{py_sitedir}/horizons/network/linux-*
+%attr(755,root,root) %{py_sitedir}/horizons/network/linux-*/enet.so
+%{py_sitedir}/horizons/network/linux-*/*.py*
+%{py_sitedir}/horizons/network/packets
+%{py_sitedir}/horizons/network/*.py*
+%{py_sitedir}/horizons/scenario
+%{py_sitedir}/horizons/util
+%{py_sitedir}/horizons/world
+%{py_sitedir}/horizons/*.py*
+%{py_sitedir}/*.egg-info
+%{_pixmapsdir}/*
+%{_desktopdir}/*
+%{_mandir}/man6/%{name}.6*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/unknown-horizons.git/commitdiff/d183884fdf014943b70a3214e57c9525a69664f8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: unknown-horizons: unknown-horizons-unknown-horizons-2012.1a-0-g244f49f.zip

2012-10-03 Thread jajcus

Files fetched: 1

STORED: no-url://unknown-horizons-unknown-horizons-2012.1a-0-g244f49f.zip
522c5a6c7a583d98a9ecb686b085f7d6  
unknown-horizons-unknown-horizons-2012.1a-0-g244f49f.zip
Size: 163954733 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/unknown-horizons] Release: 1

2012-10-03 Thread jajcus
commit d7cabf68d1772dcf94b6c19b62b11a55571d90b8
Author: Jacek Konieczny jaj...@jajcus.net
Date:   Wed Oct 3 22:54:02 2012 +0200

Release: 1

 unknown-horizons.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/unknown-horizons.spec b/unknown-horizons.spec
index d7302b2..eacacba 100644
--- a/unknown-horizons.spec
+++ b/unknown-horizons.spec
@@ -5,7 +5,7 @@
 Summary:   Unknown Horizons - a 2D realtime strategy simulation
 Name:  unknown-horizons
 Version:   2012.1a
-Release:   0.1
+Release:   1
 License:   GPL v2+, distributable (see docs)
 Group: Applications/Games
 # 
https://nodeload.github.com/unknown-horizons/unknown-horizons/zipball/%{version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/unknown-horizons.git/commitdiff/d7cabf68d1772dcf94b6c19b62b11a55571d90b8

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/crossnacl-gcc] our builders unable to resolve file build conflict, so force package conflict

2012-10-03 Thread glen
commit 861a53d85ae15a8afb14a6b7b853befbda8f7911
Author: Elan Ruusamäe g...@delfi.ee
Date:   Wed Oct 3 23:55:26 2012 +0300

our builders unable to resolve file build conflict, so force package 
conflict

 crossnacl-gcc.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/crossnacl-gcc.spec b/crossnacl-gcc.spec
index c2dd585..e69fca0 100644
--- a/crossnacl-gcc.spec
+++ b/crossnacl-gcc.spec
@@ -22,6 +22,7 @@ BuildRequires:mpfr-devel
 BuildRequires: ppl-pwl-devel
 BuildRequires: tar = 1:1.22
 BuildRequires: xz
+BuildConflicts:cloog-isl-devel
 %if %{without bootstrap}
 BuildRequires: crossnacl-newlib
 %endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossnacl-gcc.git/commitdiff/861a53d85ae15a8afb14a6b7b853befbda8f7911

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/lessphp] up to 0.3.8

2012-10-03 Thread glen
commit 00a90112b2c4a63a847d97d037c2e1645736e044
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Oct 4 07:01:32 2012 +0300

up to 0.3.8

enhanced performance, new PHP interface, and bug
fixes. [Changelog](http://leafo.net/lessphp/changelog.html)

August 18th 2012

 fixes.patch  | 26 +-
 lessphp.spec |  4 ++--
 2 files changed, 11 insertions(+), 19 deletions(-)
---
diff --git a/lessphp.spec b/lessphp.spec
index 2ea2b9a..4160d68 100644
--- a/lessphp.spec
+++ b/lessphp.spec
@@ -1,11 +1,11 @@
 Summary:   lessphp is a compiler for LESS written in PHP
 Name:  lessphp
-Version:   0.3.3
+Version:   0.3.8
 Release:   1
 License:   MIT/GPL v3
 Group: Applications
 Source0:   http://leafo.net/lessphp/src/%{name}-%{version}.tar.gz
-# Source0-md5: 7a228e3239c5bf8dce7435447c3bb234
+# Source0-md5: 5cdda4ca825678077a669a67c835c6c7
 #Source0:  https://github.com/leafo/lessphp/tarball/master#/%{name}.tgz
 Patch0:fixes.patch
 URL:   http://leafo.net/lessphp/
diff --git a/fixes.patch b/fixes.patch
index 2b139c5..ba6be91 100644
--- a/fixes.patch
+++ b/fixes.patch
@@ -1,12 +1,14 @@
 lessphp-0.3.3/plessc~  2012-03-29 19:29:31.0 +0300
-+++ lessphp-0.3.3/plessc   2012-03-29 19:30:00.205475415 +0300
-@@ -1,13 +1,10 @@
+--- lessphp-0.3.5/plessc~  2012-10-04 06:36:19.0 +0300
 lessphp-0.3.5/plessc   2012-10-04 06:37:12.239862158 +0300
+@@ -1,4 +1,4 @@
 -#!/usr/bin/php -q
 +#!/usr/bin/php
  ?php
- //
- // command line utility to compile less to stdout
- // leaf corcoran leafo.net
+ // Command line utility to compile LESS to STDOUT
+ // Leaf Corcoran lea...@gmail.com, 2012
+@@ -38,10 +38,7 @@
+   exit($HELP);
+ }
  
 -error_reporting(E_ALL);
 -$path  = realpath(dirname(__FILE__)).'/';
@@ -16,19 +18,9 @@
  
  $VERSION = lessc::$VERSION;
  
-@@ -65,7 +62,7 @@
- }
- 
- if (has(v)) {
--  exit($VERSION.\n);
-+  die($VERSION.\n);
- }
- 
- if (has(r, $loc)) {
-@@ -136,6 +133,3 @@
+@@ -213,5 +210,3 @@
err($fa.$ex-getMessage());
exit(1);
  }
 -
--
 -?


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lessphp.git/commitdiff/00a90112b2c4a63a847d97d037c2e1645736e044

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: lessphp: lessphp-0.3.8.tar.gz

2012-10-03 Thread glen

Files fetched: 1

STORED: http://leafo.net/lessphp/src/lessphp-0.3.8.tar.gz
5cdda4ca825678077a669a67c835c6c7  lessphp-0.3.8.tar.gz
Size: 67075 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit