[kdevelop-custom-buildsystem] initial import

Radek Novacek rnovacek at fedoraproject.org
Thu Jul 26 10:45:55 UTC 2012


commit 78d401fb5c3d0dfb9dc739422fcb73121136e1a4
Author: Radek Novacek <rnovacek at redhat.com>
Date:   Thu Jul 26 12:45:45 2012 +0200

    initial import

 .gitignore                       |    1 +
 kdevelop-custom-buildsystem.spec |   67 ++++++++++++++++++++++++++++++++++++++
 sources                          |    1 +
 3 files changed, 69 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f4fdc62 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/kdevelop-custom-buildsystem-1.2.1.tar.bz2
diff --git a/kdevelop-custom-buildsystem.spec b/kdevelop-custom-buildsystem.spec
new file mode 100644
index 0000000..c55c05e
--- /dev/null
+++ b/kdevelop-custom-buildsystem.spec
@@ -0,0 +1,67 @@
+%global kdevelop_ver 4.3.1
+
+Name:           kdevelop-custom-buildsystem
+Version:        1.2.1
+Release:        4%{?dist}
+Summary:        Support for custom buildsystem in KDevelop
+
+License:        GPLv3+
+URL:            http://kdevelop.org
+Source0:        ftp://ftp.kde.org/pub/kde/stable/kdevelop/4.3.0/src/%{name}-%{version}.tar.bz2
+
+BuildRequires:  kdevplatform-devel >= 1.3.1
+BuildRequires:  kdelibs-devel
+Requires:       kdevelop >= %{kdevelop_ver}
+
+%description
+This plugin allows to handle arbitrary custom buildsystems with KDevelop.
+
+It supports setting up commands and arguments to build, configure, clean,
+'dist-clean' and install the project, so that KDevelop's actions work as
+expected.
+
+
+%prep
+%setup -q
+
+
+%build
+mkdir -p %{_target_platform}
+pushd %{_target_platform}
+%{cmake_kde4} ..
+popd
+
+make %{?_smp_mflags} -C %{_target_platform}
+
+
+%install
+make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
+
+%check
+# Validation is not neccessary required since the files are kde internal
+desktop-file-validate %{buildroot}/%{_kde4_datadir}/kde4/services/kcm_kdevcustombuildsystem.desktop
+desktop-file-validate %{buildroot}/%{_kde4_datadir}/kde4/services/kdevcustombuildsystem.desktop
+
+%files
+%doc LICENSE README
+%{_kde4_libdir}/kde4/kcm_kdevcustombuildsystem.so
+%{_kde4_libdir}/kde4/kdevcustombuildsystem.so
+%{_kde4_datadir}/kde4/services/kcm_kdevcustombuildsystem.desktop
+%{_kde4_datadir}/kde4/services/kdevcustombuildsystem.desktop
+
+
+%changelog
+* Mon Jul 23 2012 Radek Novacek <rnovacek at redhat.com> 1.2.1-4
+- Use global instead of define
+
+* Fri Apr 13 2012 Radek Novacek <rnovacek at redhat.com> 1.2.1-3
+- Update source url to match stable release
+- Require stable version kdevelop 4.3.0
+
+* Wed Feb 15 2012 Radek Novacek <rnovacek at redhat.com> 1.2.1-2
+- Remove unnecessary buildroot clean
+- Remove dep version on kdelibs
+- Validate desktop files
+
+* Mon Jan 23 2012 Radek Novacek <rnovacek at redhat.com> 1.2.1-1
+- Initial package
diff --git a/sources b/sources
index e69de29..da25e9d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9cce7ff6ae7ef9b9de62609d496e9b2c  kdevelop-custom-buildsystem-1.2.1.tar.bz2


More information about the scm-commits mailing list