Hello community, here is the log from the commit of package limal-apparmor-control for openSUSE:Factory checked in at Tue Oct 4 16:59:51 CEST 2011.
-------- --- openSUSE:Factory/limal-apparmor-control/limal-apparmor-control.changes 2011-09-23 02:11:41.000000000 +0200 +++ /mounts/work_src_done/STABLE/limal-apparmor-control/limal-apparmor-control.changes 2011-09-29 14:49:56.000000000 +0200 @@ -1,0 +2,7 @@ +Thu Sep 29 14:47:28 CEST 2011 - [email protected] + +- version 1.6.3 +- fix project URL (bnc#676289) +- update translations + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- limal-apparmor-control-1.6.2.tar.bz2 New: ---- limal-apparmor-control-1.6.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ limal-apparmor-control.spec ++++++ --- /var/tmp/diff_new_pack.CjvAFm/_old 2011-10-04 16:59:47.000000000 +0200 +++ /var/tmp/diff_new_pack.CjvAFm/_new 2011-10-04 16:59:47.000000000 +0200 @@ -19,19 +19,19 @@ Name: limal-apparmor-control -Version: 1.6.2 -Release: 1 +Version: 1.6.3 +Release: 0 License: GPLv2+ Group: Development/Libraries/C and C++ BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: limal-apparmor-control-1.6.2.tar.bz2 +Source0: limal-apparmor-control-1.6.3.tar.bz2 Prefix: /usr %define swiglibdir /usr/share/limal/typemaps BuildRequires: curl gcc-c++ limal-devel limal-devtools limal-perl perl-gettext sgml-skel translation-update-upstream -Url: http://forge.novell.com/modules/xfmod/project/?apparmor +Url: http://svn.opensuse.org/viewvc/limal/ Summary: Limal pluglib to Control the AppArmor service %description @@ -48,7 +48,7 @@ Requires: limal-devel Group: Development/Libraries/C and C++ -License: GPLv2+ +License: GPL v2 or later Summary: Development libraries and header files for the apparmor-control limal pluglib. %description devel @@ -67,7 +67,7 @@ Requires: perl = %{perl_version} %endif Group: Development/Libraries/Perl -License: GPLv2+ +License: GPL v2 or later Summary: Limal pluglib for AppArmor that provides hooks to enable/disable the AppArmor service. %description perl @@ -81,7 +81,7 @@ %prep -%setup -n limal-apparmor-control-1.6.2 +%setup -n limal-apparmor-control-1.6.3 translation-update-upstream %build @@ -140,4 +140,5 @@ %dir %{perl_vendorarch}/auto/LIMAL/ApparmorControl/ %{perl_vendorarch}/auto/LIMAL/ApparmorControl/* %{perl_vendorarch}/LIMAL/*.pm + %changelog ++++++ limal-apparmor-control-1.6.2.tar.bz2 -> limal-apparmor-control-1.6.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/VERSION new/limal-apparmor-control-1.6.3/VERSION --- old/limal-apparmor-control-1.6.2/VERSION 2011-04-05 14:55:33.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/VERSION 2011-09-29 14:47:24.000000000 +0200 @@ -1 +1 @@ -1.6.2 +1.6.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/aclocal.m4 new/limal-apparmor-control-1.6.3/aclocal.m4 --- old/limal-apparmor-control-1.6.2/aclocal.m4 2011-04-05 14:56:21.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/aclocal.m4 2011-09-29 14:48:24.000000000 +0200 @@ -19,6 +19,198 @@ If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) +dnl +dnl check BloCxx +dnl +dnl LIMAL_CHECK_BLOCXX [VERSION] +dnl +AC_DEFUN([LIMAL_CHECK_BLOCXX], +[AC_REQUIRE([LIMAL_CHECK_LARGEFILE])dnl +# +# Check BloCxx installation using pkg-config (includes e.g. check for pcre) +# +m4_ifvaln([$1], [PKG_CHECK_MODULES(BLOCXX, [blocxx >= $1])], + [PKG_CHECK_MODULES(BLOCXX, [blocxx])]) +AC_SUBST(BLOCXX_CFLAGS) +AC_SUBST(BLOCXX_LIBS) + +# +# Check BloCxx config header file +# +AC_CHECK_HEADER([blocxx/BLOCXX_config.h],,[ + AC_MSG_ERROR([Unable to find blocxx/BLOCXX_config.h]) +]) + +# +# Check if blocxx was compiled with matching large file setting +# +AC_COMPILE_IFELSE( + [AC_LANG_PROGRAM([[#include <blocxx/BLOCXX_config.h>]], + [return BLOCXX_WITH_LARGEFILE])], + [blocxx_largefile=yes],[blocxx_largefile=no] +) +if test "$enable_largefile" != "$blocxx_largefile" ; then + AC_MSG_ERROR([Large file support inconsistence with BloCxx detected!]) +fi + +]) # LIMAL_CHECK_BLOCXX + +dnl +dnl check docbook +dnl +AC_DEFUN([LIMAL_CHECK_DOCBOOK], +[ +# It's just rude to go over the net to build +XSLTPROC_FLAGS=--nonet +DOCBOOK_ROOT= +if test ! -f /etc/xml/catalog; then + for i in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh /usr/share/sgml/docbook/xsl-stylesheets /usr/share/xml/docbook/stylesheet/nwalsh/current; + do + if test -d "$i"; then + DOCBOOK_ROOT=$i + fi + done + + # Last resort - try net + if test -z "$DOCBOOK_ROOT"; then + XSLTPROC_FLAGS= + fi +else + XML_CATALOG=/etc/xml/catalog + CAT_ENTRY_START='<!--' + CAT_ENTRY_END='-->' +fi + +AC_PATH_PROG(XSLTPROC,xsltproc) +XSLTPROC_WORKS=no +if test -n "$XSLTPROC"; then + AC_MSG_CHECKING([whether xsltproc works]) + + if test -n "$XML_CATALOG"; then + DB_FILE="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" + else + DB_FILE="$DOCBOOK_ROOT/docbook.xsl" + fi + + $XSLTPROC $XSLTPROC_FLAGS $DB_FILE >/dev/null 2>&1 << END +<?xml version="1.0" encoding='ISO-8859-1'?> +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<book id="test"> +</book> +END + if test "$?" = 0; then + XSLTPROC_WORKS=yes + fi + AC_MSG_RESULT($XSLTPROC_WORKS) +else + AC_MSG_ERROR([xsltproc required but not found]) +fi +AM_CONDITIONAL(have_xsltproc, test "$XSLTPROC_WORKS" = "yes") + +AC_SUBST(XML_CATALOG) +AC_SUBST(XSLTPROC_FLAGS) +AC_SUBST(DOCBOOK_ROOT) +AC_SUBST(CAT_ENTRY_START) +AC_SUBST(CAT_ENTRY_END) +]) # LIMAL_CHECK_DOCBOOK + +dnl +dnl Check large file support +dnl +AC_DEFUN([LIMAL_CHECK_LARGEFILE], +[AC_REQUIRE([AC_SYS_LARGEFILE])dnl + +LFS_CPPFLAGS="" +if test "$enable_largefile" != no ; then + enable_largefile=yes + + if test "$ac_cv_sys_file_offset_bits" != no; then + LFS_CPPFLAGS="-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" + fi + if test "$ac_cv_sys_large_files" != no; then + if test "x$LFS_CPPFLAGS" == "x" ; then + LFS_CPPFLAGS="-D_LARGE_FILES=$ac_cv_sys_large_files" + else + LFS_CPPFLAGS="-D_LARGE_FILES=$ac_cv_sys_large_files $LFS_CPPFLAGS" + fi + fi +fi +AC_SUBST(LFS_CPPFLAGS) +]) # LIMAL_CHECK_LARGEFILE + +dnl +dnl check LiMaL core lib +dnl +dnl LIMAL_CHECK_LIMAL [VERSION] +dnl +AC_DEFUN([LIMAL_CHECK_LIMAL], +[m4_ifvaln([$1], [PKG_CHECK_MODULES(LIMAL, [limal >= $1])], + [PKG_CHECK_MODULES(LIMAL, [limal])]) +AC_SUBST(LIMAL_CFLAGS) +AC_SUBST(LIMAL_LIBS) + +# +# Check LiMaL config header file +# +AC_CHECK_HEADER([limal/config.h],,[ + AC_MSG_ERROR([Unable to find limal/config.h]) +]) + +]) # LIMAL_CHECK_LIMAL + +dnl +dnl Check Perl +dnl +AC_DEFUN([LIMAL_CHECK_PERL], +[ +AC_PROGRAM_PATH(PERL, perl) +if test -z "$PERL" ; then + AC_MSG_ERROR([perl is missing; please install perl 5.x or later.]) +fi +AC_SUBST(PERL) + +PERL_CFLAGS=`$PERL -MExtUtils::Embed -e ccopts` +PERL_LDFLAGS=`$PERL -MExtUtils::Embed -e ldopts` +AC_SUBST(PERL_CFLAGS) +AC_SUBST(PERL_LDFLAGS) + +PERL_VENDORARCH=`$PERL -V:vendorarch | sed "s!.*='!!;s!'.*!!"` +AC_SUBST(PERL_VENDORARCH) +]) # LIMAL_CHECK_PERL + + +dnl +dnl Run given perl code +dnl +dnl LIMAL_PERL_IFELSE(PROGRAM, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +dnl +AC_DEFUN([LIMAL_PERL_IFELSE], +[m4_ifvaln([$1], [AC_REQUIRE([LIMAL_CHECK_PERL])dnl +cat >conftest.pl <<_PERL_IFELSE_ACEOF +$1; +_PERL_IFELSE_ACEOF +AS_IF([AC_TRY_COMMAND([$PERL conftest.pl])],[$2],[$3]) +rm -f conftest.pl])dnl +]) # LIMAL_PERL_IFELSE + + +dnl +dnl Check perl module avaliability +dnl +dnl LIMAL_CHECK_PERL_MODULE(MODULE, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +dnl +AC_DEFUN([LIMAL_CHECK_PERL_MODULE], +[AS_VAR_PUSHDEF([limal_perl_module], [limal_perl_module_$1])dnl +AC_CACHE_CHECK([for perl module $1], limal_perl_module, + [LIMAL_PERL_IFELSE([use $1], + [AS_VAR_SET(limal_perl_module, yes)], + [AS_VAR_SET(limal_perl_module, no)]) + ]) +AS_IF([test AS_VAR_GET(limal_perl_module) = yes], [$2], [$3])[]dnl +AS_VAR_POPDEF([limal_perl_module])dnl +])# LIMAL_CHECK_PERL_MODULE + + dnl dnl @synopsis LIMAL_PREFIX_CONFIG_H [(OUTPUT-HEADER [,PREFIX [,ORIG-HEADER]])] dnl @@ -211,66 +403,6 @@ ],[PACKAGE="$PACKAGE"])]) dnl -dnl check BloCxx -dnl -dnl LIMAL_CHECK_BLOCXX [VERSION] -dnl -AC_DEFUN([LIMAL_CHECK_BLOCXX], -[AC_REQUIRE([LIMAL_CHECK_LARGEFILE])dnl -# -# Check BloCxx installation using pkg-config (includes e.g. check for pcre) -# -m4_ifvaln([$1], [PKG_CHECK_MODULES(BLOCXX, [blocxx >= $1])], - [PKG_CHECK_MODULES(BLOCXX, [blocxx])]) -AC_SUBST(BLOCXX_CFLAGS) -AC_SUBST(BLOCXX_LIBS) - -# -# Check BloCxx config header file -# -AC_CHECK_HEADER([blocxx/BLOCXX_config.h],,[ - AC_MSG_ERROR([Unable to find blocxx/BLOCXX_config.h]) -]) - -# -# Check if blocxx was compiled with matching large file setting -# -AC_COMPILE_IFELSE( - [AC_LANG_PROGRAM([[#include <blocxx/BLOCXX_config.h>]], - [return BLOCXX_WITH_LARGEFILE])], - [blocxx_largefile=yes],[blocxx_largefile=no] -) -if test "$enable_largefile" != "$blocxx_largefile" ; then - AC_MSG_ERROR([Large file support inconsistence with BloCxx detected!]) -fi - -]) # LIMAL_CHECK_BLOCXX - -dnl -dnl Check large file support -dnl -AC_DEFUN([LIMAL_CHECK_LARGEFILE], -[AC_REQUIRE([AC_SYS_LARGEFILE])dnl - -LFS_CPPFLAGS="" -if test "$enable_largefile" != no ; then - enable_largefile=yes - - if test "$ac_cv_sys_file_offset_bits" != no; then - LFS_CPPFLAGS="-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" - fi - if test "$ac_cv_sys_large_files" != no; then - if test "x$LFS_CPPFLAGS" == "x" ; then - LFS_CPPFLAGS="-D_LARGE_FILES=$ac_cv_sys_large_files" - else - LFS_CPPFLAGS="-D_LARGE_FILES=$ac_cv_sys_large_files $LFS_CPPFLAGS" - fi - fi -fi -AC_SUBST(LFS_CPPFLAGS) -]) # LIMAL_CHECK_LARGEFILE - -dnl dnl check swig dnl AC_DEFUN([LIMAL_CHECK_SWIG], @@ -288,138 +420,6 @@ AC_SUBST(SWIG_LIB) ]) -dnl -dnl check docbook -dnl -AC_DEFUN([LIMAL_CHECK_DOCBOOK], -[ -# It's just rude to go over the net to build -XSLTPROC_FLAGS=--nonet -DOCBOOK_ROOT= -if test ! -f /etc/xml/catalog; then - for i in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh /usr/share/sgml/docbook/xsl-stylesheets /usr/share/xml/docbook/stylesheet/nwalsh/current; - do - if test -d "$i"; then - DOCBOOK_ROOT=$i - fi - done - - # Last resort - try net - if test -z "$DOCBOOK_ROOT"; then - XSLTPROC_FLAGS= - fi -else - XML_CATALOG=/etc/xml/catalog - CAT_ENTRY_START='<!--' - CAT_ENTRY_END='-->' -fi - -AC_PATH_PROG(XSLTPROC,xsltproc) -XSLTPROC_WORKS=no -if test -n "$XSLTPROC"; then - AC_MSG_CHECKING([whether xsltproc works]) - - if test -n "$XML_CATALOG"; then - DB_FILE="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl" - else - DB_FILE="$DOCBOOK_ROOT/docbook.xsl" - fi - - $XSLTPROC $XSLTPROC_FLAGS $DB_FILE >/dev/null 2>&1 << END -<?xml version="1.0" encoding='ISO-8859-1'?> -<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> -<book id="test"> -</book> -END - if test "$?" = 0; then - XSLTPROC_WORKS=yes - fi - AC_MSG_RESULT($XSLTPROC_WORKS) -else - AC_MSG_ERROR([xsltproc required but not found]) -fi -AM_CONDITIONAL(have_xsltproc, test "$XSLTPROC_WORKS" = "yes") - -AC_SUBST(XML_CATALOG) -AC_SUBST(XSLTPROC_FLAGS) -AC_SUBST(DOCBOOK_ROOT) -AC_SUBST(CAT_ENTRY_START) -AC_SUBST(CAT_ENTRY_END) -]) # LIMAL_CHECK_DOCBOOK - -dnl -dnl Check Perl -dnl -AC_DEFUN([LIMAL_CHECK_PERL], -[ -AC_PROGRAM_PATH(PERL, perl) -if test -z "$PERL" ; then - AC_MSG_ERROR([perl is missing; please install perl 5.x or later.]) -fi -AC_SUBST(PERL) - -PERL_CFLAGS=`$PERL -MExtUtils::Embed -e ccopts` -PERL_LDFLAGS=`$PERL -MExtUtils::Embed -e ldopts` -AC_SUBST(PERL_CFLAGS) -AC_SUBST(PERL_LDFLAGS) - -PERL_VENDORARCH=`$PERL -V:vendorarch | sed "s!.*='!!;s!'.*!!"` -AC_SUBST(PERL_VENDORARCH) -]) # LIMAL_CHECK_PERL - - -dnl -dnl Run given perl code -dnl -dnl LIMAL_PERL_IFELSE(PROGRAM, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) -dnl -AC_DEFUN([LIMAL_PERL_IFELSE], -[m4_ifvaln([$1], [AC_REQUIRE([LIMAL_CHECK_PERL])dnl -cat >conftest.pl <<_PERL_IFELSE_ACEOF -$1; -_PERL_IFELSE_ACEOF -AS_IF([AC_TRY_COMMAND([$PERL conftest.pl])],[$2],[$3]) -rm -f conftest.pl])dnl -]) # LIMAL_PERL_IFELSE - - -dnl -dnl Check perl module avaliability -dnl -dnl LIMAL_CHECK_PERL_MODULE(MODULE, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) -dnl -AC_DEFUN([LIMAL_CHECK_PERL_MODULE], -[AS_VAR_PUSHDEF([limal_perl_module], [limal_perl_module_$1])dnl -AC_CACHE_CHECK([for perl module $1], limal_perl_module, - [LIMAL_PERL_IFELSE([use $1], - [AS_VAR_SET(limal_perl_module, yes)], - [AS_VAR_SET(limal_perl_module, no)]) - ]) -AS_IF([test AS_VAR_GET(limal_perl_module) = yes], [$2], [$3])[]dnl -AS_VAR_POPDEF([limal_perl_module])dnl -])# LIMAL_CHECK_PERL_MODULE - - -dnl -dnl check LiMaL core lib -dnl -dnl LIMAL_CHECK_LIMAL [VERSION] -dnl -AC_DEFUN([LIMAL_CHECK_LIMAL], -[m4_ifvaln([$1], [PKG_CHECK_MODULES(LIMAL, [limal >= $1])], - [PKG_CHECK_MODULES(LIMAL, [limal])]) -AC_SUBST(LIMAL_CFLAGS) -AC_SUBST(LIMAL_LIBS) - -# -# Check LiMaL config header file -# -AC_CHECK_HEADER([limal/config.h],,[ - AC_MSG_ERROR([Unable to find limal/config.h]) -]) - -]) # LIMAL_CHECK_LIMAL - # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/configure new/limal-apparmor-control-1.6.3/configure --- old/limal-apparmor-control-1.6.2/configure 2011-04-05 14:56:22.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/configure 2011-09-29 14:48:25.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.68 for limal-apparmor-control 1.6.2. +# Generated by GNU Autoconf 2.68 for limal-apparmor-control 1.6.3. # # Report bugs to <http://www.suse.de/feedback>. # @@ -709,8 +709,8 @@ # Identity of this package. PACKAGE_NAME='limal-apparmor-control' PACKAGE_TARNAME='limal-apparmor-control' -PACKAGE_VERSION='1.6.2' -PACKAGE_STRING='limal-apparmor-control 1.6.2' +PACKAGE_VERSION='1.6.3' +PACKAGE_STRING='limal-apparmor-control 1.6.3' PACKAGE_BUGREPORT='http://www.suse.de/feedback' PACKAGE_URL='' @@ -1506,7 +1506,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures limal-apparmor-control 1.6.2 to adapt to many kinds of systems. +\`configure' configures limal-apparmor-control 1.6.3 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1578,7 +1578,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of limal-apparmor-control 1.6.2:";; + short | recursive ) echo "Configuration of limal-apparmor-control 1.6.3:";; esac cat <<\_ACEOF @@ -1704,7 +1704,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -limal-apparmor-control configure 1.6.2 +limal-apparmor-control configure 1.6.3 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. @@ -2403,7 +2403,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by limal-apparmor-control $as_me 1.6.2, which was +It was created by limal-apparmor-control $as_me 1.6.3, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ @@ -3333,7 +3333,7 @@ # Define the identity of the package. PACKAGE='limal-apparmor-control' - VERSION='1.6.2' + VERSION='1.6.3' cat >>confdefs.h <<_ACEOF @@ -3454,7 +3454,7 @@ -VERSION="1.6.2" +VERSION="1.6.3" RPMNAME="limal-apparmor-control" RPMARCH="" RPMLIB="apparmor-control" @@ -18857,7 +18857,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by limal-apparmor-control $as_me 1.6.2, which was +This file was extended by limal-apparmor-control $as_me 1.6.3, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -18923,7 +18923,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -limal-apparmor-control config.status 1.6.2 +limal-apparmor-control config.status 1.6.3 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/configure.in new/limal-apparmor-control-1.6.3/configure.in --- old/limal-apparmor-control-1.6.2/configure.in 2011-04-05 14:56:15.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/configure.in 2011-09-29 14:48:17.000000000 +0200 @@ -3,7 +3,7 @@ dnl -- This file is generated by limalautoconf - DO NOT EDIT! -- dnl (edit configure.in.in instead) -AC_INIT(limal-apparmor-control, 1.6.2, http://www.suse.de/feedback, limal-apparmor-control) +AC_INIT(limal-apparmor-control, 1.6.3, http://www.suse.de/feedback, limal-apparmor-control) dnl Check for presence of file 'RPMNAME' AC_CONFIG_SRCDIR([RPMNAME]) @@ -17,7 +17,7 @@ AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs dnl Important LiMaL variables -VERSION="1.6.2" +VERSION="1.6.3" RPMNAME="limal-apparmor-control" RPMARCH="" RPMLIB="apparmor-control" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/limal-apparmor-control.spec.in new/limal-apparmor-control-1.6.3/limal-apparmor-control.spec.in --- old/limal-apparmor-control-1.6.2/limal-apparmor-control.spec.in 2011-04-05 14:55:17.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/limal-apparmor-control.spec.in 2011-09-29 14:48:14.000000000 +0200 @@ -2,7 +2,7 @@ @HEADER@ BuildRequires: curl gcc-c++ limal-devel limal-devtools limal-perl perl-gettext sgml-skel translation-update-upstream -Url: http://forge.novell.com/modules/xfmod/project/?apparmor +Url: http://svn.opensuse.org/viewvc/limal/ Summary: Limal pluglib to Control the AppArmor service %description Files old/limal-apparmor-control-1.6.2/po/ar.gmo and new/limal-apparmor-control-1.6.3/po/ar.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/ar.po new/limal-apparmor-control-1.6.3/po/ar.po --- old/limal-apparmor-control-1.6.2/po/ar.po 2011-04-05 14:56:39.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/ar.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,12 +1,15 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +# This file is distributed under the same license as @PACKAGE@ package. FIRST # msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 19:06\n" +"PO-Revision-Date: 2001-07-13 15:36+0200\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" Files old/limal-apparmor-control-1.6.2/po/cs.gmo and new/limal-apparmor-control-1.6.3/po/cs.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/cs.po new/limal-apparmor-control-1.6.3/po/cs.po --- old/limal-apparmor-control-1.6.2/po/cs.po 2011-04-05 14:56:39.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/cs.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,18 +1,24 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# translation of limal-apparmor-control.po to Czech +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg +# +# This file is distributed under the same license as @PACKAGE@ package. FIRST +# Jakub Friedl <[email protected]>, 2006. # msgid "" msgstr "" "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-09 10:52\n" +"PO-Revision-Date: 2006-09-27 10:49+0200\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.10.2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." Files old/limal-apparmor-control-1.6.2/po/de.gmo and new/limal-apparmor-control-1.6.3/po/de.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/de.po new/limal-apparmor-control-1.6.3/po/de.po --- old/limal-apparmor-control-1.6.2/po/de.po 2011-04-05 14:56:39.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/de.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,18 +1,22 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +# This file is distributed under the same license as @PACKAGE@ package. FIRST # msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: @PACKAGE@\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-08 15:19\n" +"PO-Revision-Date: 2005-03-09 13:54+0100\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." Files old/limal-apparmor-control-1.6.2/po/el.gmo and new/limal-apparmor-control-1.6.3/po/el.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/el.po new/limal-apparmor-control-1.6.3/po/el.po --- old/limal-apparmor-control-1.6.2/po/el.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/el.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,20 +6,24 @@ # # Vasileios Giannakopoulos <[email protected]>, 2007. # Vasileios Giannakopoulos <[email protected]>, 2008. +# Efstathios Iosifidis <[email protected]>, 2011. +# msgid "" msgstr "" "Project-Id-Version: limal-apparmor-control.el\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2008-06-06 01:04+0100\n" -"Last-Translator: Vasileios Giannakopoulos <[email protected]>\n" -"Language-Team: Ελληνικά <[email protected]>\n" +"PO-Revision-Date: 2011-07-21 23:47+0300\n" +"Last-Translator: Efstathios Iosifidis <[email protected]>\n" +"Language-Team: Ελληνικά, Σύγχρονα <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: 8bits\n" "X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "Το καθορισμένο σενάριο αρχικοποίησης δεν είναι εκτελέσιμο: %1." +msgstr "" +"Το καθορισμένο σενάριο ενεργειών αρχικοποίησης δεν είναι εκτελέσιμο: %1." Files old/limal-apparmor-control-1.6.2/po/es.gmo and new/limal-apparmor-control-1.6.3/po/es.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/es.po new/limal-apparmor-control-1.6.3/po/es.po --- old/limal-apparmor-control-1.6.2/po/es.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/es.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,19 +1,24 @@ +# translation of limal-apparmor-control.es.po to # Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg # This file is distributed under the same license as the package. # +# Cesar Sanchez Alonso <csalonso5 'at' gmail.com>, 2007. +# César Sánchez Alonso <[email protected]>, 2007. +# Miguel Angel Alvarez <[email protected]>, 2007. msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: limal-apparmor-control.es\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 13:34\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" -"Language: \n" +"PO-Revision-Date: 2007-11-24 20:26+0100\n" +"Last-Translator: Miguel Angel Alvarez <[email protected]>\n" +"Language-Team: Spanish <[email protected]>\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "El guión de inicio especificado no es ejecutable: %1." +msgstr "El guión (script) de inicio especificado no es ejecutable: %1." Files old/limal-apparmor-control-1.6.2/po/fr.gmo and new/limal-apparmor-control-1.6.3/po/fr.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/fr.po new/limal-apparmor-control-1.6.3/po/fr.po --- old/limal-apparmor-control-1.6.2/po/fr.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/fr.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-21 16:42\n" +"PO-Revision-Date: 2006-11-02 14:16\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" Files old/limal-apparmor-control-1.6.2/po/it.gmo and new/limal-apparmor-control-1.6.3/po/it.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/it.po new/limal-apparmor-control-1.6.3/po/it.po --- old/limal-apparmor-control-1.6.2/po/it.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/it.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,13 +6,15 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 18:25\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" +"PO-Revision-Date: 2011-07-02 22:51+0100\n" +"Last-Translator: Andrea Turrini <[email protected]>\n" +"Language-Team: Italiano <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Italian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." Files old/limal-apparmor-control-1.6.2/po/ja.gmo and new/limal-apparmor-control-1.6.3/po/ja.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/ja.po new/limal-apparmor-control-1.6.3/po/ja.po --- old/limal-apparmor-control-1.6.2/po/ja.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/ja.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,19 +1,22 @@ +# translation of limal-apparmor-control.po to Japanese # Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg # This file is distributed under the same license as the package. # +# Yasuhiko Kamata <[email protected]>, 2011. msgid "" msgstr "" "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-21 10:05\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" +"PO-Revision-Date: 2011-09-04 09:40+0900\n" +"Last-Translator: Yasuhiko Kamata <[email protected]>\n" +"Language-Team: Japanese <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "指定された初期化スクリプトは実行できません: %1." +msgstr "指定された初期化スクリプトは、実行可能なものではありません: %1." Files old/limal-apparmor-control-1.6.2/po/km.gmo and new/limal-apparmor-control-1.6.3/po/km.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/km.po new/limal-apparmor-control-1.6.3/po/km.po --- old/limal-apparmor-control-1.6.2/po/km.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/km.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,9 +1,7 @@ # translation of limal-apparmor-control.km.po to khmer # @TITLE@ # Copyright (C) 2006, SUSE Linux GmbH, Nuremberg -# # This file is distributed under the same license as @PACKAGE@ package. FIRST -# # sokun <[email protected]>, 2006. # Auk Piseth <[email protected]>, 2006, 2007. msgid "" @@ -20,7 +18,8 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.11.4\n" +"X-Language: km_KH\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "មិនអាចប្រតិបត្តិស្គ្រីបចាប់ផ្ដើមដែលបានបញ្ជាក់បានទេ ៖ %1 ។" +msgstr "មិនអាចប្រតិបត្តិស្គ្រីបចាប់ផ្ដើមដែលបានបញ្ជាក់បានទេ ៖ %1 ។" Files old/limal-apparmor-control-1.6.2/po/ko.gmo and new/limal-apparmor-control-1.6.3/po/ko.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/ko.po new/limal-apparmor-control-1.6.3/po/ko.po --- old/limal-apparmor-control-1.6.2/po/ko.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/ko.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,19 +1,26 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +# This file is distributed under the same license as @PACKAGE@ package. FIRST # msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: limal-apparmor-control.ko\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-08 13:45\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" -"Language: \n" +"PO-Revision-Date: 2009-11-04 15:13+0900\n" +"Last-Translator: Yunseok Choi <[email protected]>\n" +"Language-Team: Korean <[email protected]>\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Language: Korean\n" +"X-Poedit-Country: KOREA, REPUBLIC OF\n" +"X-Poedit-SourceCharset: utf-8\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "지정된 초기화 스크립트를 실행할 수 없음: %1." +msgstr "지정된 초기화 스크립트는 실행 하지 못함: %1." Files old/limal-apparmor-control-1.6.2/po/lt.gmo and new/limal-apparmor-control-1.6.3/po/lt.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/lt.po new/limal-apparmor-control-1.6.3/po/lt.po --- old/limal-apparmor-control-1.6.2/po/lt.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/lt.po 2011-09-29 14:48:38.000000000 +0200 @@ -13,8 +13,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 ? 0 : n%10==1 && n%100!=11 ? 1 : n" +"%10>=2 && (n%100<10 || n%100>=20) ? 2 : 3);\n" "X-Generator: KBabel 1.11.4\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 Files old/limal-apparmor-control-1.6.2/po/nl.gmo and new/limal-apparmor-control-1.6.3/po/nl.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/nl.po new/limal-apparmor-control-1.6.3/po/nl.po --- old/limal-apparmor-control-1.6.2/po/nl.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/nl.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,18 +1,24 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# translation of limal-apparmor-control.nl.po to Dutch +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg # +# This file is distributed under the same license as @PACKAGE@ package. FIRST +# +# Rinse de Vries <[email protected]>, 2006. msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: limal-apparmor-control.nl\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 09:04\n" +"PO-Revision-Date: 2006-11-24 22:17+0100\n" "Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" -"Language: \n" +"Language-Team: Dutch <[email protected]>\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." Files old/limal-apparmor-control-1.6.2/po/pl.gmo and new/limal-apparmor-control-1.6.3/po/pl.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/pl.po new/limal-apparmor-control-1.6.3/po/pl.po --- old/limal-apparmor-control-1.6.2/po/pl.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/pl.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-20 22:36\n" +"PO-Revision-Date: 2010-03-09 15:19\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" Files old/limal-apparmor-control-1.6.2/po/pt_BR.gmo and new/limal-apparmor-control-1.6.3/po/pt_BR.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/pt_BR.po new/limal-apparmor-control-1.6.3/po/pt_BR.po --- old/limal-apparmor-control-1.6.2/po/pt_BR.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/pt_BR.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,14 +6,18 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 19:26\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" -"Language: \n" +"PO-Revision-Date: 2011-06-22 21:50-0300\n" +"Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" +"Language-Team: Brazilian Portuguese <[email protected]>\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" +"X-Poedit-Language: Portuguese\n" +"X-Poedit-Country: BRAZIL\n" +"X-Poedit-SourceCharset: utf-8\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "O script de inicialização especificado não pode ser executado: %1." +msgstr "O script de inicialização especificado não é executável: %1." Files old/limal-apparmor-control-1.6.2/po/ru.gmo and new/limal-apparmor-control-1.6.3/po/ru.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/ru.po new/limal-apparmor-control-1.6.3/po/ru.po --- old/limal-apparmor-control-1.6.2/po/ru.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/ru.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,19 +1,24 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# Translation of limal-apparmor-control.po to russian +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg # +# Aleksey Osipov <[email protected]>, 2006. +# Alexander Melentiev <[email protected]>, 2009. msgid "" msgstr "" -"Project-Id-Version: limal-apparmor-control\n" +"Project-Id-Version: limal-apparmor-control.ru\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-22 18:03\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" -"Language: \n" +"PO-Revision-Date: 2010-04-10 20:32+0300\n" +"Last-Translator: Alexander Melentiev <[email protected]>\n" +"Language-Team: Russian <[email protected]>\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 1.0\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "Указанный сценарий инициализации невыполним: %1." +msgstr "Указанный скрипт инициализации не является выполнимым: %1." Files old/limal-apparmor-control-1.6.2/po/sv.gmo and new/limal-apparmor-control-1.6.3/po/sv.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/sv.po new/limal-apparmor-control-1.6.3/po/sv.po --- old/limal-apparmor-control-1.6.2/po/sv.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/sv.po 2011-09-29 14:48:38.000000000 +0200 @@ -1,18 +1,25 @@ -# Copyright (C) 2006 SuSE Linux Products GmbH, Nuernberg -# This file is distributed under the same license as the package. +# translation of limal-apparmor-control.po to svenska +# @TITLE@ +# Copyright (C) 2006, SUSE Linux GmbH, Nuremberg # +# This file is distributed under the same license as @PACKAGE@ package. FIRST +# +# Mattias Newzella <[email protected]>, 2006. +# Jonas Björk <[email protected]>, 2008. msgid "" msgstr "" "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-21 14:32\n" -"Last-Translator: Novell Language <[email protected]>\n" -"Language-Team: Novell Language <[email protected]>\n" +"PO-Revision-Date: 2008-11-06 01:05+0100\n" +"Last-Translator: Jonas Björk <[email protected]>\n" +"Language-Team: svenska <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." Files old/limal-apparmor-control-1.6.2/po/zh_CN.gmo and new/limal-apparmor-control-1.6.3/po/zh_CN.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/zh_CN.po new/limal-apparmor-control-1.6.3/po/zh_CN.po --- old/limal-apparmor-control-1.6.2/po/zh_CN.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/zh_CN.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,8 +6,8 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-23 07:18\n" -"Last-Translator: Novell Language <[email protected]>\n" +"PO-Revision-Date: 2007-08-01 00:19+0800\n" +"Last-Translator: Thruth Wang <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" "MIME-Version: 1.0\n" @@ -16,4 +16,4 @@ #: src/ApparmorControl.cpp:149 src/ApparmorControl.cpp:172 msgid "The specified initialization script is not executable: %1." -msgstr "指定的初始化底稿不可执行: %1." +msgstr "指定的初始化脚本不可执行: %1." Files old/limal-apparmor-control-1.6.2/po/zh_TW.gmo and new/limal-apparmor-control-1.6.3/po/zh_TW.gmo differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/limal-apparmor-control-1.6.2/po/zh_TW.po new/limal-apparmor-control-1.6.3/po/zh_TW.po --- old/limal-apparmor-control-1.6.2/po/zh_TW.po 2011-04-05 14:56:40.000000000 +0200 +++ new/limal-apparmor-control-1.6.3/po/zh_TW.po 2011-09-29 14:48:38.000000000 +0200 @@ -6,7 +6,7 @@ "Project-Id-Version: limal-apparmor-control\n" "Report-Msgid-Bugs-To: [email protected]\n" "POT-Creation-Date: 2011-04-05 14:56+0200\n" -"PO-Revision-Date: 2009-01-21 13:40\n" +"PO-Revision-Date: 2006-11-02 14:23\n" "Last-Translator: Novell Language <[email protected]>\n" "Language-Team: Novell Language <[email protected]>\n" "Language: \n" continue with "q"... Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
