[arch-commits] Commit in umbrello/repos (8 files)

Antonio Rojas arojas at archlinux.org
Mon Sep 14 21:58:21 UTC 2015


    Date: Monday, September 14, 2015 @ 23:58:21
  Author: arojas
Revision: 246223

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  umbrello/repos/testing-i686/
  umbrello/repos/testing-i686/PKGBUILD
    (from rev 246222, umbrello/trunk/PKGBUILD)
  umbrello/repos/testing-i686/appstream.patch
    (from rev 246222, umbrello/trunk/appstream.patch)
  umbrello/repos/testing-i686/umbrello.install
    (from rev 246222, umbrello/trunk/umbrello.install)
  umbrello/repos/testing-x86_64/
  umbrello/repos/testing-x86_64/PKGBUILD
    (from rev 246222, umbrello/trunk/PKGBUILD)
  umbrello/repos/testing-x86_64/appstream.patch
    (from rev 246222, umbrello/trunk/appstream.patch)
  umbrello/repos/testing-x86_64/umbrello.install
    (from rev 246222, umbrello/trunk/umbrello.install)

---------------------------------+
 testing-i686/PKGBUILD           |   47 +++++++++++++++++++++++++++++++++
 testing-i686/appstream.patch    |   53 ++++++++++++++++++++++++++++++++++++++
 testing-i686/umbrello.install   |   13 +++++++++
 testing-x86_64/PKGBUILD         |   47 +++++++++++++++++++++++++++++++++
 testing-x86_64/appstream.patch  |   53 ++++++++++++++++++++++++++++++++++++++
 testing-x86_64/umbrello.install |   13 +++++++++
 6 files changed, 226 insertions(+)

