etherape, nmap: new packages
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/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.export("AT_M4DIR", "m4")
|
||||
shelltools.export("AUTOPOINT", "true")
|
||||
# to disable scrollkeeper
|
||||
pisitools.dosed("Makefile.am", "src doc glade", "src glade")
|
||||
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "FAQ", "NEWS", "OVERVIEW", "README*", "TODO")
|
||||
@@ -0,0 +1,20 @@
|
||||
Index: etherape-0.9.12/etherape.desktop.in
|
||||
===================================================================
|
||||
--- etherape-0.9.12.orig/etherape.desktop.in
|
||||
+++ etherape-0.9.12/etherape.desktop.in
|
||||
@@ -2,11 +2,13 @@
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Name=EtherApe
|
||||
+Name[tr]=EtherApe
|
||||
GenericName=EtherApe
|
||||
Comment=Graphical Network Monitor
|
||||
Comment[es]=Monitor Gráfico de Red
|
||||
-Exec=etherape
|
||||
+Comment[tr]=Grafiksel Ağ İzleyici
|
||||
+Exec=xdg-su -c "etherape"
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=etherape
|
||||
-Categories=GNOME;System;Network;
|
||||
+Categories=System;Monitor;Network;
|
||||
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>etherape</Name>
|
||||
<Homepage>http://etherape.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>etherape</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Graphical network monitor</Summary>
|
||||
<Description>etherape is a graphical network monitor with fancy display features.</Description>
|
||||
<Archive sha1sum="333652b935f44d83c6f7da668477180b50c3817d" type="targz">mirrors://sourceforge/etherape/etherape-0.9.20.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>popt-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>libglade-devel</Dependency>
|
||||
<Dependency>goocanvas-devel</Dependency>
|
||||
<Dependency>gnome-doc-utils</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">desktop.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>etherape</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>popt</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libpcap</Dependency>
|
||||
<Dependency>libglade</Dependency>
|
||||
<Dependency>goocanvas</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/etherape</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc/etherape</Path>
|
||||
<Path fileType="data">/usr/share/etherape</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1" type="security">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>0.9.20</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>etherape</Name>
|
||||
<Summary xml:lang="tr">Grafiksel ağ izleyici</Summary>
|
||||
<Description xml:lang="tr">etherape ağ durumunu görsel değişikliklerle gösteren bir ağ izleyicisidir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/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 get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("ncat/Makefile.in", "-m 755 -s ncat", "-m 755 ncat")
|
||||
autotools.autoconf()
|
||||
autotools.configure("--with-openssl \
|
||||
--with-zenmap \
|
||||
--with-ndiff \
|
||||
--with-nping \
|
||||
--with-ncat \
|
||||
--with-liblua")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s STRIP=true" % get.installDIR())
|
||||
for i in ["uninstall_zenmap", "nmapfe", "xnmap"]:
|
||||
pisitools.remove("/usr/bin/%s" % i)
|
||||
|
||||
pisitools.dodoc("LICENSE", "HACKING", "README.md")
|
||||
@@ -0,0 +1,13 @@
|
||||
diff -Naurp nmap-4.75-orig/nmap_dns.h nmap-4.75/nmap_dns.h
|
||||
--- nmap-4.75-orig/nmap_dns.h 2008-09-09 08:51:59.000000000 +0200
|
||||
+++ nmap-4.75/nmap_dns.h 2008-09-09 08:52:19.000000000 +0200
|
||||
@@ -95,6 +95,9 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
+#include <list>
|
||||
+#include <string>
|
||||
+
|
||||
class Target;
|
||||
|
||||
void nmap_mass_rdns(Target ** targets, int num_targets);
|
||||
@@ -0,0 +1,11 @@
|
||||
--- nmap-5.10BETA1/Target.h.org 2009-12-08 08:21:59.000000000 +0100
|
||||
+++ nmap-5.10BETA1/Target.h 2009-12-08 08:22:02.000000000 +0100
|
||||
@@ -99,6 +99,8 @@
|
||||
|
||||
#ifndef NOLUA
|
||||
#include "nse_main.h"
|
||||
+#else
|
||||
+#include <string>
|
||||
#endif
|
||||
|
||||
#include "portreasons.h"
|
||||
@@ -0,0 +1,21 @@
|
||||
diff -Naurp nmap-5.21-orig/Makefile.in nmap-5.21/Makefile.in
|
||||
--- nmap-5.21-orig/Makefile.in 2010-01-31 09:53:53.000000000 +0100
|
||||
+++ nmap-5.21/Makefile.in 2010-01-31 09:54:48.000000000 +0100
|
||||
@@ -253,7 +253,7 @@ build-zenmap: $(ZENMAPDIR)/setup.py $(ZE
|
||||
|
||||
install-zenmap: $(ZENMAPDIR)/setup.py
|
||||
$(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
|
||||
- cd $(ZENMAPDIR) && $(PYTHON) setup.py --quiet install --prefix "$(prefix)" --force $(if $(DESTDIR),--root "$(DESTDIR)")
|
||||
+ cd $(ZENMAPDIR) && $(PYTHON) setup.py --quiet install --prefix "$(prefix)" --force $(if $(DESTDIR),--root "$(DESTDIR)") --no-compile
|
||||
$(INSTALL) -c -m 644 docs/zenmap.1 $(DESTDIR)$(mandir)/man1/
|
||||
# Create a symlink from nmapfe to zenmap if nmapfe doesn't exist or is
|
||||
# already a link.
|
||||
@@ -267,7 +267,7 @@ build-ndiff:
|
||||
cd $(NDIFFDIR) && $(PYTHON) setup.py build $(if $(DESTDIR),--executable "$(DEFAULT_PYTHON_PATH)")
|
||||
|
||||
install-ndiff:
|
||||
- cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" $(if $(DESTDIR),--root "$(DESTDIR)")
|
||||
+ cd $(NDIFFDIR) && $(PYTHON) setup.py install --prefix "$(prefix)" $(if $(DESTDIR),--root "$(DESTDIR)") --no-compile
|
||||
|
||||
NSE_FILES = scripts/script.db scripts/*.nse
|
||||
NSE_LIB_LUA_FILES = nselib/*.lua
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1,34 @@
|
||||
diff -Nur nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap.desktop nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap.desktop
|
||||
--- nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap.desktop 2010-07-07 21:05:45.140507533 +0300
|
||||
+++ nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap.desktop 2010-07-07 21:09:03.588380333 +0300
|
||||
@@ -2,6 +2,7 @@
|
||||
Encoding=UTF-8
|
||||
Name=Zenmap
|
||||
GenericName=GUI Port Scanner
|
||||
+GenericName[tr]=Port Tarayıcı
|
||||
TryExec=zenmap
|
||||
Exec=zenmap %F
|
||||
Terminal=false
|
||||
@@ -9,3 +10,4 @@
|
||||
Type=Application
|
||||
Categories=Application;Network;Security
|
||||
Comment=A cross-platform GUI for the Nmap Security Scanner.
|
||||
+Comment[tr]=Nmap Güvenlik Tarayıcı için grafik arabirim.
|
||||
diff -Nur nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap-root.desktop nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap-root.desktop
|
||||
--- nmap-5.30BETA1-old/zenmap/install_scripts/unix/zenmap-root.desktop 2010-07-07 21:05:45.140507533 +0300
|
||||
+++ nmap-5.30BETA1/zenmap/install_scripts/unix/zenmap-root.desktop 2010-07-07 21:09:04.924385518 +0300
|
||||
@@ -1,7 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Zenmap (as root)
|
||||
+Name[tr]=Zenmap (root olarak)
|
||||
GenericName=GUI Port Scanner
|
||||
+GenericName[tr]=Port Tarayıcı
|
||||
TryExec=su-to-zenmap.sh
|
||||
Exec=su-to-zenmap.sh %F
|
||||
Terminal=false
|
||||
@@ -9,3 +11,4 @@
|
||||
Type=Application
|
||||
Categories=Application;Network;Security
|
||||
Comment=A cross-platform GUI for the Nmap Security Scanner.
|
||||
+Comment[tr]=Nmap Güvenlik Tarayıcı Grafik Arayüzü.
|
||||
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nmap</Name>
|
||||
<Homepage>https://nmap.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>nmap</Icon>
|
||||
<Summary>Utility for network exploration or security auditing</Summary>
|
||||
<Description>Nmap is a utility for network exploration or security auditing.</Description>
|
||||
<Archive sha1sum="62342a9a6641833c5c16b7a24ced4bace68c60fb" type="tarbz2">https://nmap.org/dist/nmap-7.92.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>subversion-devel</Dependency>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>apr-devel</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">nmap-4.75-include.patch</Patch>
|
||||
<Patch level="1">nmap-5.10_beta1-string.patch</Patch>
|
||||
<Patch level="1">nmap-5.21-python.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>nmap</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>subversion</Dependency>
|
||||
<Dependency>libpcap</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>lua</Dependency>
|
||||
<Dependency>apr</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/ncat</Path>
|
||||
<Path fileType="data">/usr/share/nmap</Path>
|
||||
<Path fileType="data">/usr/share/nping</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/nmap.png">nmap.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>zenmap</Name>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>zenmap is the graphical frontend for nmap</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">nmap</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/zenmap</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/zenmap.1</Path>
|
||||
<Path fileType="doc">/usr/lib/python*/site-packages</Path>
|
||||
<Path fileType="doc">/usr/share/zenmap</Path>
|
||||
<Path fileType="doc">/usr/share/applications</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2012-09-01</Date>
|
||||
<Version>7.92</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nmap</Name>
|
||||
<Summary xml:lang="tr">Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araç</Summary>
|
||||
<Description xml:lang="tr">Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araçtır. Konsoldan yapacağınız sorgulamalarla ağınızda hangi makinaların açık/erişilebilir olduğunu, makinalarda hangi portlarda hangi hizmet protokollerinin ve uygulamaların çalıştığını, karşı makinada hangi işletim sisteminin yüklü olduğunu ve bağlantının hangi aygıt ile gerçekleştiğini öğrenebilirsiniz.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>zenmap</Name>
|
||||
<Summary xml:lang="tr">zenmap, nmap aracı için grafik arabirim yazılımıdır</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+181
-7
@@ -174628,7 +174628,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Summary xml:lang="tr">Xfce için küçük bir yazı düzenleyici</Summary>
|
||||
<Description xml:lang="en">Mousepad aims to be an easy-to-use and fast editor. Our target is an editor for quickly editing text files, not a development environment or an editor with a huge bunch of plugins. On the other hand we try to use the latest Gtk+ features available, which means that if Gtk adds something new in a major release that is useful for the editor, we will likely bump the Gtk dependency and integrate this new feature in Mousepad.</Description>
|
||||
<Description xml:lang="tr">Mousepad, Xfce için yazılmış bir metin düzenleyicisidir.</Description>
|
||||
<Archive type="tarbz2" sha1sum="1847dfa005b07b91a3cce97518633959c71e3f11" name="mousepad-0.5.9.tar.bz2">https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.9.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="7bf1924a791dfad22e62d52b7d38b839db7e4588" name="mousepad-0.5.10.tar.bz2">https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.10.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
@@ -174667,6 +174667,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>0.5.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2022-04-03</Date>
|
||||
<Version>0.5.9</Version>
|
||||
@@ -174925,7 +174932,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Summary xml:lang="tr">Xfce için resim göstericisi</Summary>
|
||||
<Description xml:lang="en">Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment.</Description>
|
||||
<Description xml:lang="tr">Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir.</Description>
|
||||
<Archive type="tarbz2" sha1sum="2cfd82a6f878fba366234a7fd1ab094cea82a97f" name="ristretto-0.12.2.tar.bz2">https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.2.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="83ea5c5660c302bb474784f4f59a5beeb765ec6d" name="ristretto-0.12.3.tar.bz2">https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
@@ -174964,6 +174971,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>0.12.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2022-01-15</Date>
|
||||
<Version>0.12.2</Version>
|
||||
@@ -177901,7 +177915,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<PartOf>desktop.xfce.base</PartOf>
|
||||
<Summary xml:lang="en">Xfce file manager</Summary>
|
||||
<Description xml:lang="en">Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant</Description>
|
||||
<Archive type="tarbz2" sha1sum="07863765d31a50291eb3adcf37e2a9183f025918" name="thunar-4.17.8.tar.bz2">https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.8.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="d3efb4b7a533479a168d62169332aa5939d6047e" name="thunar-4.17.9.tar.bz2">https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.9.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
@@ -177976,7 +177990,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="12">thunar</Dependency>
|
||||
<Dependency release="13">thunar</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -177988,13 +178002,20 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Summary xml:lang="en">Thunar reference documents</Summary>
|
||||
<IsA>data:doc</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="12">thunar</Dependency>
|
||||
<Dependency release="13">thunar</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="13">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>4.17.9</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2022-06-12</Date>
|
||||
<Version>4.17.8</Version>
|
||||
@@ -178426,7 +178447,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Description xml:lang="en">The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels</Description>
|
||||
<Description xml:lang="tr">Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir.</Description>
|
||||
<Description xml:lang="pl">Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. </Description>
|
||||
<Archive type="tarbz2" sha1sum="d5718ffcedf5984d1a3c7acb778f215cd27c5d52" name="xfce4-panel-4.17.1.tar.bz2">https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.1.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="98f7dc1006ac9c520b8f9ceb00b99bf8361d592c" name="xfce4-panel-4.17.2.tar.bz2">https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.2.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
@@ -178500,7 +178521,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libxfce4util-devel</Dependency>
|
||||
<Dependency release="9">xfce4-panel</Dependency>
|
||||
<Dependency release="10">xfce4-panel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -178509,6 +178530,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>4.17.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2022-06-12</Date>
|
||||
<Version>4.17.1</Version>
|
||||
@@ -239100,6 +239128,67 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>etherape</Name>
|
||||
<Homepage>http://etherape.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>network.analyzer</PartOf>
|
||||
<Summary xml:lang="en">Graphical network monitor</Summary>
|
||||
<Summary xml:lang="tr">Grafiksel ağ izleyici</Summary>
|
||||
<Description xml:lang="en">etherape is a graphical network monitor with fancy display features.</Description>
|
||||
<Description xml:lang="tr">etherape ağ durumunu görsel değişikliklerle gösteren bir ağ izleyicisidir.</Description>
|
||||
<Icon>etherape</Icon>
|
||||
<Archive type="targz" sha1sum="333652b935f44d83c6f7da668477180b50c3817d" name="etherape-0.9.20.tar.gz">mirrors://sourceforge/etherape/etherape-0.9.20.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>popt-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>libglade-devel</Dependency>
|
||||
<Dependency>goocanvas-devel</Dependency>
|
||||
<Dependency>gnome-doc-utils</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>network/analyzer/etherape/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>etherape</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>popt</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libpcap</Dependency>
|
||||
<Dependency>libglade</Dependency>
|
||||
<Dependency>goocanvas</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/etherape</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc/etherape</Path>
|
||||
<Path fileType="data">/usr/share/etherape</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1" type="security">
|
||||
<Date>2022-07-10</Date>
|
||||
<Version>0.9.20</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gnu-netcat</Name>
|
||||
@@ -239414,6 +239503,91 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>nmap</Name>
|
||||
<Homepage>https://nmap.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<PartOf>network.analyzer</PartOf>
|
||||
<Summary xml:lang="en">Utility for network exploration or security auditing</Summary>
|
||||
<Summary xml:lang="tr">Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araç</Summary>
|
||||
<Description xml:lang="en">Nmap is a utility for network exploration or security auditing.</Description>
|
||||
<Description xml:lang="tr">Ağa gözatmak ya da güvenlik denetlemeleri yapmak için kullanılan bir araçtır. Konsoldan yapacağınız sorgulamalarla ağınızda hangi makinaların açık/erişilebilir olduğunu, makinalarda hangi portlarda hangi hizmet protokollerinin ve uygulamaların çalıştığını, karşı makinada hangi işletim sisteminin yüklü olduğunu ve bağlantının hangi aygıt ile gerçekleştiğini öğrenebilirsiniz.</Description>
|
||||
<Icon>nmap</Icon>
|
||||
<Archive type="tarbz2" sha1sum="62342a9a6641833c5c16b7a24ced4bace68c60fb" name="nmap-7.92.tar.bz2">https://nmap.org/dist/nmap-7.92.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>subversion-devel</Dependency>
|
||||
<Dependency>libpcap-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>apr-devel</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">nmap-4.75-include.patch</Patch>
|
||||
<Patch level="1">nmap-5.10_beta1-string.patch</Patch>
|
||||
<Patch level="1">nmap-5.21-python.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>network/analyzer/nmap/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>nmap</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>subversion</Dependency>
|
||||
<Dependency>libpcap</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>lua</Dependency>
|
||||
<Dependency>apr</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/ncat</Path>
|
||||
<Path fileType="data">/usr/share/nmap</Path>
|
||||
<Path fileType="data">/usr/share/nping</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/pixmaps/nmap.png" permission="0644" owner="root">nmap.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>zenmap</Name>
|
||||
<Summary xml:lang="en">zenmap is the graphical frontend for nmap</Summary>
|
||||
<Summary xml:lang="tr">zenmap, nmap aracı için grafik arabirim yazılımıdır</Summary>
|
||||
<IsA>app:gui</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">nmap</Dependency>
|
||||
<Dependency>python-gtk</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/zenmap</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/zenmap.1</Path>
|
||||
<Path fileType="doc">/usr/lib/python*/site-packages</Path>
|
||||
<Path fileType="doc">/usr/share/zenmap</Path>
|
||||
<Path fileType="doc">/usr/share/applications</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2012-09-01</Date>
|
||||
<Version>7.92</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>openslp</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
fb347f791fd1f4c05a636f6f21c6d64132466746
|
||||
ae8e5bb4264dc98c072b69dd4237060d15138867
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
74bb2fd0d04e06722b50f21322576feb577c2972
|
||||
758bda943b586d4de5b43e73bbf6955ee4a3b6f8
|
||||
Reference in New Issue
Block a user