Hello community,

here is the log from the commit of package ufw for openSUSE:Factory checked in 
at 2012-11-14 17:03:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ufw (Old)
 and      /work/SRC/openSUSE:Factory/.ufw.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ufw", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2012-10-22 00:44:18.403455820 +0200
+++ /work/SRC/openSUSE:Factory/.ufw.new/ufw.changes     2012-11-14 
17:03:14.000000000 +0100
@@ -0,0 +1,75 @@
+-------------------------------------------------------------------
+Fri Nov  9 12:28:27 UTC 2012 - johann.l...@wanadoo.fr
+
+-fix problem systemd move in /usr
+ fix various warning OBS 
+
+-------------------------------------------------------------------
+Tue Oct 16 14:53:10 UTC 2012 - johann.l...@wanadoo.fr
+
+-fix systemd tag to start automaticaly ufw
+
+-------------------------------------------------------------------
+Mon Sep 17 12:53:01 UTC 2012 - johann.l...@wanadoo.fr
+
+- Update in 0.33 
+  fix dependance python-base
+  fix lang zh_TW
+
+-------------------------------------------------------------------
+Wed Apr  4 14:02:00 UTC 2012 - johann.l...@wanadoo.fr
+
+- Updated in 0.31.1
+  fix various warning OBS
+  add script init file for systemd
+
+-------------------------------------------------------------------
+Tue Oct 11 15:05:51 UTC 2011 - johann.l...@wanadoo.fr
+
+bug on restart in init file- 
+
+-------------------------------------------------------------------
+Mon Oct 10 16:13:12 UTC 2011 - johann.l...@wanadoo.fr
+
+add opensuse init script - 
+
+-------------------------------------------------------------------
+Thu Oct  6 21:17:36 UTC 2011 - johann.l...@wanadoo.fr
+
+add %lang tag in spec file- 
+
+-------------------------------------------------------------------
+Wed Oct  5 14:56:20 UTC 2011 - johann.l...@wanadoo.fr
+
+OpenSuSE Factory- 
+
+-------------------------------------------------------------------
+Wed Oct  5 12:50:01 UTC 2011 - johann.l...@wanadoo.fr
+
+Delete patch commit.py- 
+
+-------------------------------------------------------------------
+Wed Oct  5 10:15:43 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes in spec file for lang-
+
+-------------------------------------------------------------------
+Tue Oct  4 14:21:01 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes in spec file for python version -
+
+-------------------------------------------------------------------
+Tue Oct  4 14:07:48 UTC 2011 - johann.l...@wanadoo.fr
+
+Changes on buildarch -
+
+-------------------------------------------------------------------
+Tue Oct  4 13:57:07 UTC 2011 - johann.l...@wanadoo.fr
+
+Errors in spec file - 
+
+-------------------------------------------------------------------
+Tue Oct  4 13:49:46 UTC 2011 - johann.l...@wanadoo.fr
+
+first on OpenSUSE 11.4 - 
+

New:
----
  ufw-0.33.tar.bz2
  ufw-init
  ufw.changes
  ufw.service
  ufw.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ufw.spec ++++++
#
# spec file for package ufw
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           ufw
Version:        0.33 
Release:        0
Summary:        Uncomplicated Firewall
License:        GPL-3.0
Group:          Productivity/Networking/Security
Url:            http://launchpad.net/%{name}
Source0:        %{name}-%{version}.tar.bz2
Source1:        ufw-init
Source2:        ufw.service
BuildArch:      noarch

BuildRequires:  iptables
BuildRequires:  python-base >= 2.7
BuildRequires:  python-devel

%if 0%{?suse_version} > 1140
BuildRequires:  systemd
%systemd_requires
%endif

#Requires:       
%description
The Uncomplicated Firewall(ufw) is a front-end for netfilter, which
aims to make it easier for people unfamiliar with firewall concepts.
Ufw provides a framework for managing netfilter as well as 
manipulating the firewall. 

%prep
%setup -q
#Submited patch through ufw's bug report
#Fix directory locations instead of #CONFIG_PREFIX#
#http://bugs.launchpad.net/ufw/+bug/819600

%build
#python setup.py build

%install
rm -rf %{buildroot}
python setup.py install --prefix=/usr \
--root %{buildroot}
mkdir -p $RPM_BUILD_ROOT/etc/init.d/
install -m 755 $RPM_SOURCE_DIR/ufw-init $RPM_BUILD_ROOT/etc/init.d/ufw
ln -s /etc/init.d/ufw $RPM_BUILD_ROOT/usr/sbin/rcufw
ln -s /usr/share/man/man8/ufw.8.gz $RPM_BUILD_ROOT/usr/share/man/man8/rcufw.8.gz
mkdir -p $RPM_BUILD_ROOT/usr/bin/
ln -s /usr/sbin/ufw $RPM_BUILD_ROOT/usr/bin/ufw
%if 0%{?suse_version} > 1220
mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/
mkdir -p $RPM_BUILD_ROOT/usr/lib/systemd/system
install -m 644 $RPM_SOURCE_DIR/ufw.service 
$RPM_BUILD_ROOT/usr/lib/systemd/system/ufw.service
%else
mkdir -p $RPM_BUILD_ROOT/lib/systemd/
mkdir -p $RPM_BUILD_ROOT/lib/systemd/system
install -m 644 $RPM_SOURCE_DIR/ufw.service 
$RPM_BUILD_ROOT/lib/systemd/system/ufw.service
%endif

