index
This commit is contained in:
-59
@@ -1,59 +0,0 @@
|
||||
From 4456e13880803a300e4b6f263ad22a37481b5df5 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 29 Aug 2019 09:33:43 -0700
|
||||
Subject: [PATCH] saaldump,atmdump: Include linux/sockios.h for SIOCGSTAMP
|
||||
|
||||
In linux kernel commit 0768e17073dc527ccd18ed5f96ce85f9985e9115
|
||||
the asm-generic/sockios.h header no longer defines SIOCGSTAMP.
|
||||
Instead it provides only SIOCGSTAMP_OLD.
|
||||
|
||||
The linux/sockios.h header now defines SIOCGSTAMP using either
|
||||
SIOCGSTAMP_OLD or SIOCGSTAMP_NEW as appropriate. This linux only
|
||||
header file is not pulled so we get a build failure.
|
||||
|
||||
Fixes
|
||||
../../../linux-atm-2.5.2/src/maint/atmdump.c:142:18: error: use of undeclared identifier 'SIOCGSTAMP'
|
||||
if (ioctl(s,SIOCGSTAMP,&stamp) < 0) {
|
||||
^
|
||||
1 error generated.
|
||||
make[3]: *** [Makefile:623: atmdump.o] Error 1
|
||||
make[3]: *** Waiting for unfinished jobs....
|
||||
../../../linux-atm-2.5.2/src/maint/saaldump.c:169:14: error: use of undeclared identifier 'SIOCGSTAMP'
|
||||
if (ioctl(s,SIOCGSTAMP,&stamp) < 0) {
|
||||
^
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
src/maint/atmdump.c | 2 +-
|
||||
src/maint/saaldump.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/maint/atmdump.c b/src/maint/atmdump.c
|
||||
index 8b17826..9e4853b 100644
|
||||
--- a/src/maint/atmdump.c
|
||||
+++ b/src/maint/atmdump.c
|
||||
@@ -5,7 +5,7 @@
|
||||
#if HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
-
|
||||
+#include <linux/sockios.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
diff --git a/src/maint/saaldump.c b/src/maint/saaldump.c
|
||||
index 83bdde9..69429a8 100644
|
||||
--- a/src/maint/saaldump.c
|
||||
+++ b/src/maint/saaldump.c
|
||||
@@ -5,7 +5,7 @@
|
||||
#if HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
-
|
||||
+#include <linux/sockios.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
--
|
||||
2.23.0
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
diff -Nur linux-atm-2.5.0-old/src/led/main.c linux-atm-2.5.0/src/led/main.c
|
||||
--- linux-atm-2.5.0-old/src/led/main.c 2008-04-25 03:39:28.000000000 +0300
|
||||
+++ linux-atm-2.5.0/src/led/main.c 2008-04-25 03:39:43.000000000 +0300
|
||||
@@ -46,6 +46,7 @@
|
||||
#include <atmd.h>
|
||||
|
||||
#include <linux/atmlec.h>
|
||||
+#include <limits.h>
|
||||
|
||||
/* Local incs */
|
||||
#include "join.h"
|
||||
@@ -1,11 +0,0 @@
|
||||
--- linux-atm/src/ilmid/Makefile.am~ 2007-07-11 17:07:57.000000000 +0100
|
||||
+++ linux-atm/src/ilmid/Makefile.am 2007-08-23 09:22:45.000000000 +0100
|
||||
@@ -2,7 +2,7 @@ SUBDIRS = asn1
|
||||
|
||||
INCLUDES = -I$(srcdir)/../ilmid/asn1
|
||||
|
||||
-sbin_PROGRAMS = ilmid ilmidiag
|
||||
+sbin_PROGRAMS = ilmid
|
||||
|
||||
ilmid_SOURCES = rfc1157_snmp.c rfc1157_snmp.h rfc1155_smi.c rfc1155_smi.h \
|
||||
util.c util.h io.c io.h message.c message.h \
|
||||
@@ -1,11 +0,0 @@
|
||||
--- linux-atm/src/maint/atmtcp.c~ 2007-08-22 14:59:21.000000000 +0100
|
||||
+++ linux-atm/src/maint/atmtcp.c 2007-08-22 18:27:24.000000000 +0100
|
||||
@@ -109,7 +109,7 @@ static void control(int in_link,struct a
|
||||
switch (msg->type) {
|
||||
case ATMTCP_CTRL_OPEN:
|
||||
if (out->ops->open)
|
||||
- changed += out->ops->open(out,in_link,msg);
|
||||
+ changed += (out->ops->open)(out,in_link,msg);
|
||||
break;
|
||||
case ATMTCP_CTRL_CLOSE:
|
||||
if (out->ops->close)
|
||||
@@ -1,45 +0,0 @@
|
||||
diff -up linux-atm-2.5.1/src/led/zeppelin.8.fixman linux-atm-2.5.1/src/led/zeppelin.8
|
||||
--- linux-atm-2.5.1/src/led/zeppelin.8.fixman 2003-05-02 19:35:04.000000000 +0200
|
||||
+++ linux-atm-2.5.1/src/led/zeppelin.8 2010-10-13 12:58:18.000000000 +0200
|
||||
@@ -99,7 +99,7 @@ Ring and ATM parts of the ELAN, so using
|
||||
recommended. Token Ring support has received less testing than its
|
||||
Ethernet counterpart.
|
||||
.SH FILES
|
||||
-.IP \fI/var/run/lec[interface number].pid\fP
|
||||
+\fI/var/run/lec[interface number].pid\fP
|
||||
The file containing the process id of zeppelin.
|
||||
.SH BUGS
|
||||
John Bonham died 1980 and Led Zeppelin broke.
|
||||
diff -up linux-atm-2.5.1/src/mpoad/mpcd.8.fixman linux-atm-2.5.1/src/mpoad/mpcd.8
|
||||
--- linux-atm-2.5.1/src/mpoad/mpcd.8.fixman 2001-10-10 00:33:07.000000000 +0200
|
||||
+++ linux-atm-2.5.1/src/mpoad/mpcd.8 2010-10-13 12:59:14.000000000 +0200
|
||||
@@ -28,7 +28,7 @@ mpcd \- ATM MPOA (Multi\-Protocol Over A
|
||||
.B ]]
|
||||
.SH DESCRIPTION
|
||||
MPOA client
|
||||
-.SM(MPC) is responsible for creating and receiving
|
||||
+.SM (MPC) is responsible for creating and receiving
|
||||
internetwork layer shortcuts. Using these shortcuts MPCs forward
|
||||
unicast internetwork layer packets effectively over ATM without need
|
||||
for routing protocols.
|
||||
@@ -43,7 +43,7 @@ accepts shortcuts and packets arriving o
|
||||
shortcuts is done with the help of
|
||||
.SM MPOA
|
||||
server
|
||||
-.SM(MPS).
|
||||
+.SM (MPS).
|
||||
.PP
|
||||
Just as the Linux
|
||||
.SM LAN
|
||||
diff -up linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman linux-atm-2.5.1/src/sigd/atmsigd.conf.4
|
||||
--- linux-atm-2.5.1/src/sigd/atmsigd.conf.4.fixman 2001-10-10 00:33:07.000000000 +0200
|
||||
+++ linux-atm-2.5.1/src/sigd/atmsigd.conf.4 2010-10-13 12:58:49.000000000 +0200
|
||||
@@ -125,7 +125,7 @@ a comment. The `#' character cannot be e
|
||||
.P
|
||||
If an option is specified in \fBatmsigd.conf\fP and on the command
|
||||
line, the command line has priority.
|
||||
-.COMPATIBILITY
|
||||
+.SH COMPATIBILITY
|
||||
Certain options used by past versions of \fBatmsigd\fP but no longer documented
|
||||
on the man page are still recognized and supported, but they also yield a
|
||||
warning message. Future versions of \fBatmsigd\fP will not recognize those
|
||||
@@ -1,33 +0,0 @@
|
||||
diff -Nur linux-atm-2.5.0-old/src/arpd/arp.c linux-atm-2.5.0/src/arpd/arp.c
|
||||
--- linux-atm-2.5.0-old/src/arpd/arp.c 2008-04-25 03:34:35.000000000 +0300
|
||||
+++ linux-atm-2.5.0/src/arpd/arp.c 2008-04-25 03:34:51.000000000 +0300
|
||||
@@ -15,7 +15,6 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h> /* for linux/if_arp.h */
|
||||
#include <netinet/in.h> /* for ntohs, etc. */
|
||||
-#define _LINUX_NETDEVICE_H /* very crude hack for glibc2 */
|
||||
#include <linux/types.h>
|
||||
#include <linux/if_arp.h>
|
||||
#include <linux/if_ether.h>
|
||||
diff -Nur linux-atm-2.5.0-old/src/arpd/io.c linux-atm-2.5.0/src/arpd/io.c
|
||||
--- linux-atm-2.5.0-old/src/arpd/io.c 2008-04-25 03:34:35.000000000 +0300
|
||||
+++ linux-atm-2.5.0/src/arpd/io.c 2008-04-25 03:34:51.000000000 +0300
|
||||
@@ -21,7 +21,6 @@
|
||||
#include <atm.h>
|
||||
#include <linux/atmclip.h> /* for CLIP_DEFAULT_IDLETIMER */
|
||||
#include <linux/atmarp.h>
|
||||
-#define _LINUX_NETDEVICE_H /* glibc2 */
|
||||
#include <linux/types.h>
|
||||
#include <linux/if_arp.h>
|
||||
|
||||
diff -Nur linux-atm-2.5.0-old/src/arpd/itf.c linux-atm-2.5.0/src/arpd/itf.c
|
||||
--- linux-atm-2.5.0-old/src/arpd/itf.c 2008-04-25 03:34:35.000000000 +0300
|
||||
+++ linux-atm-2.5.0/src/arpd/itf.c 2008-04-25 03:34:51.000000000 +0300
|
||||
@@ -12,7 +12,6 @@
|
||||
#include <sys/types.h>
|
||||
#include <linux/atmclip.h>
|
||||
#include <sys/socket.h>
|
||||
-#define _LINUX_NETDEVICE_H /* glibc2 */
|
||||
#include <linux/types.h>
|
||||
#include <linux/if_arp.h>
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
diff -up linux-atm-2.5.1/src/arpd/arp.c.ftbfs linux-atm-2.5.1/src/arpd/arp.c
|
||||
--- linux-atm-2.5.1/src/arpd/arp.c.ftbfs 2007-07-11 11:27:15.000000000 -0400
|
||||
+++ linux-atm-2.5.1/src/arpd/arp.c 2019-05-02 20:15:45.497338836 -0400
|
||||
@@ -15,7 +15,6 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h> /* for linux/if_arp.h */
|
||||
#include <netinet/in.h> /* for ntohs, etc. */
|
||||
-#define _LINUX_NETDEVICE_H /* very crude hack for glibc2 */
|
||||
#include <linux/types.h>
|
||||
#include <linux/if_arp.h>
|
||||
#include <linux/if_ether.h>
|
||||
diff -up linux-atm-2.5.1/src/arpd/itf.c.ftbfs linux-atm-2.5.1/src/arpd/itf.c
|
||||
--- linux-atm-2.5.1/src/arpd/itf.c.ftbfs 2007-07-11 11:27:15.000000000 -0400
|
||||
+++ linux-atm-2.5.1/src/arpd/itf.c 2019-05-02 20:19:08.046499027 -0400
|
||||
@@ -12,7 +12,6 @@
|
||||
#include <sys/types.h>
|
||||
#include <linux/atmclip.h>
|
||||
#include <sys/socket.h>
|
||||
-#define _LINUX_NETDEVICE_H /* glibc2 */
|
||||
#include <linux/types.h>
|
||||
#include <linux/if_arp.h>
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
Index: linux-atm-2.5.1/src/config/Makefile.in
|
||||
===================================================================
|
||||
--- linux-atm-2.5.1.orig/src/config/Makefile.in
|
||||
+++ linux-atm-2.5.1/src/config/Makefile.in
|
||||
@@ -413,10 +413,10 @@ uninstall-am: uninstall-local uninstall-
|
||||
|
||||
|
||||
install-exec-local:
|
||||
- -cp hosts.atm /etc
|
||||
+ -cp hosts.atm $(DESTDIR)$(sysconfdir)
|
||||
|
||||
uninstall-local:
|
||||
- -rm /etc/hosts.atm
|
||||
+ -rm $(DESTDIR)$(sysconfdir)/hosts.atm
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
@@ -1,91 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>linux-atm</Name>
|
||||
<Homepage>http://linux-atm.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Tools to support ATM networking under Liunx</Summary>
|
||||
<Description>linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others.</Description>
|
||||
<Archive sha1sum="5a64964415bf19f855fb9a481b066ede3010aa2a" type="targz">mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>flex</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">man-pages.patch</Patch>
|
||||
<Patch level="1">remove-define-hacks.patch</Patch>
|
||||
<Patch level="1">0001-saaldump-atmdump-Include-linux-sockios.h-for-SIOCGST.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>linux-atm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>flex</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="firmware">/lib/firmware</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>linux-atm-devel</Name>
|
||||
<Summary>Development files for linux-atm</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">linux-atm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2019-04-23</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-18</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-04-13</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
+164
-51
@@ -3682,7 +3682,7 @@
|
||||
<Update release="5">
|
||||
<Date>2020-03-13</Date>
|
||||
<Version>0.2.8</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
@@ -3743,6 +3743,7 @@
|
||||
<Dependency>readline-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">0001-P2P-Fix-copying-of-secondary-device-types-for-P2P-gr.patch</Patch>
|
||||
<Patch level="1">ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch</Patch>
|
||||
<Patch level="1">wpa_supplicant-1.0-dbus-path-fix.patch</Patch>
|
||||
<Patch level="1">mandriva/wpa_supplicant-0.6.3-WEP232.patch</Patch>
|
||||
@@ -3783,6 +3784,13 @@
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>2.9</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-01-22</Date>
|
||||
<Version>2.9</Version>
|
||||
@@ -3842,6 +3850,8 @@
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">man-pages.patch</Patch>
|
||||
<Patch level="1">remove-define-hacks.patch</Patch>
|
||||
<Patch level="1">0001-saaldump-atmdump-Include-linux-sockios.h-for-SIOCGST.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>network/connection/linux-atm/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -3865,13 +3875,20 @@
|
||||
<Summary xml:lang="en">Development files for linux-atm</Summary>
|
||||
<Summary xml:lang="tr">linux-atm için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="4">linux-atm</Dependency>
|
||||
<Dependency release="5">linux-atm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>2.5.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2019-04-23</Date>
|
||||
<Version>2.5.2</Version>
|
||||
@@ -4203,10 +4220,12 @@
|
||||
<Summary xml:lang="tr">Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci</Summary>
|
||||
<Description xml:lang="en">openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc.</Description>
|
||||
<Description xml:lang="tr">openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır.</Description>
|
||||
<Archive type="targz" sha1sum="7fc0ed9cb34b401740100f36695036d3333256c0" name="openconnect-8.05.tar.gz">ftp://ftp.infradead.org/pub/openconnect/openconnect-8.05.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="2829320cfd7801baf4ceccc8d4f650a10994cd51" name="openconnect-8.10.tar.gz">https://www.infradead.org/openconnect/download/openconnect-8.10.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libproxy-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>lz4-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
@@ -4220,6 +4239,7 @@
|
||||
<Package>
|
||||
<Name>openconnect</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lz4</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
@@ -4227,14 +4247,18 @@
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>p11-kit</Dependency>
|
||||
<Dependency>e2fsprogs</Dependency>
|
||||
<Dependency>bash-completion</Dependency>
|
||||
<Dependency>libproxy</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/openconnect</Path>
|
||||
<Path fileType="executable">/usr/libexec/openconnect</Path>
|
||||
<Path fileType="man">/usr/share/man/man8</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion/completions/openconnect</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
@@ -4246,7 +4270,7 @@
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency release="5">openconnect</Dependency>
|
||||
<Dependency release="6">openconnect</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -4254,6 +4278,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>8.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-04-08</Date>
|
||||
<Version>8.05</Version>
|
||||
@@ -4378,7 +4409,7 @@
|
||||
<Summary xml:lang="tr">Linux için ağ köprüleme yardımcı uygulamaları</Summary>
|
||||
<Description xml:lang="en">Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel.</Description>
|
||||
<Description xml:lang="tr">Linux için ağ köprüleme yardımcı uygulamaları.</Description>
|
||||
<Archive type="tarxz" sha1sum="6ada895d78cadf5ba22f5dbc628e76750dbdfc51" name="bridge-utils-1.6.tar.xz">https://www.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils-1.6.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="07266dff2bf31a24fc912314b6764251ce645a39" name="bridge-utils-1.7.1.tar.xz">https://www.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils-1.7.1.tar.xz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">bridge-utils-1.0.4-inc.patch</Patch>
|
||||
</Patches>
|
||||
@@ -4395,6 +4426,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>1.7.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-03-19</Date>
|
||||
<Version>1.6</Version>
|
||||
@@ -5016,7 +5054,7 @@
|
||||
<Description xml:lang="en">libpcap (Packet CAPture) provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc.</Description>
|
||||
<Description xml:lang="tr">libpcap (Packet CAPture) düşük-seviye ağların izlenmesi için kullanılan bir kitaplıktır. Ağ istatistikleri, güvenlik izleyicisi, ağ hata gözleme gibi uygulamalar genellikle bu kitaplığı kullanır.</Description>
|
||||
<Description xml:lang="es">libpcap (Packet CAPture) facilita un framework portable para monitoreo de redes a a bajo nivel. Aplicaciones abarcan sistemas de estadísticas de red, monitoreo de seguridad, depuración de red, etc.</Description>
|
||||
<Archive type="targz" sha1sum="04d6e619defad5bb17af15f6d2304e79b649786c" name="libpcap-1.9.1.tar.gz">http://www.tcpdump.org/release/libpcap-1.9.1.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="4343528176e0402cce807a09a97191069a1e3dd9" name="libpcap-1.10.1.tar.gz">http://www.tcpdump.org/release/libpcap-1.10.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>bluez-libs-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -5035,7 +5073,7 @@
|
||||
<Summary xml:lang="en">Development files for libpcap</Summary>
|
||||
<Summary xml:lang="tr">libpcap için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="6">libpcap</Dependency>
|
||||
<Dependency release="7">libpcap</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/pcap-config</Path>
|
||||
@@ -5044,6 +5082,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>1.10.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-02-01</Date>
|
||||
<Version>1.9.1</Version>
|
||||
@@ -5104,7 +5149,7 @@
|
||||
<Summary xml:lang="tr">Taşınabilir UPnP kitaplığı</Summary>
|
||||
<Summary xml:lang="de">Portabels UPnP Bibliothek</Summary>
|
||||
<Description xml:lang="en">The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description>
|
||||
<Archive type="tarbz2" sha1sum="b14cff9ddd7cfe7f0e4bf552387122a31770f51f" name="libupnp-1.14.0.tar.bz2">mirrors://sourceforge/pupnp/libupnp-1.14.0.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="33e2eec13112860c9da8406ae6f60a920a7205cf" name="libupnp-1.14.7.tar.bz2">mirrors://sourceforge/pupnp/libupnp-1.14.7.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kernel-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -5122,7 +5167,7 @@
|
||||
<Summary xml:lang="en">Development files for libupnp.</Summary>
|
||||
<Summary xml:lang="tr">libupnp için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">libupnp</Dependency>
|
||||
<Dependency release="6">libupnp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -5130,6 +5175,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>1.14.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-12-13</Date>
|
||||
<Version>1.14.0</Version>
|
||||
@@ -5210,8 +5262,8 @@
|
||||
<Summary xml:lang="tr">Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libavahi-glib.*</Path>
|
||||
@@ -5223,8 +5275,8 @@
|
||||
<Summary xml:lang="en">Development files for avahi-glib</Summary>
|
||||
<Summary xml:lang="tr">avahi-glib için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi-glib</Dependency>
|
||||
<Dependency release="7">avahi-devel</Dependency>
|
||||
<Dependency release="8">avahi-glib</Dependency>
|
||||
<Dependency release="8">avahi-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/avahi-glib</Path>
|
||||
@@ -5241,8 +5293,8 @@
|
||||
<Dependency>gdbm</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="7">avahi-glib</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi-glib</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
@@ -5259,9 +5311,9 @@
|
||||
<Summary xml:lang="tr">avahi-ui için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency release="7">avahi-ui</Dependency>
|
||||
<Dependency release="7">avahi-devel</Dependency>
|
||||
<Dependency release="7">avahi-glib-devel</Dependency>
|
||||
<Dependency release="8">avahi-ui</Dependency>
|
||||
<Dependency release="8">avahi-devel</Dependency>
|
||||
<Dependency release="8">avahi-glib-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/avahi-ui</Path>
|
||||
@@ -5276,8 +5328,8 @@
|
||||
<Dependency>gdbm</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="7">avahi-glib</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi-glib</Dependency>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
@@ -5293,9 +5345,9 @@
|
||||
<Summary xml:lang="tr">avahi-ui-gtk3 için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency release="7">avahi-ui-gtk3</Dependency>
|
||||
<Dependency release="7">avahi-devel</Dependency>
|
||||
<Dependency release="7">avahi-glib-devel</Dependency>
|
||||
<Dependency release="8">avahi-ui-gtk3</Dependency>
|
||||
<Dependency release="8">avahi-devel</Dependency>
|
||||
<Dependency release="8">avahi-glib-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -5309,11 +5361,11 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-ui</Dependency>
|
||||
<Dependency release="7">avahi-glib</Dependency>
|
||||
<Dependency release="7">avahi-ui-gtk3</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-ui</Dependency>
|
||||
<Dependency release="8">avahi-glib</Dependency>
|
||||
<Dependency release="8">avahi-ui-gtk3</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -5334,8 +5386,8 @@
|
||||
<Summary xml:lang="en">Libraries for howl compatibility</Summary>
|
||||
<Summary xml:lang="tr">howl uyumluluk kitaplıkları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libhowl.so*</Path>
|
||||
@@ -5346,7 +5398,7 @@
|
||||
<Summary xml:lang="en">Development files for avahi-compat-howl</Summary>
|
||||
<Summary xml:lang="tr">avahi-compat-howl için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi-compat-howl</Dependency>
|
||||
<Dependency release="8">avahi-compat-howl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/avahi-compat-howl</Path>
|
||||
@@ -5359,8 +5411,8 @@
|
||||
<Summary xml:lang="en">Libraries for Apple Bonjour mDNSResponder compatibility</Summary>
|
||||
<Summary xml:lang="tr">libdns_sd uyumluluk kitaplıkları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libdns_sd.so*</Path>
|
||||
@@ -5371,7 +5423,7 @@
|
||||
<Summary xml:lang="en">Development files for avahi-compat-libdns_sd</Summary>
|
||||
<Summary xml:lang="tr">avahi-compat-libdns_sd için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi-compat-libdns_sd</Dependency>
|
||||
<Dependency release="8">avahi-compat-libdns_sd</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/avahi-compat-libdns_sd</Path>
|
||||
@@ -5399,7 +5451,7 @@
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<Dependency>libdaemon</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/sbin/avahi-daemon</Path>
|
||||
@@ -5450,8 +5502,8 @@
|
||||
<Summary xml:lang="tr">Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libdaemon</Dependency>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/etc/avahi/avahi-dnsconfd.action</Path>
|
||||
@@ -5468,8 +5520,8 @@
|
||||
<Summary xml:lang="tr">mDNS taramak ve yayınlamak için komut satırı araçları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gdbm</Dependency>
|
||||
<Dependency release="7">avahi</Dependency>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
@@ -5481,7 +5533,7 @@
|
||||
<Summary xml:lang="en">Development files for avahi</Summary>
|
||||
<Summary xml:lang="tr">avahi için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">avahi-libs</Dependency>
|
||||
<Dependency release="8">avahi-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig/avahi-core.pc</Path>
|
||||
@@ -5492,6 +5544,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>0.7</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-01-07</Date>
|
||||
<Version>0.7</Version>
|
||||
@@ -5600,7 +5659,7 @@
|
||||
<Description xml:lang="tr">openslp-server, dinamik hizmet kaydı için gerekli OpenSLP sunucusunu içerir.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency release="5">openslp</Dependency>
|
||||
<Dependency release="6">openslp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/slp.reg</Path>
|
||||
@@ -5613,7 +5672,7 @@
|
||||
<Summary xml:lang="en">Development files for openslp</Summary>
|
||||
<Summary xml:lang="tr">openslp için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">openslp</Dependency>
|
||||
<Dependency release="6">openslp</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -5623,6 +5682,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>2.0.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-02-07</Date>
|
||||
<Version>2.0.0</Version>
|
||||
@@ -5687,6 +5753,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>2.1.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-09-01</Date>
|
||||
<Version>2.1.0</Version>
|
||||
@@ -5730,6 +5803,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>0.7.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-09-01</Date>
|
||||
<Version>0.7.1</Version>
|
||||
@@ -6291,7 +6371,7 @@
|
||||
<Description xml:lang="en">LFTP is sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. It has bookmarks, built-in mirror, can transfer several files in parallel. It was designed with reliability in mind.</Description>
|
||||
<Description xml:lang="tr">LFTP komut satırı arayüzüne sahip gelişmiş bir dosya aktarım programıdır. FTP, HTTP, FISH, SFTP, HTTPS ve FTPS protokollerini destekler. Yer imleri, yansılama, paralel olarak birçok dosya transfer etme özellikleri bulunuyor. Güvenirlik esas alınarak tasarlandı.</Description>
|
||||
<Icon>lftp</Icon>
|
||||
<Archive type="targz" sha1sum="aedc5f07f35d30c2aab3589432c724cbfa462ebe" name="lftp-4.8.3.tar.gz">http://lftp.tech/ftp/lftp-4.8.3.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="ef5de46f3e723662412bdfb0f7924ccff820c8e4" name="lftp-4.9.2.tar.gz">http://lftp.tech/ftp/lftp-4.9.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>flex</Dependency>
|
||||
@@ -6339,6 +6419,13 @@
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>4.9.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2018-09-01</Date>
|
||||
<Version>4.8.3</Version>
|
||||
@@ -6421,7 +6508,7 @@
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2020-02-07</Date>
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>3.0.3</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>İdris Kalp</Name>
|
||||
@@ -7371,12 +7458,14 @@
|
||||
<Summary xml:lang="tr">Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları.</Summary>
|
||||
<Description xml:lang="en">Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux.</Description>
|
||||
<Description xml:lang="tr">Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur.</Description>
|
||||
<Archive type="targz" sha1sum="7603214d8c1af23bac5936288cfb0cd8ad8923ca" name="iproute2-5.10.0.tar.gz">https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-5.10.0.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="9a27e567c3b41ca153fd3a9d2f1c7ad5ba275d5c" name="iproute2-5.13.0.tar.gz">https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-5.13.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="1.6.0">iptables-devel</Dependency>
|
||||
<Dependency>db-devel</Dependency>
|
||||
<Dependency>elfutils-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libcap-devel</Dependency>
|
||||
<Dependency>libmnl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>0001-make-iproute2-fhs-compliant.patch</Patch>
|
||||
@@ -7389,6 +7478,8 @@
|
||||
<Dependency versionFrom="1.6.0">iptables</Dependency>
|
||||
<Dependency>db</Dependency>
|
||||
<Dependency>elfutils</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<Dependency>libmnl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
@@ -7403,6 +7494,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>5.13.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2021-01-23</Date>
|
||||
<Version>5.10.0</Version>
|
||||
@@ -7483,7 +7581,7 @@
|
||||
<Summary xml:lang="tr">Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı</Summary>
|
||||
<Description xml:lang="en">Contains iptables firewall, NAT and packet mangling tools.</Description>
|
||||
<Description xml:lang="tr">Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır.</Description>
|
||||
<Archive type="tarbz2" sha1sum="6df99e90cb4d59032ab2050ebb426fe065249bd3" name="iptables-1.8.3.tar.bz2">ftp://ftp.netfilter.org/pub/iptables/iptables-1.8.3.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="05ef75415cb7cb7641f51d51e74f3ea29cc31ab1" name="iptables-1.8.7.tar.bz2">https://www.netfilter.org/projects/iptables/files/iptables-1.8.7.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libnfnetlink-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -7514,7 +7612,7 @@
|
||||
<Summary xml:lang="en">Development files for iptables</Summary>
|
||||
<Summary xml:lang="tr">iptables için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="6">iptables</Dependency>
|
||||
<Dependency release="7">iptables</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -7524,6 +7622,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>1.8.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-02-01</Date>
|
||||
<Version>1.8.3</Version>
|
||||
@@ -59703,6 +59808,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>intel-tbb</Dependency>
|
||||
<Dependency>OpenCOLLADA</Dependency>
|
||||
<Dependency>OpenColorIO1</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
@@ -75430,7 +75536,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Description xml:lang="en">GNOME panel is located in the edge of screen that provides contains widgets such as application launcher, cpu monitor and workspace switcher.</Description>
|
||||
<Description xml:lang="tr">Mate paneli ekranın kenarlarında bulunur ve programcıkları (işlemci yükü, program başlatıcısı, çalışma alanı değiştiricisi gibi) barındırmayı sağlar.</Description>
|
||||
<Icon>mate-panel</Icon>
|
||||
<Archive type="tarxz" sha1sum="4ef929755a95fc3f43bf3efc379cbf438c491db3" name="mate-panel-1.25.2.tar.xz">http://pub.mate-desktop.org/releases/1.25/mate-panel-1.25.2.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="35b6b4c2f1b15d27b9243476af4f5571d1d4bf5d" name="mate-panel-1.25.3.tar.xz">http://pub.mate-desktop.org/releases/1.25/mate-panel-1.25.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
@@ -75496,7 +75602,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="5">mate-panel</Dependency>
|
||||
<Dependency release="6">mate-panel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
@@ -75508,13 +75614,20 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Summary xml:lang="en">mate-panel için döküman belgeleri.</Summary>
|
||||
<Summary xml:lang="tr">mate-panel için döküman belgeleri.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">mate-panel</Dependency>
|
||||
<Dependency release="6">mate-panel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2021-07-02</Date>
|
||||
<Version>1.25.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2021-04-20</Date>
|
||||
<Version>1.25.2</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
568145d5971813f500909ba352578b14392a2d27
|
||||
aae47bc6a20bfef0173db8be53797be3d2156c3c
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
2055df039b597edabc5d332db1eb690056c50265
|
||||
12c8e43d8792c0e52412f57d5d526a62ffda450f
|
||||
Reference in New Issue
Block a user