Copied: umbrello/repos/testing-i686/PKGBUILD (from rev 246222, umbrello/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,47 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org> 
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=umbrello
+pkgver=15.08.1
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(i686 x86_64)
+url='http://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(hicolor-icon-theme ktexteditor kinit)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdesdk-umbrello)
+replaces=(kdesdk-umbrello)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz" appstream.patch)
+install=$pkgname.install
+md5sums=('002910788a647072deb7314a22c6ba44'
+         'db568533f3722bb5629c98031debe16f')
+
+prepare() {
+  mkdir -p build
+
+# Add appstream metadata https://bugs.kde.org/show_bug.cgi?id=352607
+  cd $pkgname-$pkgver
+  touch umbrello/org.kde.umbrello.appdata.xml
+  patch -p1 -i ../appstream.patch
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DLIB_INSTALL_DIR=lib \
+    -DBUILD_TESTING=OFF \
+    -DBUILD_KF5=ON \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: umbrello/repos/testing-i686/appstream.patch (from rev 246222, umbrello/trunk/appstream.patch)
===================================================================
--- testing-i686/appstream.patch	                        (rev 0)
+++ testing-i686/appstream.patch	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,53 @@
+From: Matthias Klumpp <matthias at tenstral.net>
+Date: Thu, 06 Aug 2015 13:18:02 +0000
+Subject: Add AppStream metadata
+X-Git-Url: http://quickgit.kde.org/?p=umbrello.git&a=commitdiff&h=70ecfc71c7bf6400560b964d8ed9dfaf2a6abb57
+---
+Add AppStream metadata
+
+BUG:352607
+
+(cherry picked from commit fa2014c9d3edb2cb144bc9f5f0edafa789c2975c)
+
+Conflicts:
+umbrello/CMakeLists.txt
+---
+
+
+--- a/umbrello/org.kde.umbrello.appdata.xml
++++ b/umbrello/org.kde.umbrello.appdata.xml
+@@ -1,1 +1,33 @@
++<?xml version="1.0" ?>
++<component type="desktop">
++  <id>org.kde.umbrello.desktop</id>
++  <metadata_license>CC0-1.0</metadata_license>
++  <project_license>GPL-2.0+</project_license>
++  <name>Umbrello</name>
++  <summary>UML Modeller</summary>
++  <description>
++    <p>
++      Umbrello is a Unified Modelling Language (UML) modelling tool and code generator.
++      It can create diagrams of software and other systems in the industry-standard UML format, and can also generate code from UML diagrams
++      in a variety of programming languages.
++    </p>
++    <p>Features:</p>
++    <ul>
++      <li>Supported formats: XMI</li>
++      <li>Several type of diagrams supported: use case, class, sequence, collaboration, state, activity, component, deployment, entity relationship</li>
++    </ul>
++  </description>
++  <url type="homepage">http://umbrello.kde.org</url>
++  <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&product=umbrello</url>
++  <url type="help">http://docs.kde.org/stable/en/kdesdk/umbrello/index.html</url>
++  <screenshots>
++    <screenshot type="default">
++      <image>http://kde.org/images/screenshots/umbrello.png</image>
++    </screenshot>
++  </screenshots>
++  <project_group>KDE</project_group>
++  <provides>
++    <binary>umbrello</binary>
++  </provides>
++</component>
+ 
+

Copied: umbrello/repos/testing-i686/umbrello.install (from rev 246222, umbrello/trunk/umbrello.install)
===================================================================
--- testing-i686/umbrello.install	                        (rev 0)
+++ testing-i686/umbrello.install	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,13 @@
+post_install() {
+    xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+    update-desktop-database -q
+}
+
+post_upgrade() {
+    post_install
+}
+
+post_remove() {
+    post_install
+}
+

Copied: umbrello/repos/testing-x86_64/PKGBUILD (from rev 246222, umbrello/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,47 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org> 
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=umbrello
+pkgver=15.08.1
+pkgrel=1
+pkgdesc='UML modeller'
+arch=(i686 x86_64)
+url='http://kde.org/applications/development/umbrello'
+license=(GPL)
+depends=(hicolor-icon-theme ktexteditor kinit)
+makedepends=(extra-cmake-modules kdoctools python)
+conflicts=(kdesdk-umbrello)
+replaces=(kdesdk-umbrello)
+groups=(kde-applications kdesdk)
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz" appstream.patch)
+install=$pkgname.install
+md5sums=('002910788a647072deb7314a22c6ba44'
+         'db568533f3722bb5629c98031debe16f')
+
+prepare() {
+  mkdir -p build
+
+# Add appstream metadata https://bugs.kde.org/show_bug.cgi?id=352607
+  cd $pkgname-$pkgver
+  touch umbrello/org.kde.umbrello.appdata.xml
+  patch -p1 -i ../appstream.patch
+}
+
+build() { 
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DLIB_INSTALL_DIR=lib \
+    -DBUILD_TESTING=OFF \
+    -DBUILD_KF5=ON \
+    -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}
+

Copied: umbrello/repos/testing-x86_64/appstream.patch (from rev 246222, umbrello/trunk/appstream.patch)
===================================================================
--- testing-x86_64/appstream.patch	                        (rev 0)
+++ testing-x86_64/appstream.patch	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,53 @@
+From: Matthias Klumpp <matthias at tenstral.net>
+Date: Thu, 06 Aug 2015 13:18:02 +0000
+Subject: Add AppStream metadata
+X-Git-Url: http://quickgit.kde.org/?p=umbrello.git&a=commitdiff&h=70ecfc71c7bf6400560b964d8ed9dfaf2a6abb57
+---
+Add AppStream metadata
+
+BUG:352607
+
+(cherry picked from commit fa2014c9d3edb2cb144bc9f5f0edafa789c2975c)
+
+Conflicts:
+umbrello/CMakeLists.txt
+---
+
+
+--- a/umbrello/org.kde.umbrello.appdata.xml
++++ b/umbrello/org.kde.umbrello.appdata.xml
+@@ -1,1 +1,33 @@
++<?xml version="1.0" ?>
++<component type="desktop">
++  <id>org.kde.umbrello.desktop</id>
++  <metadata_license>CC0-1.0</metadata_license>
++  <project_license>GPL-2.0+</project_license>
++  <name>Umbrello</name>
++  <summary>UML Modeller</summary>
++  <description>
++    <p>
++      Umbrello is a Unified Modelling Language (UML) modelling tool and code generator.
++      It can create diagrams of software and other systems in the industry-standard UML format, and can also generate code from UML diagrams
++      in a variety of programming languages.
++    </p>
++    <p>Features:</p>
++    <ul>
++      <li>Supported formats: XMI</li>
++      <li>Several type of diagrams supported: use case, class, sequence, collaboration, state, activity, component, deployment, entity relationship</li>
++    </ul>
++  </description>
++  <url type="homepage">http://umbrello.kde.org</url>
++  <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&product=umbrello</url>
++  <url type="help">http://docs.kde.org/stable/en/kdesdk/umbrello/index.html</url>
++  <screenshots>
++    <screenshot type="default">
++      <image>http://kde.org/images/screenshots/umbrello.png</image>
++    </screenshot>
++  </screenshots>
++  <project_group>KDE</project_group>
++  <provides>
++    <binary>umbrello</binary>
++  </provides>
++</component>
+ 
+

Copied: umbrello/repos/testing-x86_64/umbrello.install (from rev 246222, umbrello/trunk/umbrello.install)
===================================================================
--- testing-x86_64/umbrello.install	                        (rev 0)
+++ testing-x86_64/umbrello.install	2015-09-14 21:58:21 UTC (rev 246223)
@@ -0,0 +1,13 @@
+post_install() {
+    xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+    update-desktop-database -q
+}
+
+post_upgrade() {
+    post_install
+}
+
+post_remove() {
+    post_install
+}
+



More information about the arch-commits mailing list