%pre
%if 0%{?suse_version} > 1140
%service_add_pre ufw.service
%endif

%post
%if 0%{?suse_version} > 1140
%service_add_post ufw.service
%endif

%preun
%stop_on_removal ufw
%if 0%{?suse_version} > 1140
%service_del_preun ufw.service
%endif

%postun
%restart_on_update
%insserv_cleanup /etc/init.d/ufw
%if 0%{?suse_version} > 1140
%service_del_postun ufw.service
%endif

%files
%defattr(-,root,root)
   /lib/ufw/ufw-init
   /lib/ufw/ufw-init-functions
   /lib/ufw/user.rules
   /lib/ufw/user6.rules
   
/usr/lib/python%python_version/site-packages/ufw-%{version}-py%python_version.egg-info
   /usr/sbin/ufw
   /usr/sbin/rcufw
   /usr/bin/ufw
   /usr/share/man/man8/ufw-framework.8.gz
   /usr/share/man/man8/ufw.8.gz
   /usr/share/man/man8/rcufw.8.gz
   %config/etc/init.d/ufw
   %config/etc/ufw
   %config/etc/ufw/applications.d
   %config/etc/default/ufw
%if 0%{?suse_version} > 1220
   /usr/lib/systemd/system/ufw.service
%else
   /lib/systemd/system/ufw.service
%endif
   /lib/ufw
   /usr/lib/python%python_version/site-packages/ufw
   /usr/share/ufw
   /usr/share/ufw/iptables
%lang(zh_TW) /usr/share/ufw/messages/zh_TW.mo
%lang(ar) /usr/share/ufw/messages/ar.mo
%lang(bg) /usr/share/ufw/messages/bg.mo
%lang(ca) /usr/share/ufw/messages/ca.mo
%lang(cs) /usr/share/ufw/messages/cs.mo
%lang(da) /usr/share/ufw/messages/da.mo
%lang(de) /usr/share/ufw/messages/de.mo
%lang(el) /usr/share/ufw/messages/el.mo
%lang(en_AU) /usr/share/ufw/messages/en_AU.mo
%lang(en_GB) /usr/share/ufw/messages/en_GB.mo
%lang(es) /usr/share/ufw/messages/es.mo
%lang(fi) /usr/share/ufw/messages/fi.mo
%lang(fr) /usr/share/ufw/messages/fr.mo
%lang(he) /usr/share/ufw/messages/he.mo
%lang(hu) /usr/share/ufw/messages/hu.mo
%lang(id) /usr/share/ufw/messages/id.mo
%lang(it) /usr/share/ufw/messages/it.mo
%lang(nb) /usr/share/ufw/messages/nb.mo
%lang(nl) /usr/share/ufw/messages/nl.mo
%lang(pl) /usr/share/ufw/messages/pl.mo
%lang(pt) /usr/share/ufw/messages/pt.mo
%lang(pt_BR) /usr/share/ufw/messages/pt_BR.mo
%lang(ru) /usr/share/ufw/messages/ru.mo
%lang(sk) /usr/share/ufw/messages/sk.mo
%lang(dl) /usr/share/ufw/messages/sl.mo
%lang(sr) /usr/share/ufw/messages/sr.mo
%lang(sv) /usr/share/ufw/messages/sv.mo
%lang(tl) /usr/share/ufw/messages/tl.mo
%lang(zh_CN) /usr/share/ufw/messages/zh_CN.mo
%lang(ast) /usr/share/ufw/messages/ast.mo
%lang(bs) /usr/share/ufw/messages/bs.mo
%lang(ja) /usr/share/ufw/messages/ja.mo
%lang(ur) /usr/share/ufw/messages/ur.mo

%changelog
++++++ ufw-init ++++++
#! /bin/bash
# Copyright (c) 2000-2002 SuSE GmbH Nuernberg, Germany.
# Copyright (C) 2003,2004 SUSE Linux AG
# Copyright (C) 2005-2008 SUSE LINUX Products GmbH
#
# Author: LUCE Johann
# Maintainer: LUCE Johann
#
# /etc/init.d/ufw
#
### BEGIN INIT INFO
# Provides: ufw
# Required-Start: $local_fs $remote_fs
# Required-Stop:  $local_fs $remote_fs
# Default-Start:  3 5
# Default-Stop:   0 1 2 6
# Short-Description: ufw_enable
# Description: Uncomplicated Firewall
### END INIT INFO

UFWALL="/usr/sbin/ufw"

test -x $UFWALL || exit 5

. /etc/rc.status
. /etc/ufw/ufw.conf

rc_reset

case "$1" in
    start)
        echo -n "checking if ufw enable"
        if [ $ENABLED == 'yes' ] ;then
                $UFWALL enable
        else
                echo -n "ufw is disable"
        fi
        rc_status -v
        ;;
    stop)
        rc_status
        ;;
    restart|force-reload)
        $O stop
        $0 start
        ;;
    try-restart|reload)
        if ($0 status) >/dev/null 2>&1; then
            $0 start
        else
            rc_reset
        fi
        ;;
    *)
        echo "Usage: $0 {start|stop|status|restart|reload|}"
        exit 1
        ;;
esac

# Set exit status
rc_exit
++++++ ufw.service ++++++
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.

[Unit]
Description=/etc/init.d/ufw Compatibility
After=network.target


[Service]
ExecStart=/etc/init.d/ufw start
ExecStop=/etc/init.d/ufw stop
StandardOutput=syslog

[Install]
WantedBy=multi-user.target
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to