Accepting request 556182 from KDE:Applications
KDE Applications 17.12.0 final (release on 2017-12-14) OBS-URL: https://build.opensuse.org/request/show/556182 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kdnssd?expand=0&rev=58
This commit is contained in:
commit
8829663603
@ -1,3 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 09 14:59:05 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.12.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.12.0.php
|
||||||
|
- Changes since 17.11.90:
|
||||||
|
* None
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Dec 02 10:12:36 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.11.90
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.12-rc.php
|
||||||
|
- Changes since 17.11.80:
|
||||||
|
* Add missing REQUIRED keyword
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 20 06:59:09 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
- Update to 17.11.80
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://www.kde.org/announcements/announce-applications-17.12-beta.php
|
||||||
|
- Changes since 17.08.3:
|
||||||
|
* Normalize the KIO name and use the json file
|
||||||
|
* Properly set the translation domain and rename it
|
||||||
|
* Fix error msg: reference the specific library, not KDE
|
||||||
|
* Add #include to fix the build
|
||||||
|
* Build with framework compiler settings
|
||||||
|
* Port to KDE Frameworks 5
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 09 23:11:38 CET 2017 - lbeltrame@kde.org
|
Thu Nov 09 23:11:38 CET 2017 - lbeltrame@kde.org
|
||||||
|
|
||||||
|
60
kdnssd.spec
60
kdnssd.spec
@ -15,24 +15,37 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
%bcond_without lang
|
||||||
|
|
||||||
%define rname zeroconf-ioslave
|
%define rname zeroconf-ioslave
|
||||||
Name: kdnssd
|
|
||||||
Version: 17.08.3
|
|
||||||
Release: 0
|
|
||||||
%define kf5_version 5.26.0
|
%define kf5_version 5.26.0
|
||||||
# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
|
# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
|
||||||
%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')}
|
%{!?_kapp_version: %global _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')}
|
||||||
Summary: Zeroconf Support for KDE
|
Name: kdnssd
|
||||||
|
Version: 17.12.0
|
||||||
|
Release: 0
|
||||||
|
Summary: Zeroconf Support for KIO applications
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Productivity/Networking/System
|
Group: Productivity/Networking/System
|
||||||
|
Url: http://www.kde.org
|
||||||
Source0: %{rname}-%{version}.tar.xz
|
Source0: %{rname}-%{version}.tar.xz
|
||||||
BuildRequires: libkde4-devel
|
BuildRequires: extra-cmake-modules
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRequires: kf5-filesystem
|
||||||
%{kde4_runtime_requires}
|
BuildRequires: cmake(KF5DBusAddons)
|
||||||
|
BuildRequires: cmake(KF5DNSSD)
|
||||||
|
BuildRequires: cmake(KF5I18n)
|
||||||
|
BuildRequires: cmake(KF5KIO)
|
||||||
|
%if %{with lang}
|
||||||
|
Recommends: %{name}-lang
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%lang_package
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains the Zeroconf support for KDE.
|
This package adds Zeroconf support to KIO, allowing the use of this protocol
|
||||||
|
in all applications that are using KIO.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{rname}-%{version}
|
%setup -q -n %{rname}-%{version}
|
||||||
@ -41,26 +54,31 @@ This package contains the Zeroconf support for KDE.
|
|||||||
%ifarch ppc ppc64
|
%ifarch ppc ppc64
|
||||||
export RPM_OPT_FLAGS="%{optflags} -mminimal-toc"
|
export RPM_OPT_FLAGS="%{optflags} -mminimal-toc"
|
||||||
%endif
|
%endif
|
||||||
%cmake_kde4 -d build
|
%cmake_kf5 -d build
|
||||||
make
|
%make_jobs
|
||||||
|
|
||||||
%install
|
%install
|
||||||
cd build
|
%kf5_makeinstall -C build
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
%if %{with lang}
|
||||||
cd ..
|
%find_lang %{name} --with-man --all-name
|
||||||
%kde_post_install
|
%endif
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc COPYING COPYING.DOC
|
%doc COPYING COPYING.DOC
|
||||||
%{_kde4_modulesdir}/kded_dnssdwatcher.so
|
%{_kf5_plugindir}/kf5/kio/zeroconf.so
|
||||||
%{_kde4_modulesdir}/kio_zeroconf.so
|
%{_kf5_plugindir}/kded_dnssdwatcher.so
|
||||||
%{_datadir}/dbus-1/interfaces/org.kde.kdnssd.xml
|
%dir %{_kf5_sharedir}/remoteview/
|
||||||
%{_kde4_appsdir}/remoteview/
|
%{_kf5_sharedir}/remoteview/zeroconf.desktop
|
||||||
%{_kde4_servicesdir}/zeroconf.protocol
|
%dir %{_kf5_servicesdir}/kded/
|
||||||
%{_kde4_servicesdir}/kded/dnssdwatcher.desktop
|
%{_kf5_servicesdir}/kded/dnssdwatcher.desktop
|
||||||
|
%{_kf5_dbusinterfacesdir}/org.kde.kdnssd.xml
|
||||||
|
|
||||||
|
%if %{with lang}
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
%doc COPYING*
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:01f067e072703a613a0ef974569570528a8b14fa48afdfdbcb9d402cf1a9f992
|
|
||||||
size 25964
|
|
3
zeroconf-ioslave-17.12.0.tar.xz
Normal file
3
zeroconf-ioslave-17.12.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ea7d85f678b17eaf7ba45be89f0d07d5c971be68e278b6c5fe22b9f2b8f0bd1e
|
||||||
|
size 38648
|
Loading…
Reference in New Issue
Block a user