Hello community,

here is the log from the commit of package kup for openSUSE:Factory checked in 
at 2017-04-17 10:26:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kup (Old)
 and      /work/SRC/openSUSE:Factory/.kup.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kup"

Mon Apr 17 10:26:06 2017 rev:8 rq:487105 version:0.3.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/kup/kup.changes  2014-02-16 19:53:54.000000000 
+0100
+++ /work/SRC/openSUSE:Factory/.kup.new/kup.changes     2017-04-17 
10:26:11.463235637 +0200
@@ -1,0 +2,27 @@
+Mon Apr 10 12:46:50 UTC 2017 - [email protected]
+
+- the version we downloaded previously is tagged 0.3.6 at last
+
+-------------------------------------------------------------------
+Fri Apr  7 09:29:14 UTC 2017 - [email protected]
+
+- Really clean the spec and remove ancient %clean section.
+
+-------------------------------------------------------------------
+Tue Mar 28 19:02:40 UTC 2017 - [email protected]
+
+- Clean the spec up
+- Require really what the scripts use
+- Update to version 0.3.5+git.20170328:
+  * Add --prefix and provide some examples.
+  * It's not --clearsign, but --detach-sign
+  * Use --armor as well in the examples
+  * Add support for subcmd config option
+  * Typo fix and record changes in ChangeLog
+  * Deprecate the use of the mailing list
+  * Support separate compress/decompress commands
+  * Fix disparity between config/docs and kup-server
+  * Add support for the "info" subcommand
+  * Make sure we use sanitized KUP_SUBCMD
+
+-------------------------------------------------------------------

Old:
----
  kup-0.3.2.tar.gz

New:
----
  _service
  _servicedata
  kup-0.3.6.tar.xz

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

Other differences:
------------------
++++++ kup.spec ++++++
--- /var/tmp/diff_new_pack.hTVMuw/_old  2017-04-17 10:26:12.267121792 +0200
+++ /var/tmp/diff_new_pack.hTVMuw/_new  2017-04-17 10:26:12.271121226 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kup
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2011 John 'Warthog9' Hawley <[email protected]>
 #
 # All modifications and additions to the file contributed by third parties
@@ -21,10 +21,11 @@
 Summary:        Kernel.org Uploader
 License:        GPL-2.0+
 Group:          Development/Tools/Other
-Version:        0.3.2
+Version:        0.3.6
 Release:        0
 Url:            https://www.kernel.org/pub/software/network/kup/
-Source0:        %{name}-%{version}.tar.gz
+Source0:        %{name}-%{version}.tar.xz
+BuildRequires:  xz
 
 # Upstream First - Policy:
 # Never add any patches to this package without the upstream commit id
@@ -32,56 +33,64 @@
 # an exception will be silently removed with the next version update.
 
 %description
-Kernel.org Uploader - meta package
+Kernel.org Uploader - meta package.
 
 %package client
-Summary:        Kernel.org Uploader - Client pieces
+Summary:        Kernel.org Uploader - client
 Group:          Development/Tools/Other
 Requires:       perl
-Requires:       perl-Config-Simple
+Requires:       perl(Config::Simple)
+Requires:       perl(Encode)
+Requires:       perl(File::Spec)
 
 %description client
-Kernel.org Uploader - Client pieces
+Kup is a file upload utility for kernel.org. It is designed to only accept
+cryptographically verified uploads from pre-authorized, trusted members.
 
 %package server
-Summary:        Kernel.org Uploader - Server pieces
+Summary:        Kernel.org Uploader - server
 Group:          Development/Tools/Other
 Requires:       perl
-Requires:       perl-BSD-Resource
-Requires:       perl-Config-Simple
+Requires:       perl(BSD::Resource)
+Requires:       perl(Config::Simple)
+Requires:       perl(Digest::SHA)
+Requires:       perl(Encode)
+Requires:       perl(Fcntl)
+Requires:       perl(File::Path)
+Requires:       perl(File::Temp)
 Requires:       perl(Git)
+Requires:       perl(IO::Handle)
+Requires:       perl(IPC::Open2)
+Requires:       perl(POSIX)
+Requires:       perl(Sys::Syslog)
 
 %description server
-Kernel.org Uploader - Server pieces
+Kup is a file upload utility for kernel.org. It is designed to only accept
+cryptographically verified uploads from pre-authorized, trusted members.
 
 %prep
 %setup -q
 
 %build
-echo "Hello World!"
 
 %install
-%{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}
-%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/%{name}-%{version}-%{release}
-%{__mkdir_p} $RPM_BUILD_ROOT%{_mandir}/man1
-%{__mkdir_p} $RPM_BUILD_ROOT%{_bindir}
-%{__install} -m 755 %{name} $RPM_BUILD_ROOT%{_bindir}
-%{__install} -m 755 kup gpg-sign-all kup-server $RPM_BUILD_ROOT%{_bindir}
-%{__install} -m 644 kup.1 $RPM_BUILD_ROOT%{_mandir}/man1/
+install -d %{buildroot}%{_bindir}
+install -d %{buildroot}%{_mandir}/man1
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
+install -m 755 kup gpg-sign-all kup-server %{buildroot}%{_bindir}
+install -m 644 kup.1 kup-server.1 %{buildroot}%{_mandir}/man1/
 
 %files client
 %defattr(-,root,root,-)
-%{_bindir}/kup
 %doc README COPYING
+%{_bindir}/kup
 %{_mandir}/man1/kup.1*
 
 %files server
 %defattr(-,root,root,-)
+%doc README COPYING
 %{_bindir}/gpg-sign-all
 %{_bindir}/kup-server
-%doc README COPYING
+%{_mandir}/man1/kup-server.1*
 
 %changelog

++++++ _service ++++++
<services>
  <service mode="disabled" name="tar_scm">
    <param name="url">git://git.kernel.org/pub/scm/utils/kup/kup.git</param>
    <param name="scm">git</param>
    <param name="changesgenerate">enable</param>
    <param name="filename">kup</param>
    <param name="revision">kup-0.3.6</param>
    <param name="versionformat">0.3.6</param>
  </service>
  <service mode="disabled" name="recompress">
    <param name="file">*.tar</param>
    <param name="compression">xz</param>
  </service>
  <service mode="disabled" name="set_version"/>
</services>
++++++ _servicedata ++++++
<servicedata>
<service name="tar_scm">
                <param 
name="url">git://git.kernel.org/pub/scm/utils/kup/kup.git</param>
              <param 
name="changesrevision">0ff2c2a5d25046a8f0bb8da431449206c8d702bc</param></service></servicedata>

Reply via email to