Merge pull request #4672 from Rmys/master

geda:First release
This commit is contained in:
Rmys
2018-04-03 14:53:33 +03:00
committed by GitHub
7 changed files with 207 additions and 3 deletions
+86 -1
View File
@@ -46780,13 +46780,14 @@ functionality to build high-performing, platform-independent programs.</Descript
<Name>papirus-icon-theme</Name>
<Files>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-03-31</Date>
<Version>20180401</Version>
<Comment>First release</Comment>
<Comment>First release.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
@@ -122728,6 +122729,90 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>geda</Name>
<Homepage>http://wiki.geda-project.org/geda:download#download</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">The gEDA project has produced and continues working on a full GPL&apos;d suite and toolkit of Electronic Design Automation tools.</Summary>
<Summary xml:lang="tr">The gEDA project has produced and continues working on a full GPL&apos;d suite and toolkit of Electronic Design Automation tools.</Summary>
<Description xml:lang="en">The gEDA project has produced and continues working on a full GPL&apos;d suite and toolkit of Electronic Design Automation tools.</Description>
<Description xml:lang="tr">The gEDA project has produced and continues working on a full GPL&apos;d suite and toolkit of Electronic Design Automation tools.</Description>
<Archive type="targz" sha1sum="c61edc04997fc12398534a346dac32d8fcdabcc1">http://ftp.geda-project.org/geda-gaf/stable/v1.8/1.8.2/geda-gaf-1.8.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cython</Dependency>
<Dependency>flex</Dependency>
<Dependency>gawk</Dependency>
<Dependency>groff</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>guile-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glibc-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>shared-mime-info</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>python-pygobject-devel</Dependency>
</BuildDependencies>
<SourceURI>science/electronics/geda/pspec.xml</SourceURI>
</Source>
<Package>
<Name>geda</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>guile</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/gEDA</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/mime</Path>
</Files>
</Package>
<Package>
<Name>geda-devel</Name>
<Summary xml:lang="en">Development files for geda</Summary>
<RuntimeDependencies>
<Dependency version="1.8.2">geda</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>guile-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-04-03</Date>
<Version>1.8.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>netcdf</Name>
+1 -1
View File
@@ -1 +1 @@
68f1eefa5e42166af0242ef81735b1f0d223e13a
63b4d22a94ec560ba9f26e878d78b8b582697b7b
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
53ca327ee4e161760e6ae18a97e3fc6892e10a88
581fd305058f3714a920bedb2027a7b21e27375b
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#shelltools.system("./autogen.sh")
autotools.autoreconf("-vfi")
autotools.configure("--prefix=/usr \
--docdir=/usr/share/doc \
--localedir=/usr/share/locale \
--disable-update-xdg-database")
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README")
+83
View File
@@ -0,0 +1,83 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>geda</Name>
<Homepage>http://wiki.geda-project.org/geda:download#download</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools.</Summary>
<Description>The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools.</Description>
<Archive sha1sum="c61edc04997fc12398534a346dac32d8fcdabcc1" type="targz">http://ftp.geda-project.org/geda-gaf/stable/v1.8/1.8.2/geda-gaf-1.8.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cython</Dependency>
<Dependency>flex</Dependency>
<Dependency>gawk</Dependency>
<Dependency>groff</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>guile-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>glibc-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>shared-mime-info</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>python-pygobject-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>geda</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>guile</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/gEDA</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/mime</Path>
</Files>
</Package>
<Package>
<Name>geda-devel</Name>
<Summary>Development files for geda</Summary>
<RuntimeDependencies>
<Dependency version="current">geda</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>guile-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-04-03</Date>
<Version>1.8.2</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>geda</Name>
<Summary xml:lang="tr">The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools.</Summary>
<Description xml:lang="tr">The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools.</Description>
</Source>
</PISI>