From 2963287e560764c3b7bfdc30a4066e6867fe019f Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Mon, 26 Nov 2018 17:59:36 +0100 Subject: [PATCH] Initial import https://bugzilla.redhat.com/show_bug.cgi?id=1652862 --- .gitignore | 1 + sources | 1 + xdg-dbus-proxy.spec | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .gitignore create mode 100644 sources create mode 100644 xdg-dbus-proxy.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e899670 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/xdg-dbus-proxy-0.1.0.tar.xz diff --git a/sources b/sources new file mode 100644 index 0000000..1c7a7e7 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (xdg-dbus-proxy-0.1.0.tar.xz) = 516fd6d4db803efef34f153d0c8305c029287315da910c664f5d8543b744c47436a44b394e044fe1f3b46e8f455be559b8c6f8752eda43ee4049796a94845d21 diff --git a/xdg-dbus-proxy.spec b/xdg-dbus-proxy.spec new file mode 100644 index 0000000..0c94100 --- /dev/null +++ b/xdg-dbus-proxy.spec @@ -0,0 +1,37 @@ +Name: xdg-dbus-proxy +Version: 0.1.0 +Release: 1%{?dist} +Summary: Filtering proxy for D-Bus connections + +License: LGPLv2+ +URL: https://github.com/flatpak/xdg-dbus-proxy/ +Source0: https://github.com/flatpak/xdg-dbus-proxy/releases/download/%{version}/%{name}-%{version}.tar.xz + +BuildRequires: gcc +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(gio-2.0) +BuildRequires: pkgconfig(gio-unix-2.0) + +Requires: dbus + +%description +xdg-dbus-proxy is a filtering proxy for D-Bus connections. It was originally +part of the flatpak project, but it has been broken out as a standalone module +to facilitate using it in other contexts. + +%prep +%autosetup -p1 + +%build +%configure +%make_build + +%install +%make_install + +%files +%{_bindir}/xdg-dbus-proxy + +%changelog +* Fri Nov 23 2018 Kalev Lember - 0.1.0-1 +- Initial Fedora packaging